main {
  margin-top: 80px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  padding: 1rem 0;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  position: relative;
  z-index: 1001;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--navy);
}
.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav li {
  margin: 0 1.2rem;
  position: relative;
}

.desktop-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--navy);
  transition: width 0.3s ease;
}

.desktop-nav a:hover {
  color: var(--navy);
}

.desktop-nav ul li a.active {
  color: var(--navy);
  font-weight: 600;
}

.desktop-nav ul li a.active .active-indicator {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6rem 2rem 2rem;
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav li:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  display: block;
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--navy);
  transition: width 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--navy);
}

.mobile-nav a.active {
  color: var(--navy);
}

.mobile-nav a:hover::after,
.mobile-nav a.active::after {
  width: 100%;
}
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
/* New Footer Styles */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 3rem 0 0;
  font-family: var(--font-secondary);
  position: relative;
  overflow: hidden;
  z-index: 10;
  width: 100%;
  margin-top: auto;
}

/* Footer Top Section */
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Footer Brand */
.footer-brand {
  flex: 1;
  min-width: 200px;
}


.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  position: relative;
  display: inline-block;
}

.footer-tagline {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
}

/* Footer Social */
.footer-social {
  text-align: right;
}

.social-title {
  display: block;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin: 0;
  justify-content: flex-end;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration:none;
}

.social-link:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer h4 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.footer-links li::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.6rem;
  transition: all 0.3s ease;
}

.footer-link {
  color: #b3b3b3;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.3rem 0;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
  color: #b3b3b3;
  line-height: 1.6;
}

.contact-info i {
  color: var(--gold);
  margin-right: 1rem;
  margin-top: 0.3rem;
  font-size: 1.1rem;
  min-width: 20px;
}

.contact-info a {
  color: #b3b3b3;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
  margin: 0;
  color: #888;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    padding-bottom: 1.5rem;
  }
  
  .footer-brand {
    margin-bottom: 1.5rem;
  }
  
  .footer-social {
    text-align: center;
    width: 100%;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-tagline {
    margin: 0 auto;
  }
}

.footer-legal {
  margin-top: 0.8rem;
}

.footer-legal a {
  color: #777;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-legal span {
  color: #444;
  font-size: 0.8rem;
}
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

  .desktop-nav {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  .footer-links li {
    padding-left: 0;
    text-align: center;
  }

  .footer-links li::before {
    display: none;
  }

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

  .contact-info {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .contact-info i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    padding: 1.5rem;
  }
}