
 :root {
    --bg-color: #0d0c0c;
    --nav-color: #2a2a2a;
    --accent-color: #d4af37;
    --text-color: #ffffff;
    --color-cream: #f5f3f0;
    --color-beige: #e8e4df;
    --color-dark: #0d0c0c;
} 


/* Avenir Next LT Pro */
@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('/fonts/AvenirNextLTPro.woff2') format('woff2'),
         url('/fonts/AvenirNextLTPro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

/* === FONT ASSIGNMENTS === */

/* Logo (Synergy Square) */
.navbar-brand {
    font-family: 'Aptos Narrow', sans-serif;
}

/* Navbar links (Gifts, Services, Packages, Offers, Memberships) */
.navbar-nav .nav-link {
    font-family: Calibri, sans-serif;
}

/* EXPERIENCE TO EXCEPTIONAL */
.trademark {
    font-family: 'Segoe UI', sans-serif;
}

/* OUR SERVICES section title */
.section-title {
    font-family: 'Aptos Narrow', sans-serif;
}

/* Card text (MEDI SPA FACIALS, etc.) */
.card-text,
.service-name {
    font-family: 'Avenir Next LT Pro', sans-serif;
}

/* Navigation Bar Styles */
.navbar {
    background-color: var(--nav-color);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-size: 1.2rem;
    color: var(--text-color);
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 20px;
    font-size: 1rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.book-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 3px solid var(--text-color);
    padding: 6px 35px;
    border-radius: 9px;
    transition: all 0.3s;
    font-size: 1rem;
}

.title-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 4px solid var(--text-color);
    padding: 12px 12px;
    border-radius: 7px;
    transition: all 0.3s;
}

.title-btn:hover {
    background-color: var(--text-color);
}

.book-card, .service-book-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    padding: 3px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.book-card:hover, .service-book-btn:hover {
    background: var(--text-color, #ffffff);
    color: var(--nav-color, #363c44);
}

.book-btn:hover {
    background-color: var(--text-color);
    color: var(--nav-color);
}

.user-dropdown {
    position: relative;
}

.user-icon-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 5px;
}

img.rounded-circle {
    width: 45px;
    height: 45px;
}

.dropdown-menu {
    background-color: var(--nav-color);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
}

.dropdown-item {
    color: var(--text-color);
    padding: 8px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: var(--nav-color);
}

.dropdown-divider {
    border-top: 1px solid var(--accent-color);
    margin: 8px 0;
}

/* Experience Banner */
.experience-banner {
    background-color: var(--bg-color);
    padding: 60px 0;
    text-align: center;
}


.video-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    color: var(--text-color);
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Keep video behind content */
}


/* Service Card Styles */
.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0; /* no border */
}

.card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Blur image on hover */
.card:hover img {
    filter: blur(4px) brightness(0.8);
    transform: scale(1.02);
}

/* Overlay container for description */
.card-desc {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-20px); /* slide from top */
    pointer-events: none;
}

/* Show description on hover */
.card:hover .card-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Bottom overlay for title and book button */
.card-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    text-align: center;
    color: #fff;
}

/* Title */
.card-title {
    font-size: 15px;
    margin-bottom: 10px;
}

/* Book button */
.btn-sevesss {
    border: 2px solid var(--text-color);
    display: inline-block;
    background:transparent;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 8px;
    transition: 0.3s;
    backdrop-filter: blur(0px); /* default */
}

.btn-sevesss:hover {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    color: #fff;
}



.services-section {
    padding: 80px 0;
    background-color: var(--bg-color, #444356);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color, #ffffff);
    
    font-size: 2.2rem;
}



/* ==========================
   MAP SECTION STYLES
========================== */

.map-section {
  padding: 60px 20px;
  background: #000000;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.map-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  border: 3px solid transparent;
  background: linear-gradient(#000, #000) padding-box,
              linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) border-box;
}

.map-wrapper iframe {
  border: 0;
  display: block;
  filter: grayscale(0.2) brightness(0.95);
}

.map-directions {
  margin-top: 30px;
  text-align: center;
}

.directions-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.directions-btn i {
  margin-right: 8px;
}
.footer {
  background-color: var(--color-dark);
  color: var(--color-cream);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-cream);
}

.footer-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 243, 240, 0.7);
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-cream);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 243, 240, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-cream);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 243, 240, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--color-cream);
  color: var(--color-dark);
  border-color: var(--color-cream);
}

.footer-divider {
  border-color: rgba(245, 243, 240, 0.2);
}

.footer-copyright {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(245, 243, 240, 0.6);
  margin: 0;
}

.footer-legal {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(245, 243, 240, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal:hover {
  color: var(--color-cream);
}
/* Responsive */
@media (max-width: 768px) {
    

    .title-btn {
        display: none;
    }
    .indulge-title {
        font-size: 2rem;
        padding: 12px 35px;
    }
    .service-card-alt {
        flex-direction: column;
        height: auto;
        border-radius: 15px !important;
    }
    .card-image-left, .card-image-right {
        height: 200px;
    }
    .card-content-left, .card-content-right {
        padding: 25px 20px;
    }
    .service-image-container {
        height: 180px;
    }
    .nav-buttons {
        gap: 15px;
    }
}

@media (max-width: 991px) {
     .our-squares-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    

    .our-square-title {
        font-size: 20px;
    }

    .our-square-btn {
        font-size: 13px;
        padding: 6px 20px;
    }
    .title-btn {
        display: none;
    }
    .navbar-nav {
        text-align: center;
        padding: 15px 0;
    }
    .navbar-nav .nav-link {
        margin: 5px ;
    }
    .nav-buttons {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 991px) {
    .title-btn {
        display: none;
    }
    .navbar-nav {
        text-align: center;
        padding: 15px 0;
    }
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    .nav-buttons {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cards-row {
        grid-template-columns: 1fr;
    }
}
