/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* HERO SECTION */
  .hero {
    position: relative;
    height: 85vh;
    background: url("/static/img/home.jpeg") center/cover no-repeat;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  /* Overlay */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
  }
  
  /* Header */
  .hero-header {
    position: absolute;
    top: 30px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
  }
  
  .logo img {
    height: 313px;
  }
  .phone {
    font-size: 25px;
    color: white;
  }
  .menu {
    font-size: 25px;
  }
  .header-right {
    display: flex;
    gap: 40px;
    font-weight: 500;
    letter-spacing: 1px;
  }
  
  /* Content */
  .hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 900px;
  }
  
  .hero-subtitle {
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .hero-content h1 {
    font-size: 64px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    line-height: 1.2;
  }
  
  /* Script word */
  .script {
    font-family: "Brush Script MT", cursive;
    font-size: 72px;
    font-weight: 300;
  }
  
  /* Scroll */
  .scroll-down {
    margin-top: 40px;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.8;
  }
  
  /* Intro Video */
  .intro-video {
    display: flex;
    justify-content: center;
    padding: 80px 0;
    background: #f5f5f5;
  }
  
  .intro-video video {
    width: 60%;
    border-radius: 8px;
  }

  .container {
    margin-bottom: 10px;
  }
  h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
  }
  p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  /* ABOUT */
  .about-section p {
    max-width: 800px;
    margin: 10px auto;
  }

/* ABOUT SECTION */
.about-section {
    padding: 100px 8%;
    background: #c0bcc6;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1700px;
    margin: auto;
  }
  
  .about-image {
    width: auto;
  }
  .about-image img {
    width: 50%;
    max-width: 550px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .about-content {
    flex: 1;
  }
  
  .section-subtitle {
    letter-spacing: 3px;
    font-size: 14px;
    color: #7b4de0;
    margin-bottom: 15px;
  }
  
  .about-content h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    line-height: 1.2;
  }
  
  .about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: rgb(27, 9, 52);
    line-height: 1.6;
  }
  
  .about-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #3c3844;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s ease;
  }
  
  .about-btn:hover {
    background: #5e37b7;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-content h2 {
      font-size: 32px;
    }
  }
  

  /* RIGHT SIDE */
.about-right {
  flex: 1;
  min-width: 320px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-box .icon {
  font-size: 26px;
  color: #3a1044;
  margin-top: 5px;
}

.feature-box h4 {
  margin-bottom: 8px;
  font-size: 20px;
  color: white;
}

.feature-box p {
  color: white;
  line-height: 1.6;
}

.site-footer {
  background: #1f282e;
  color: #e5e5e5;
  padding: 70px 10% 0;
  font-size: 15px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  color: #cfcfcf;
}

.footer-col ul li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #a8d5b5;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #a8d5b5;
  color: #1f2e27;
  transform: translateY(-4px);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #bdbdbd;
}

/* Mobile */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* nav bar */
/* NAV BAR */
.hero-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
}

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

.logo {
  /* padding: 10px; */
}
.logo img {
  height: 155px;
}


.nav-btn {
  border: 1px solid #7bbf8a;
  padding: 10px 18px;
  border-radius: 30px;
}

/* Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.phone {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
}

.mobile-nav-contact {
  display: none;
}

.close-menu {
  display: none;
}
@media (max-width: 900px) {

  .nav-right .phone {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Close button */
  .close-menu {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 34px;
    cursor: pointer;
    color: #fff;
  }
  .mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .mobile-phone {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
  }

  .mobile-phone i {
    margin-right: 8px;
  }

  .mobile-socials {
    display: flex;
    gap: 15px;
  }

  .mobile-socials a {
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
  }

  .mobile-socials a:hover {
    color: #7bbf8a;
  }

  .mobile-quote-btn {
    background: #7bbf8a;
    color: #111;
    padding: 10px 18px;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
  }
  
  .phone, .menu {
    display: none;
  }
  .logo img {
    height: 150px;
  }
  .logo {
    left: 1;
  }

  .hero-header {
    position: absolute;
    left: 1;
  }
}

/* ===== HEADER ===== */
.site-header {
  position: absolute;
  /* top: 0;
  left: 0;
  width: 100%; */
  background: transparent;
  /* transition: background-color 0.3s ease, box-shadow 0.3s ease; */
  z-index: 1000;
  padding: 0 26px;
}

.site-header.scrolled {
  background-color: rgba(85, 73, 73, 0.78);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Container */
.nav-container {
  height: 100px;
  display: flex;
  padding-top: 100px;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 250px;
  width: auto;
}

/* Nav links */

.nav-cta {
  background: #4e435e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
}

.nav-cta:hover {
  background: #4e435e;
}
/* Phone */
.header-phone {
  color: white;
  font-weight: 600;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
}

/* Close button */
.close-menu {
  display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .header-phone {
    display: none;
  }



  .close-menu {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 32px;
    background: none;
    border: none;
  }

  .mobile-nav-contact {
    margin-top: 32px;
    text-align: center;
  }
}

header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Main Footer */
.site-footer {
  background: #4b2f5c;
  color: #d8c8e3;
  padding-top: 80px;
  font-family: Arial, sans-serif;
}

/* Container */
.site-footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

/* Brand */
.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.site-footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e7c76a;
  color: #4b2f5c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.site-footer-brand h3 {
  margin: 0;
  color: white;
}

.site-footer-brand span {
  font-size: 13px;
  color: #bfaad1;
}

/* Description */
.site-footer-description {
  margin: 15px 0;
  line-height: 1.6;
}

/* Contact Info */
.site-footer-contact-info p {
  margin: 8px 0;
}

/* Badge */
.site-footer-badge {
  margin-top: 15px;
  background: #5b3b6e;
  border: none;
  color: #d8c8e3;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: default;
}

/* Column Titles */
.site-footer-col h4 {
  color: white;
  margin-bottom: 20px;
}

/* Links */
.site-footer-col ul {
  list-style: none;
  padding: 0;
}

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

.site-footer-col ul li a {
  color: #d8c8e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer-col ul li a:hover {
  color: #e7c76a;
}

/* Form */
.site-footer-form input,
.site-footer-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #5b3b6e;
  color: white;
  outline: none;
}

.site-footer-form textarea {
  resize: none;
  height: 100px;
}

/* Button */
.site-footer-form button {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: #e7c76a;
  color: #4b2f5c;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.site-footer-form button:hover {
  opacity: 0.9;
}

/* Bottom Bar */
.site-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer-bottom p {
  margin: 10px 0;
}

.site-footer-socials a {
  margin-left: 15px;
  font-size: 18px;
  text-decoration: none;
}

/* Header Base */
.main-nav-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 18px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Transparent State (Default at Top) */
.main-nav-header.transparent {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

/* Solid State (After Scroll) */
.main-nav-header.scrolled {
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

/* Logo */
.main-nav-logo-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo Image */
.main-nav-logo-icon img {
  /* width: 100%; */
  height: 300%;
  margin-top: 15px;
  object-fit: contain; /* keeps proportions */
}

/* Links */
.main-nav-links {
  display: flex;
  gap: 30px;
}

.main-nav-links a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav-links a:hover {
  color: #7a5b9e;
}

/* Right Section */
.main-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav-phone {
  font-weight: 500;
  color: #7a5b9e;
}

/* Button */
.main-nav-btn {
  background: #e7c76a;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  color: #4b2f5c;
  transition: 0.3s ease;
}

.main-nav-btn:hover {
  opacity: 0.9;
}

/* Base header styles */
.main-nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* At top (transparent) */
.main-nav-header.at-top {
  background-color: transparent;
  box-shadow: none;
}

/* After scrolling */
.main-nav-header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Nav container */
.main-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem;
}

/* Logo */
.main-nav-logo-icon img {
  height: 150px;
}

/* Nav Links (desktop) */
.main-nav-links {
  display: flex;
  gap: 2rem;
}

.main-nav-links a {
  text-decoration: none;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
}

/* Right side */
.main-nav-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main-nav-btn {
  background-color: #ff7f50;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
}

/* Mobile menu toggle (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
}

/* Mobile nav */
@media (max-width: 768px) {
  .main-nav-logo-icon img {
    height: 150px !important;
    margin-top: 25px !important;
  }
    .grid {
        padding: 36px;
    }
    .container {
        top: 2px;
    }
  .main-nav-container {
    padding: 1.75rem 5rem !important;
  }

  /* Slide-in drawer */
  .main-nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    flex-direction: column;
    background: rgba(46, 28, 59, 0.95); /* light purple */
    padding: 5rem 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    justify-content: flex-start;
  }

  .main-nav-links.active {
    transform: translateX(0);
    display: flex;
  }

  /* Nav links */
  .main-nav-links > a {
    font-size: 18px;
    font-weight: 600;
    color: #3b1f5e;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(107, 70, 193, 0.15);
    letter-spacing: 0.3px;
    transition: color 0.2s;
  }

  .main-nav-links > a:last-of-type {
    border-bottom: none;
  }

  .main-nav-links > a:hover {
    color: #7c3aed;
  }

  /* Bottom footer section inside the drawer */
  .mobile-menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(107, 70, 193, 0.2);
    padding-top: 1.5rem;
  }

  .mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #3b1f5e;
    text-decoration: none;
    padding: 0.6rem 0;
  }

  .mobile-menu-cta {
    display: block;
    text-align: center;
    background: #7c3aed;
    color: white !important;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    border-bottom: none !important;
    transition: background 0.2s ease;
  }

  .mobile-menu-cta:hover {
    background: #6d28d9 !important;
    color: white !important;
  }

  /* Hide desktop footer element on mobile */
  .mobile-menu-footer {
    margin-top: auto;
  }

  .menu-toggle {
    display: block;
    z-index: 10000;
    color: white;
  }

  .main-nav-right {
    display: none;
  }

  .main-nav-phone {
    display: none;
  }
}

/* Hide mobile footer items on desktop */
.mobile-menu-footer {
  display: none;
}

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

#mainNav.scrolled {
  background: #939393;
  box-shadow: 0 4px 20px rgba(164, 69, 242, 0.627);
}

/* Header base */
#mainNav{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Default text color */
#mainNav .main-nav-links a,
#mainNav .main-nav-phone{
  color: white;
  transition: color 0.3s ease;
}

#mainNav.scrolled .main-nav-links a,
#mainNav.scrolled .main-nav-phone{
  color: black;
}
.footer-logo img {
  width: 180px;
  height: auto;
  margin: 0 0 10px 0;
}
.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  color: #e7c76a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #e7c76a;
  color: #4b2f5c;
  transform: translateY(-4px);
}
/* =============================================
   MOBILE RESPONSIVE FIXES
   ============================================= */

@media (max-width: 768px) {
#mainNav.scrolled .main-nav-links a,
#mainNav.scrolled .main-nav-phone{
  color: white;
}
  /* Hero */
  .hero {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .script {
    font-size: 42px;
  }

  /* Intro video */
  .intro-video video {
    width: 95%;
  }

  /* About section */
  .about-section {
    padding: 60px 6%;
  }

  .about-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 28px;
  }

  /* Footer */
  .site-footer {
    padding-top: 50px;
  }

  .site-footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 16px 40px;
  }

  .site-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 16px;
    font-size: 13px;
  }
}