/* Font imports handled via Google Fonts in HTML */

:root {
  /* Aesthetic Color Palette */
  --primary: #1a2238; /* Deep blue */
  --secondary: #22223b; /* Charcoal */
  --accent: #fcb900; /* Gold/amber accent */
  --accent2: #ff6f3c; /* Warm orange accent */
  --soft-white: #f8f8f8;
  --text-main: #f8f8f8;
  --text-accent: #fcb900;
  --text-muted: #bfc9d1;
  --card-bg: #232946;
  --card-border: #fcb900;
  --director-bg: url('assets/contentonion.jpg'); /* Use uploaded image */
  --primary-gold: #ffd700;
  --secondary-gold: #ffed4e;
  --accent-orange: #ff6b35;
  --deep-purple: #2d1b69;
  --rich-blue: #1e3a8a;
  --dark-navy: #0f172a;
  --light-cream: #fef3c7;
  --warm-white: #fafafa;
  --cinema-black: #0a0a0a;
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ff6b35 100%);
  --gradient-purple: linear-gradient(135deg, #2d1b69 0%, #1e3a8a 50%, #0f172a 100%);
  --gradient-cinema: linear-gradient(135deg, #0a0a0a 0%, #2d1b69 50%, #1e3a8a 100%);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'Work Sans', Arial, sans-serif;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--gradient-cinema);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  animation: loaderFadeIn 1s ease-out;
}

@keyframes loaderFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.camera-container {
  margin-bottom: 2rem;
  animation: cameraZoom 2s ease-in-out infinite alternate;
}

@keyframes cameraZoom {
  0% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-10px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

.camera-svg {
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
  animation: cameraGlow 2s ease-in-out infinite alternate;
}

@keyframes cameraGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
  }
  100% {
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.9));
  }
}

.studio-name {
  font-family: 'Amatic SC', cursive;
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.5rem 0;
  letter-spacing: 3px;
  animation: nameGlow 2s ease-in-out infinite alternate;
}

@keyframes nameGlow {
  0% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

.studio-tagline {
  font-family: 'Kalam', cursive;
  font-size: 1.3rem;
  color: var(--light-cream);
  margin: 0;
  opacity: 0.9;
}

/* Floating Cinema Elements */
.cinema-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

.floating-element:nth-child(1) { animation-delay: 0s; }
.floating-element:nth-child(2) { animation-delay: 1s; }
.floating-element:nth-child(3) { animation-delay: 2s; }
.floating-element:nth-child(4) { animation-delay: 3s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(-1deg);
  }
  75% {
    transform: translateY(-15px) rotate(1deg);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--secondary);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-text {
  font-family: 'Amatic SC', cursive;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
}

.logo-subtitle {
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  color: var(--light-cream);
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--warm-white);
  text-decoration: none;
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--gradient-gold);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--warm-white);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(45, 27, 105, 0.8)),
              url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?w=1920&h=1080&fit=crop') center/cover;
}

#star-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.spotlight {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80vw; height: 40vh;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(10, 10, 10, 0.0) 80%);
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(45deg, rgba(10, 10, 10, 0.8), rgba(45, 27, 105, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-family: 'Amatic SC', cursive;
  font-size: 4rem;
  letter-spacing: 2px;
  margin: 1rem 0 0.5rem 0;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInScale 1.5s forwards 0.5s;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-tagline {
  font-family: 'Kalam', cursive;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--light-cream);
}

.hero-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--light-cream);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Amatic SC', cursive;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.stat-label {
  font-family: 'Kalam', cursive;
  font-size: 1rem;
  color: var(--light-cream);
  margin-top: 0.5rem;
}

.hero-svg svg {
  width: 120px;
  height: 80px;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* About Us */
#about {
  padding: 6rem 2rem 4rem 2rem;
  position: relative;
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(45, 27, 105, 0.9)),
              url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&h=1080&fit=crop') center/cover;
}

#about h2 {
  font-family: 'Amatic SC', cursive;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  text-align: center;
  margin-bottom: 3rem;
}

.about-description {
  font-family: 'Kalam', cursive;
  font-size: 1.3rem;
  color: var(--light-cream);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.brands-section h3 {
  font-family: 'Amatic SC', cursive;
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.brands-section p {
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  color: var(--light-cream);
  margin-bottom: 2rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-item {
  background: rgba(45, 27, 105, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  font-family: 'Special Elite', monospace;
  font-size: 0.9rem;
  color: var(--primary-gold);
  transition: all 0.3s;
}

.brand-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

/* Director Profile */
#director {
  padding: 6rem 2rem 4rem 2rem;
  position: relative;
  background: linear-gradient(rgba(26,34,56,0.92), rgba(34,34,59,0.92)), var(--director-bg) center/cover no-repeat;
  box-shadow: 0 8px 32px rgba(26,34,56,0.3);
}

#director h2 {
  font-family: 'Amatic SC', cursive;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.director-profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.director-image {
  position: relative;
}

.director-placeholder {
  background: rgba(34,34,59,0.92);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.director-icon {
  font-size: 3.5rem;
  color: var(--accent2);
  margin-bottom: 1rem;
}

.director-placeholder p {
  font-family: 'Amatic SC', cursive;
  font-size: 1.5rem;
  color: var(--accent);
  margin: 0;
}

.director-info h3 {
  font-family: 'Amatic SC', cursive;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.director-title {
  font-family: 'Kalam', cursive;
  font-size: 1.3rem;
  color: var(--accent2);
  margin-bottom: 2rem;
}

.director-details {
  margin-bottom: 2rem;
}

.director-details p {
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.director-details strong {
  color: var(--accent);
}

.director-expertise h4 {
  font-family: 'Amatic SC', cursive;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.director-expertise p {
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.director-clients h4 {
  font-family: 'Amatic SC', cursive;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
}

.client-item {
  background: rgba(34,34,59,0.7);
  border: 1px solid var(--accent2);
  border-radius: 8px;
  padding: 0.8rem;
  text-align: center;
  font-family: 'Special Elite', monospace;
  font-size: 0.8rem;
  color: var(--accent2);
  transition: all 0.3s;
}

.client-item:hover {
  background: var(--accent2);
  color: var(--secondary);
}

/* Video Showcase Carousel */
#showreel {
  padding: 6rem 2rem 4rem 2rem;
  position: relative;
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(45, 27, 105, 0.9)),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&h=1080&fit=crop') center/cover;
}

#showreel h2 {
  font-family: 'Amatic SC', cursive;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.video-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(45, 27, 105, 0.3);
  padding: 2rem;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
}

.carousel-item {
  min-width: 350px;
  background: rgba(45, 27, 105, 0.9);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255, 215, 0, 0.3);
  position: relative;
}

.carousel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border-color: var(--primary-gold);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.play-button {
  font-size: 3rem;
  color: var(--primary-gold);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}

.carousel-item:hover .play-button {
  transform: scale(1.1);
  background: rgba(255, 215, 0, 0.2);
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  font-family: 'Amatic SC', cursive;
  font-size: 1.3rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.video-info p {
  font-family: 'Kalam', cursive;
  color: var(--light-cream);
  font-size: 0.9rem;
  margin: 0;
}

.carousel-controls {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.carousel-btn {
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 2.5rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0 1.2rem;
  transition: color 0.2s, transform 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

#prev-btn { left: 0; }
#next-btn { right: 0; }
.carousel-btn:hover { color: var(--accent2); transform: scale(1.2) translateY(-50%); }

#auto-btn {
  position: static;
  background: var(--accent2);
  color: var(--soft-white);
  border-radius: 20px;
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  transition: background 0.2s, color 0.2s;
}
#auto-btn.active { background: var(--accent); color: var(--secondary); }

.carousel-indicators {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: var(--primary-gold);
  transform: scale(1.2);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 80%;
  margin: 5% auto;
  background: rgba(45, 27, 105, 0.95);
  border-radius: 16px;
  border: 2px solid var(--primary-gold);
  overflow: hidden;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--primary-gold);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--warm-white);
}

.video-container {
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* Our Work Enhanced */
#our-work {
  padding: 6rem 2rem 4rem 2rem;
  position: relative;
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(45, 27, 105, 0.9)),
              url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?w=1920&h=1080&fit=crop') center/cover;
}

#our-work h2 {
  font-family: 'Amatic SC', cursive;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.work-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(45, 27, 105, 0.8);
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-family: 'Kalam', cursive;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--secondary);
  transform: translateY(-2px);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.work-card {
  background: var(--dark-navy);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
  cursor: pointer;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.work-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: var(--primary-gold);
}

.work-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
  position: relative;
}

.work-card:hover .work-image {
  transform: scale(1.05);
}

.work-overlay {
  padding: 1.5rem;
  background: rgba(45, 27, 105, 0.95);
}

.work-overlay h3 {
  font-family: 'Amatic SC', cursive;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
}

.work-overlay p {
  font-family: 'Kalam', cursive;
  color: var(--light-cream);
  margin-bottom: 1rem;
}

.work-category {
  background: var(--accent2);
  color: var(--soft-white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-family: 'Special Elite', monospace;
  font-size: 0.8rem;
}

/* Contact */
#contact {
  padding: 6rem 2rem 4rem 2rem;
  position: relative;
  background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(45, 27, 105, 0.8)),
              url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?w=1920&h=1080&fit=crop') center/cover;
}

#contact h2 {
  font-family: 'Amatic SC', cursive;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Amatic SC', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.contact-info p {
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  color: var(--light-cream);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50%;
}

.contact-item h4 {
  font-family: 'Amatic SC', cursive;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--primary-gold);
}

.contact-item p {
  font-family: 'Kalam', cursive;
  color: var(--light-cream);
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(45, 27, 105, 0.9);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 1rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 215, 0, 0.3);
  background: rgba(10, 10, 10, 0.8);
  color: var(--warm-white);
  font-family: 'Kalam', cursive;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border: 1.5px solid var(--primary-gold);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  padding: 1rem 2rem;
  border-radius: 8px;
  border: none;
  background: var(--primary-gold);
  color: var(--dark-navy);
  font-family: 'Amatic SC', cursive;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 1rem;
}

.contact-form button:hover {
  background: var(--secondary-gold);
  color: var(--dark-navy);
  transform: scale(1.05);
}

.contact-icons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-size: 2.5rem;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}

.contact-icons.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-icons .icon {
  animation: float 3s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.5s);
}

/* Footer */
.footer {
  background: var(--secondary);
  padding: 3rem 2rem 1rem 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3,
.footer-section h4 {
  font-family: 'Amatic SC', cursive;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer-section h3 {
  font-size: 1.8rem;
}

.footer-section h4 {
  font-size: 1.3rem;
}

.footer-section p {
  font-family: 'Kalam', cursive;
  color: var(--light-cream);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  font-family: 'Kalam', cursive;
  color: var(--light-cream);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-section ul li:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-bottom p {
  font-family: 'Special Elite', monospace;
  color: var(--light-cream);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .director-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .work-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .carousel-container {
    gap: 1rem;
  }
  
  .carousel-item {
    min-width: 280px;
  }
  
  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .studio-name {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 1.3rem;
  }
  
  .carousel-item {
    min-width: 250px;
  }
  
  .brands-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
  }
  
  .studio-name {
    font-size: 2rem;
  }
} 