/* ==========================================
   GENERAL STYLES & RESET
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  color: #1a1a1a;
}

a {
  color: #ff6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff5252;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */

.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff6b6b;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-image: url('https://via.placeholder.com/1920x1080');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 15px;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  margin: 0 10px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button.primary {
  background-color: #ff6b6b;
  color: #fff;
}

.cta-button.primary:hover {
  background-color: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.cta-button.secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-button.secondary:hover {
  background-color: #fff;
  color: #667eea;
  transform: translateY(-3px);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
  padding: 80px 0;
  background: #fff;
}

.about-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-image {
  flex: 1;
  min-width: 350px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  text-align: left;
  margin-bottom: 30px;
  font-size: 2.2rem;
}

.about-content p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  color: #ff6b6b;
  margin-bottom: 10px;
}

.stat p {
  font-size: 0.95rem;
  color: #888;
  margin: 0;
}

/* ==========================================
   SPECIALTIES SECTION
   ========================================== */

.specialties {
  padding: 80px 0;
  background: #f8f9fa;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.specialty-card {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.specialty-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.specialty-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.specialty-card p {
  color: #666;
  line-height: 1.7;
}

/* ==========================================
   FILMOGRAPHY SECTION
   ========================================== */

.filmography {
  padding: 80px 0;
  background: #fff;
}

.filmography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.film-card {
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.film-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.film-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: #e0e0e0;
}

.film-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.film-card:hover .film-image img {
  transform: scale(1.05);
}

.film-info {
  padding: 30px;
}

.film-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.film-year {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.film-role {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.film-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.film-awards {
  color: #ff6b6b;
  font-weight: 600;
  margin-top: 15px;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */

.gallery {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  font-style: normal;
  color: #f0f0f0;
}

/* ==========================================
   AWARDS SECTION
   ========================================== */

.awards {
  padding: 80px 0;
  background: #f8f9fa;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.award-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #ff6b6b;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.award-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.award-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.award-item p {
  color: #666;
  font-size: 0.95rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
  padding: 80px 0;
  background: #fff;
}

.contact-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 50px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-button {
  padding: 15px 30px;
  background-color: #ff6b6b;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.form-button:hover {
  background-color: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.contact-item {
  margin-bottom: 35px;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.contact-item p {
  color: #666;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #ff6b6b;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff5252;
}

.download-link {
  display: inline-block;
  padding: 12px 20px;
  background-color: #f0f0f0;
  border-radius: 5px;
  color: #ff6b6b;
  font-weight: 600;
  transition: all 0.3s ease;
}

.download-link:hover {
  background-color: #ff6b6b;
  color: #fff;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-section p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #999;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ff6b6b;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    gap: 0;
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .cta-button {
    display: block;
    margin: 10px 0;
    width: 100%;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .about-image {
    min-width: unset;
  }

  .about-content h2 {
    text-align: center;
  }

  .about-stats {
    justify-content: space-around;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  h2 {
    font-size: 2rem;
  }

  .specialties-grid,
  .filmography-grid,
  .testimonials-grid,
  .awards-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .film-image {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .nav-container {
    height: 60px;
  }

  .navbar {
    position: sticky;
    top: 0;
  }

  .footer-content {
    gap: 20px;
    margin-bottom: 30px;
  }
}
