* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Gilroy';
}

html, body {
height: 100%;
width: 100%;
}


:root {
    --primary-color: #d40203;
    --dark-color: #0a0a0a;
    --light-color: #f8f9fa;
    --text-color: #777;
    --heading-color: #222;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--heading-color);
    font-weight: 600;
}
/* =========================
   NAVBAR
========================= */

.custom-navbar {
  height: 80px;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
}

.navbar-brand {
  font-size: 26px;
  font-weight: 700;
  color: #fff !important;
}

.navbar-brand span {
  color: var(--primary-color);
}

/* =========================
   DESKTOP MENU
========================= */

.desktop-menu {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.desktop-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s;
}

.desktop-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.desktop-menu li a:hover::after {
  width: 100%;
}

.desktop-menu li a:hover {
  color: var(--primary-color);
}

.desktop-contact {
  padding: 8px 22px;
  border: 1px solid var(--primary-color);
}

.desktop-contact:hover {
  background: var(--primary-color);
  color: #fff !important;
}

/* =========================
   HAMBURGER
========================= */

.navbar-toggler {
  border: none;
  padding: 0;
}

.hamburger {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  height: 2px;
  background: #fff;
  transition: 0.4s;
}

/* =========================
   FULLSCREEN MOBILE MENU
========================= */

.side-nav {
  position: fixed;
  top: 0;
  right: 0;                 /* ⭐ anchor to right */
  height: 100vh;
  width: 66vw;              /* ⭐ 66% width */
  background: #0a0a0a;
  transform: translateX(100%);
  transition: transform 0.45s ease;
  z-index: 1050;
}

.side-nav.active {
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  font-size: 38px;
  color: #fff;
}

.menu-content {
  height: auto;
  padding: 120px 10vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.menu-links {
  list-style: none;
}

/* .menu-links li {
  margin-bottom: 32px;
} */

.menu-links a {
  font-size: 27px;
  color: #fff;
  text-decoration: none;
}

.menu-links a:hover {
  color: var(--primary-color);
}

.menu-contact {
  padding: 14px 0px;
  border: 2px solid var(--primary-color);
  color: #fff;
  text-decoration: none;
  width: 50%;
    text-align: center;
  transition: all 0.35s ease;

}

.menu-contact:hover {
  background: var(--primary-color);
  color: #fff;
}

/* =========================
   OVERLAY
========================= */

.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1040;
}

.offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}

/* Navbar Logo */
.navbar-logo {
  height: 56px;        /* adjust if needed */
  width: auto;
  display: block;
}













/* =========================
   TERMS & CONDITIONS – LIGHT
========================= */

.legal-page {
  padding: 100px 0;
  background: #ffffff;
  color: #333;
}

.legal-page h1 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #111;
}

.legal-intro {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 35px;
  color: #444;
}

.legal-page h3 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 20px;
  color: #111;
}

.legal-page p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.legal-page ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 768px) {
  .legal-page h1 {
    font-size: 28px;
  }
}















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

.site-footer {
  background: #0a0a0a;
  color: #bbb;
  padding: 30px 0 10px;
  text-align: center;
}

/* Brand block */
.footer-brand-centered {
  max-width: 720px;
  margin: 0 auto 15px;
}

.footer-brand-centered h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-brand-centered h2 span {
  color: var(--primary-color);
}

.footer-brand-centered p {
  font-size: 16px;
  line-height: 1.8;
  color: #aaa;
}

/* Contact block */
.footer-contact-centered p {
  font-size: 15px;
  margin-bottom: 10px;
}

.footer-contact-centered a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-centered a:hover {
  color: var(--primary-color);
}

/* Socials */
.footer-socials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.footer-socials a {
  color: #bbb;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}

.footer-bottom span {
  font-size: 13px;
  color: #777;

}

.footer-bottom span a {
  text-decoration: none;
  color: #777;

}

.footer-bottom p {
  font-size: 13px;
  color: #777;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 20px 30px;
  }

  .footer-brand-centered h2 {
    font-size: 32px;
  }

  .footer-brand-centered p {
    font-size: 15px;
  }
}


.footer-logo-link {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* keeps your logo color */
}

.footer-logo {
  height: 56px;        /* adjust if needed */
  width: auto;
  /* display: block; */
  margin-bottom: 10px;
}


.terms-and-policy ul{
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  margin-top: 5px;
  gap: 22px;
  padding-left: 0;
  list-style: none;

}

.terms-and-policy a {
  text-decoration: none;
  color: #777;
      font-size: 13px;

}


/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: rgb(212, 2, 3);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(212, 2, 3, 0.45);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(212, 2, 3, 0.6);
}

/* Pulse Effect */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 2, 3, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}



