/* =====================================================
   FONTS
   ===================================================== */
@font-face {
  font-family: "GeneralSans";
  src: url("/public/assets/static_files/fonts/GeneralSans-Medium.ttf") format("truetype");
    src: url("/public/assets/static_files/fonts/GeneralSans-Regular.ttf") format("truetype");
  font-weight: 500;
}


@font-face{
   font-family: "Nocturnal";
  src: url("/public/assets/static_files/fonts/Nocturnal-ExtraLight.ttf") format("truetype");
   src: url("/public/assets/static_files/fonts/Nocturnal-SemiBold.ttf") format("truetype");
    src: url("/public/assets/static_files/fonts/Nocturnal-Light.ttf") format("truetype");
  font-weight: 400;
}


/* =====================================================
   RESET & BASE STYLES
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* =====================================================
   HEADER STYLES
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-left: 35%;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.2px;
  transition: 0.3s;
  font-family: "GeneralSans-Medium", "sans-serif";
}

.nav a:hover {
  opacity: 0.7;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.book-btn {
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 5px 25px;
  border-radius: 40px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: 0.3s;
}

.book-btn span {
  font-size: 16px;
   font-family: "GeneralSans-Medium", "sans-serif";
}

.book-btn:hover {
  background: #fff;
  color: #000;
}

.menu-toggle {
  width: 32px;
  height: 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
  transition: 0.35s ease;
}



/* =====================================================
   MOBILE MENU
   ===================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100vh;
  background: #0a0a0a;
  padding: 40px;
  transition: 0.45s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

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

.close-btn {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 40px;
  transition: 0.3s;
}

.close-btn:hover {
  opacity: 0.7;
}

.mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.mobile-menu a:hover {
  opacity: 0.7;
  transform: translateX(6px);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}


/* =====================================================
   FOOTER STYLES
   ===================================================== */
.footer {
  background: #000;
  color: #fff;
  padding-top: 0;
}

.footer-top {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}

.download-brochure-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  padding: 14px 45px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-weight: 500;
  text-transform: uppercase;
}

.download-brochure-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.footer-main {
  background: #000;
  padding: 80px 0 60px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  height: 45px;
  width: auto;
}

.footer-description {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
  font-weight: 300;
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
    background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 17px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
  padding-left: 0px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact li i {
  width: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact li a:hover {
  color: #fff;
}

.footer-office {
  margin-top: 10px;
}

.footer-office h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
}

.footer-office p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

.office-hours {
  margin-top: 12px;
  font-size: 12px !important;
}

.footer-map {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(8, 1, 1, 0.6);
  font-weight: 700;
  font-family: "GeneralSans-Medium", "sans-serif";
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
}

.footer-legal a {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
    font-weight: 700;
}

.footer-legal a:hover {
  color: #000000;
}

.footer-legal span {
  color: rgba(0, 0, 0, 0.3);
    font-weight: 700;
     font-family: "GeneralSans-Medium", "sans-serif";
}


/* =====================================================
   MEDIA QUERIES - HEADER
   ===================================================== */
@media (max-width: 992px) {
  .nav {
    display: none;
  }
  
.menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

}

@media (max-width: 768px) {
  .header-inner {
    padding: 20px;
  }

  .logo img {
    height: 35px;
  }

  .book-btn {
    padding: 4px 20px;
    font-size: 12px;
    gap: 15px;
  }

  .menu-toggle {
    width: 28px;
    height: 20px;
  }
  
  .mobile-menu {
    width: 100%;
  }
}



/* =====================================================
   MEDIA QUERIES - FOOTER
   ===================================================== */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-map {
    grid-column: 1 / -1;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 40px 20px;
  }

  .download-brochure-btn {
    padding: 12px 35px;
    font-size: 12px;
  }

  .footer-main {
    padding: 60px 0 40px;
  }

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

  .footer-about {
    grid-column: 1;
  }

  .footer-map {
    grid-column: 1;
    height: 220px;
  }

  .footer-bottom {
    padding: 25px 20px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: 30px 15px;
  }

  .download-brochure-btn {
    padding: 10px 30px;
    font-size: 11px;
  }

  .footer-logo img {
    height: 38px;
  }

  .footer-description {
    font-size: 12px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .footer-heading {
    font-size: 13px;
  }

  .footer-links li a,
  .footer-contact li,
  .footer-office p {
    font-size: 12px;
  }

  .footer-bottom p,
  .footer-legal {
    font-size: 11px;
  }
}


