/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and global styling */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #0d0d0d; /* Deep black background */
  color: #f5f5f5;       /* Soft white text */
  padding-bottom: 100px; /* Make space for nav */
  line-height: 1.6;
}

/* Main content area */
main {
  padding: 30px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding-bottom: 100px; /* Added to prevent contact section from hiding under bottom nav on phones */
}

/* Creator tag badge */
.creator-tag {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 14px;
  background-color: #ff6b00;
  color: #0d0d0d;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  animation: slideDown 1s ease forwards;
}

/* Headings */
h1 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ff6b00; /* Bright orange */
}

h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #ff6b00;
}

/* Paragraphs */
.intro {
  font-size: 18px;
  margin-bottom: 20px;
  padding: 0 10px;
}

.tagline {
  font-size: 16px;
  font-style: italic;
  color: #ff6b00;
  margin-top: 10px;
}

/* Image section */
.fun-img {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.fun-img img {
  width: 250px;
  height: auto;
  border-radius: 12px;
  border: 2px solid #ff6b00;
  background-color: #fff;
}

/* Bottom navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #1a1a1a;
  display: flex;
  justify-content: space-around;
  padding: 16px 0;
  border-top: 1px solid #333;
  z-index: 10;
}

.bottom-nav a,
.nav-link {
  color: #ff6b00;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.bottom-nav a:hover,
.nav-link:hover {
  background-color: #ff6b00;
  color: #0d0d0d;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease forwards;
}

.slide-up-delay {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease 0.4s forwards;
}

.slide-up-delay-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease 0.8s forwards;
}

.slide-up-delay-3 {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease 1.2s forwards;
}

/* Keyframes */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Profile Section */
.profile-section {
  margin-top: 20px;
  text-align: center;
  padding: 10px;
}

.profile-pic {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff6b00;
  margin-bottom: 20px;
}

/* Skills Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
  padding: 0 10px;
}

.skill-card {
  background: #1a1a1a;
  border: 2px solid #ff6b00;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

.skill-card:hover {
  transform: scale(1.03);
}

.skill-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.project-section {
  margin: 40px 0;
  padding: 0 20px;
}

.project-section h3 {
  color: #ff6b00;
  font-size: 22px;
  margin-bottom: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.video-grid video {
  width: 100%;
  border-radius: 12px;
  border: 2px solid #ff6b00;
}

.graphics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.graphics-grid img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid #ff6b00;
  object-fit: cover;
}

.contact-box {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  color: #fff;
  line-height: 1.6;
  border: 2px solid #ff6b00;
}

.contact-box a {
  color: #ff6b00;
  text-decoration: none;
}

.contact-img {
  margin-top: 30px;
  text-align: center;
}

.contact-img img {
  width: 90%;
  max-width: 400px;
  border-radius: 14px;
  border: 2px solid #ff6b00;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

/* Contact Icons */
.contact-box .icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 4px;
  filter: brightness(1.2);
  transition: transform 0.2s ease;
}

.contact-box a:hover .icon {
  transform: scale(1.2);
}

.contact-img {
  text-align: center;
  margin-bottom: 20px;
}

.contact-img img {
  width: 90%;
  max-width: 400px;
  border-radius: 14px;
  border: 2px solid #ff6b00;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

/* Contact Icons */
.contact-box .icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 80px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.float-btn {
  background-color: #000;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn img {
  width: 24px;
  height: 24px;
}
