@font-face {
  font-family: "Montserrat";
  src: url(/fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}

/* Base Styles */
:root {
  --primary-color: #FF6B00;
  --secondary-color: #004C8C;
  --dark-color: #1A1A1A;
  --light-color: #F5F5F5;
  --grey-color: #767676;
  --border-radius: 4px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 15px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #E05A00;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #003A6C;
  transform: translateY(-2px);
}

/* Header & Navigation */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(26, 26, 26, 0.95);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: white;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-menu a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: white;
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
  margin-top: 0;
  padding: 0;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.disclaimer {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-cta {
  margin-top: 30px;
}

/* Features Section */
.features {
  background-color: white;
}

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

.feature-card {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Why Love Section */
.why-love {
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 100px 0;
}

.why-love:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.why-love-content {
  position: relative;
  z-index: 2;
}

.why-love h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  text-align: center;
}

.why-love-list li {
  position: relative;
  padding: 10px 0 10px 35px;
  font-size: 1.1rem;
}

.why-love-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Action Blocks */
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.action-card {
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.action-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  color: white;
}

.action-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

/* Why Choose Section */
.why-choose {
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 100px 0;
}

.why-choose:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.why-choose-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.why-choose h2 {
  margin-bottom: 25px;
}

.why-choose p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Menu Highlight */
.menu-highlight {
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 100px 0;
}

.menu-highlight:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.menu-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.menu-stats {
  display: flex;
  justify-content: space-around;
  margin: 40px 0;
  flex-wrap: wrap;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-text {
  font-size: 1.1rem;
}

.menu-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 20px;
}

/* Testimonials */
.testimonials {
  background-color: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.testimonial-card {
  background-color: var(--light-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.testimonial-author {
  margin-top: 20px;
  font-weight: 600;
  color: var(--grey-color);
}

/* More Than Watching */
.more-than-watching {
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 100px 0;
}

.more-than-watching:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.more-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.more-than-watching h2 {
  margin-bottom: 30px;
  text-align: center;
}

.more-than-watching p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* What's Waiting */
.whats-waiting {
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 100px 0;
}

.whats-waiting:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.whats-waiting h2 {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 40px;
}

.waiting-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.waiting-item {
  text-align: center;
  padding: 20px;
}

.waiting-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.waiting-item h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Unforgettable */
.unforgettable {
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 100px 0;
}

.unforgettable:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.unforgettable-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.unforgettable h2 {
  margin-bottom: 20px;
}

.unforgettable p {
  margin-bottom: 40px;
  font-size: 1.1rem;
}

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

.unforgettable-item {
  padding: 20px;
}

.unforgettable-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.unforgettable-item h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Contact */
.contact {
  background-color: white;
}

.contact h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.contact-item h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* FAQ */
.faq {
  background-color: var(--light-color);
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.accordion-item {
  background-color: white;
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: white;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.accordion-icon {
  font-size: 1.5rem;
  transition: var(--transition);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 0 20px 20px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-links h3:after,
.footer-contact h3:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-disclaimer,
.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
      font-size: 2.5rem;
  }
  
  h2 {
      font-size: 2rem;
  }
  
  section {
      padding: 60px 0;
  }
  
  .hero {
      min-height: 500px;
  }
}

@media (max-width: 768px) {
  .hamburger {
      display: block;
  }
  
  .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: rgba(26, 26, 26, 0.95);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
      padding: 20px 0;
  }
  
  .nav-menu.active {
      left: 0;
  }
  
  .nav-menu li {
      margin: 15px 0;
  }
  
  h1 {
      font-size: 2.2rem;
  }
  
  h2 {
      font-size: 1.8rem;
  }
  
  .contact-grid,
  .footer-content {
      grid-template-columns: 1fr;
  }
  
  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }
  
  .footer-disclaimer,
  .footer-copyright {
      margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  h1 {
      font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 1.8rem;
}
  
  h2 {
      font-size: 1.5rem;
  }
  
  .hero {
      min-height: 450px;
  }
  
  .feature-card,
  .testimonial-card,
  .action-card {
      padding: 15px;
  }
  
  .menu-stats {
      flex-direction: column;
  }
  
  .stat-item {
      padding: 10px;
      margin-bottom: 20px;
  }
}