/**
 * Vido Theme Custom Styles
 * Main stylesheet for theme styling
 */

/* CSS Variables */
:root {
    --primary-color: #D2B48C;   /* primary */
    --secondary-color: #D6CABA; /* secondary */
    --accent-color: #8B5E3C;    /* accent */
    --text-color: #3F3F3F;      /* base text */
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #F4ECE1;     /* light beige */
    --white-color: #FFFFFF;
    --dark-color: #333333;      /* dark */
}

/* Base Styles */
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    background: #F4ECE1;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.75rem 0;
}

/* Force navbar background and height on header */
.site-header .navbar {
    background-color: #F4ECE1 !important;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Navigation Styles */
.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

/* Remove default Bootstrap caret */
.navbar .dropdown-toggle::after {
    display: none !important;
}

/* Show caret next to dropdown parent link (keeps link clickable) */
.navbar .dropdown > .nav-link::after {
    content: "";
    display: inline-block;
    margin-left: .25rem;
    vertical-align: .255em;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
}

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

/* Active menu item by current page */
.navbar .nav-link.active,
.navbar .nav-link[aria-current="page"] {
  color: #D89F53 !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

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

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }
    .navbar .dropdown .dropdown-menu {
        margin-top: 0;
    }
}

/* Book Now Button - outline accent by default */
.btn-primary {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
}

/* Mobile Menu Sidebar */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: #fff;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-sidebar.show {
    transform: translateX(100%);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    background: var(--light-color);
}

.mobile-menu-logo img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
}

.mobile-menu-content {
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--light-color);
    color: var(--accent-color);
    padding-left: 2rem;
}

.mobile-nav-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-dropdown i {
    transition: transform 0.3s ease;
}

.mobile-nav-dropdown.active i {
    transform: rotate(180deg);
}

.mobile-submenu {
    background: var(--light-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.show {
    max-height: 300px;
}

/* Mobile services split: link + separate toggle button */
.mobile-nav-item { position: relative; }
.mobile-nav-item .mobile-nav-header { position: relative; }
.mobile-nav-item .mobile-dropdown-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  padding: 6px;
  color: var(--text-color);
  transition: transform .2s ease;
}
.mobile-nav-item .mobile-dropdown-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.mobile-nav-item .mobile-dropdown-toggle:focus { outline: none; }

.mobile-submenu-link {
    display: block;
    padding: 0.75rem 3rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
    background: #fff;
    color: var(--primary-color);
    padding-left: 3.5rem;
}

@media (max-width: 991.98px) {
    .logo-img {
        max-height: 40px;
    }
}

/* Mobile Menu - smaller screens */
@media (max-width: 576px) {
    .mobile-menu-sidebar {
        width: 80%;
        left: -80%;
    }
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden !important;
}

/* Header container flex only */
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 992px) {
    /* Desktop-specific header sizing */
    .site-header .navbar {
        min-height: 130px;
    }

    .site-header .container {
        justify-content: space-between;
    }
    
    .site-header .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Desktop logo size 90x90 */
    .site-header .logo-img {
        width: 90px !important;
        height: 90px !important;
        max-height: none;
        object-fit: contain;
    }

    /* Header button sizing (Book Now) */
    .site-header .btn-primary {
        padding: 14px 28px;
        border-radius: 3px;
    }
}

/* Footer Styles */
.site-footer {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 3rem 0 1rem;
    margin-top: auto;
    font-family: 'Montserrat', sans-serif;
}

.site-footer h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Footer font sizes */
.site-footer .footer-heading-lg { font-size: 2rem; }
.site-footer,
.site-footer p,
.site-footer li,
.site-footer a,
.site-footer .small { font-size: 1.0625rem; }

/* Footer logo fixed size */
.site-footer .footer-logo img {
    width: 150px !important;
    height: 150px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.footer-map {
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.site-footer h6 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.site-footer a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--accent-color);
}

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

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

.footer-links a {
    color: var(--text-color);
    font-size: 0.95rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.06);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.business-hours {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0,0,0,0.04);
    border-radius: 0.5rem;
}

.book-now-footer {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.book-now-footer:hover {
    color: #fff !important;
}

/* Footer responsive */
@media (max-width: 767.98px) {
    .site-footer {
        padding: 2rem 0 1rem;
        margin-bottom: 50px;
    }
    /* Keep footer logo fixed even on mobile */
    .site-footer .footer-logo img {
        width: 150px !important;
        height: 150px !important;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Page Templates */
.page-header {
    background: var(--light-color);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Services Section */
.service-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-item {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Utilities */
.section-padding {
    padding: 4rem 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* About Page */
.about-hero {
  position: relative;
  min-height: 570px;
  background-attachment: fixed;
  background-image: url('https://noirnailbarwa.com/wp-content/uploads/2025/02/photo_22_2025-02-07_21-56-21.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767.98px) {
  .about-hero { min-height: 340px; }
}

.about-hero-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.35);
}

.about-hero-title {
  position: relative; z-index: 1;
  font-family: 'Lora', serif;
  font-size: 5rem; /* 80px */
}

/* Contact Page */
.contact-hero {
  position: relative;
  min-height: 570px;
  background-attachment: fixed;
  background-image: url('https://noirnailbarwa.com/wp-content/uploads/2025/02/photo_1_2025-02-07_21-56-21.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767.98px) { .contact-hero { min-height: 340px; } }
.contact-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.contact-hero-title { position: relative; z-index: 1; font-family: 'Lora', serif; font-size: 5rem; }

/* Services Page */
.services-hero {
  position: relative;
  min-height: 570px;
  background-attachment: fixed;
  background-image: url('https://noirnailbarwa.com/wp-content/uploads/2025/02/photo_3_2025-02-07_21-56-21.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767.98px) { .services-hero { min-height: 340px; } }
.services-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.services-hero-title { position: relative; z-index: 1; font-family: 'Lora', serif; font-size: 5rem; }

/* Services list (reuse home-menu styles) */
.services-menu { background: #fff; }
.services-menu, .services-menu h2, .services-menu h4, .services-menu p { color: var(--text-color); }
.services-menu .services-top-box .module-category__name,
.services-menu #add-ons .module-category__text .module-category__name { color: var(--primary-color); }
.services-menu .module-category__list-item .module-category__name,
.services-menu .module-category__price { color: var(--text-color); }
.services-menu .module-category__text .module-category__name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; }
.services-menu .module-category__head { font-size: 1.5rem; }
.services-menu .module-category__description { color: #7C7878; }
/* Services section: top row (container > row) */
.services-menu .services-top-box {
  background-color: var(--light-color);
  padding: 24px 24px 30px 24px;
  margin: 0 0 24px 0;
  border-radius: 14px;
  text-align: left;
}

/* Add-Ons 2-column layout on desktop */
@media (min-width: 992px) {
  .services-menu #add-ons .module-category__list-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    align-items: end;
    justify-items: stretch;
  }
  .services-menu #powder-nail .module-category__list-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    align-items: end;
    justify-items: stretch;
  }
  .services-menu #gel-nail .module-category__list-item,
  .services-menu #kids-menu .module-category__list-item,
  .services-menu #waxing .module-category__list-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    align-items: end;
    justify-items: stretch;
  }
}

/* Gallery Page */
.gallery-hero {
  position: relative;
  min-height: 570px;
}
@media (max-width: 767.98px) { .gallery-hero { min-height: 340px; } }
.gallery-hero-title { position: relative; z-index: 1; font-family: 'Lora', serif; font-size: 5rem; }
.gallery-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); z-index: 0; }
.gallery-hero-bg { position: absolute; inset: 0; background-image: var(--gallery-hero-url); background-position: center center; background-size: cover; filter: brightness(62%) contrast(100%); z-index: -1; }

/* Gallery tabs */
.gallery-tabs .nav-tabs { border-bottom: none; gap: .5rem; }
.gallery-tabs .nav-tabs .nav-link {
  color: var(--text-color);
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; /* 32px */
  padding: 18px 32px;
  border-radius: 999px;
  background: var(--light-color);
  border: 1px solid transparent;
}
.gallery-tabs .nav-tabs .nav-link:hover { background: #fff; border-color: var(--secondary-color); }
.gallery-tabs .nav-tabs .nav-link.active {
  background: var(--accent-color);
  color: #fff !important;
  border-color: var(--accent-color);
}
@media (max-width: 767.98px) {
  .gallery-tabs .nav-tabs .nav-link { padding: 9px 16px; font-size: 1.25rem; }
}
.gallery-tabs .gallery-grid img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gallery-tabs .gallery-grid a.gallery-link { display: block; position: relative; overflow: hidden; border-radius: 12px; }
.gallery-tabs .gallery-grid a.gallery-link img { transition: transform .25s ease; }
.gallery-tabs .gallery-grid a.gallery-link:hover img { transform: scale(1.03); }

/* Normalize image heights for Nail Salon tab */
.gallery-tabs .gallery-grid[data-gallery="salon"] a.gallery-link { height: 260px; }
@media (max-width: 991.98px) { .gallery-tabs .gallery-grid[data-gallery="salon"] a.gallery-link { height: 220px; } }
@media (max-width: 575.98px) { .gallery-tabs .gallery-grid[data-gallery="salon"] a.gallery-link { height: 180px; } }

/* Back to Top button - make it perfectly round */
#back-to-top {
  width: 53px;
  height: 53px;
  border-radius: 50% !important;
  padding: 0 !important;
  line-height: 53px;
  text-align: center;
  display: none; /* hidden by default, shown via JS */
  z-index: 1000;
  position: fixed;
  right: 16px;
  bottom: 66px;
}
#back-to-top i { line-height: 53px; }

/* Gallery modal image fit */
.gallery-modal .modal-body { max-height: calc(100vh - 160px); overflow: hidden; }
.gallery-modal .modal-body img { max-height: calc(100vh - 200px); width: auto; height: auto; object-fit: contain; }

/* Cash Price label */
.services-menu .module-category__cash { color: var(--text-color); opacity: .85; }

/* Contact map */
.contact-map { margin-top: 60px; }
.contact-map .map-wrapper {
  height: 360px;
  border-radius: 13px;
  overflow: hidden;
}
.contact-map .map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Contact info + form */
.contact-info-form .contact-card {
  display: flex; gap: 12px; align-items: center;
  background-color: var(--light-color);
  padding: 16px 18px;
  border-radius: 14px;
}
.contact-info-form .contact-card-icon { font-size: 1.75rem; color: var(--accent-color); line-height: 1; display: flex; align-items: center; justify-content: center; }
.contact-info-form .contact-card-title { font-size: 1.0625rem; color: var(--text-color); margin: 0; font-family: 'Lora', serif; }
.contact-info-form .contact-card-title a { color: var(--text-color); text-decoration: none; }
.contact-info-form .contact-card-title a:hover { color: var(--accent-color); }
.contact-info-form .contact-card-desc { color: var(--text-color); opacity: .9; font-size: 1.5rem; font-family: 'Lora', serif; }

.contact-info-form .social-circle {
  width: 53px; height: 53px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(0,0,0,0.06); color: var(--text-color); transition: .2s;
}
.contact-info-form .social-circle:hover { background: var(--accent-color); color: #fff; }

.contact-form-box { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
/* Contact Form 7 styles */
.wpcf7 form .wpcf7-form-control { border-radius: 10px;}
.wpcf7 form input.wpcf7-text,
.wpcf7 form input[type="email"],
.wpcf7 form input[type="tel"],
.wpcf7 form select.wpcf7-select { height: 43.5px; padding: 10px 14px; }
.wpcf7 form textarea.wpcf7-textarea { padding: 12px 14px; border-radius: 10px; height: 120px; }
.wpcf7 form .wpcf7-submit {
  width: 100%; display: block;
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  padding: 12px 28px; border-radius: 6px; transition: .2s;
}
.wpcf7 form .wpcf7-submit:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.wpcf7 .wpcf7-list-item-label a { color: var(--accent-color); text-decoration: underline; }
.wpcf7 form .wpcf7-form-control::placeholder { color: rgba(0,0,0,0.5); }
.wpcf7-spinner { margin-left: 8px; }

/* Contact section bottom spacing */
@media (min-width: 992px) { .contact-info-form { margin-bottom: 100px; } }
@media (max-width: 991.98px) { .contact-info-form { margin-bottom: 50px; } }

/* About Section 2 */
.about-intro-title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--primary-color); }
.about-intro-text { color: var(--text-color); font-family: 'Montserrat', sans-serif; }
.about-intro-img { border-radius: 14px; height: auto; max-height: 460px; object-fit: cover; object-position: center; display: block; }

/* About Section 3 - Why Choose Us */
.about-why-title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; text-align: center; color: var(--primary-color); }
.about-why-lead { color: var(--text-color); font-style: italic; }
.about-feature-grid .feature-card {
  background-color: var(--light-color);
  padding: 20px 24px 40px 24px;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  height: 100%;
}
.about-feature-grid .feature-title { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; margin-bottom: .5rem; color: var(--text-color); }
.about-feature-grid .feature-text { color: var(--text-color); }

/* Home Hero */
.home-hero {
    background-image: linear-gradient(180deg, var(--light-color) 0%, var(--white-color) 80%);
}

.home-hero .home-hero-img {
    width: 80%;
    height: 600px;
    object-fit: cover;
    object-position: center center;
    filter: brightness(90%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
    border-radius: 300px;
    border: 0 solid transparent;
}

/* Home Hero custom column widths on desktop */
@media (min-width: 992px) {
  .home-hero .home-hero-col1 { flex: 0 0 30%; max-width: 30%; }
  .home-hero .home-hero-col2 { flex: 0 0 40%; max-width: 40%; }
  .home-hero .home-hero-col3 { flex: 0 0 30%; max-width: 30%; }
}

/* Home text colors */
.home-hero .home-hero-title { color: var(--text-color); }
.home-hero .home-hero-title { font-size: 3.625rem; }
.home-hero p { color: var(--text-color); opacity: 0.85; }
.home-hero .feature-box { border: 0; background: transparent; text-align: right; }
.home-hero .feature-box h3, .home-hero .feature-box a, .home-hero .feature-box .small, .home-hero .feature-box .h6 { color: var(--text-color); }
.home-hero .home-hero-col3 { text-align: right; }
/* Address, Business Hours, Call us labels (in hero col3) */
.home-hero .feature-box .small,
.home-hero .feature-box h5,
.home-hero .feature-box h6 { font-size: 2rem; }

/* Font assignments */
/* Cormorant Garamond targets */
.home-hero .home-hero-title,
.home-hero .home-hero-col3,
.home-services-banner h2,
.home-menu h2,
.home-experience h2,
.home-testimonials h2 {
  font-family: 'Cormorant Garamond', serif;
}
/* Large headings */
.home-services-banner h2,
.home-experience h2 { font-size: 2.5rem; }
.home-menu h2,
.home-testimonials h2 { font-size: 3.625rem; }

/* Lora inside section 3 (Our Menu) */
.home-menu,
.home-menu h4,
.home-menu p,
.home-menu .module-category__name,
.home-menu .module-category__price,
.home-menu .module-category__description {
  font-family: 'Lora', serif;
}
/* Section 3 heading sizes */
.home-menu h4 { font-size: 2rem; }
.home-menu .module-category__head { font-size: 1.5rem; }

/* Header + Footer keep Montserrat already via body and explicit override above */

.text-accent { color: var(--accent-color) !important; }
.text-brand-primary { color: var(--primary-color) !important; }
.text-brand-text { color: var(--text-color) !important; }

/* Accent buttons */
.btn-accent {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 6px;
    padding: 12px 28px;
    transition: all .2s ease;
}

.btn-accent:hover, .btn-accent:focus {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-outline-accent {
    background: transparent;
    border: 1px dashed var(--accent-color);
    color: var(--accent-color);
    border-radius: 6px;
    padding: 12px 28px;
}
.btn-outline-accent:hover, .btn-outline-accent:focus {
    background: rgba(139, 94, 60, 0.08); /* subtle accent bg */
    color: var(--accent-color);
}

/* Home page buttons style override */
.home-hero .btn-accent,
.home-menu .btn-accent,
.home-experience .btn-accent {
  background: var(--primary-color) !important;
  color: #fff !important;
  border: 1px solid var(--primary-color) !important;
  border-radius: 30px !important;
}
.home-hero .btn-accent:hover,
.home-menu .btn-accent:hover,
.home-experience .btn-accent:hover {
  background: var(--light-color) !important;
  color: var(--text-color) !important;
  border-color: var(--primary-color) !important;
}

.feature-box {
    border: 1px solid rgba(0,0,0,0.06);
}

/* Section 2: Services banner */
.home-services-banner {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-services-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://noirnailbarwa.com/wp-content/uploads/2025/02/photo_3_2025-02-07_21-56-21.jpg');
    background-position: center center;
    background-size: cover;
    filter: brightness(52%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
    z-index: 0;
}

.home-services-banner .home-services-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.home-services-banner h2,
.home-services-banner p {
    color: #fff !important;
}

/* Section 3: Our Menu */
.home-menu { background: #fff; }
.home-menu h2, .home-menu h4, .home-menu, .home-menu p { color: var(--text-color); }

.home-menu-img {
  height: 550px;
  object-fit: cover;
  object-position: center center;
  border-radius: 30px;
  display: block;
}

.module-category__list-item { margin: 0; }
.module-category-item + .module-category-item { margin-top: 1rem; }
.module-category__head {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  column-gap: .5rem;
}
.module-category__name { font-weight: 600; position: relative; }
.module-category__dots { border-bottom: 1px dotted #C4C4C4; height: 1px; align-self: center; }
.module-category__price { font-weight: 700; }
.module-category__description { margin-top: .5rem; line-height: 1.6; color: #7C7878; }
/* Base text size ~17px for content paragraphs */
.home-hero p,
.home-menu p,
.home-menu .module-category__description,
.home-experience p,
.testimonial-text { font-size: 1.0625rem; }

/* Section 3 - tail block: Experience */
.home-experience { background: #fff; }
.home-experience .text-brand-text { color: var(--text-color) !important; }
.home-experience-img { height: 350px; object-fit: cover; object-position: center; border-radius: 16px; display: block; }

/* Section 4: Testimonials */
.home-testimonials {
  background-image: linear-gradient(90deg, var(--primary-color) 0%, var(--white-color) 60%);
}

@media (min-width: 992px) {
  .home-testimonials .home-testimonials-col1 { flex: 0 0 40%; max-width: 40%; }
  .home-testimonials .home-testimonials-col2 { flex: 0 0 60%; max-width: 60%; }
}

.home-testimonials h2 { color: var(--text-color); }

.testimonial { max-width: 560px; margin: 0 auto; }
.testimonial-avatar {
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover; object-position: center; display: block; margin: 0 auto 1rem;
}
.testimonial-text { color: var(--text-color); font-size: 1.05rem; line-height: 1.7; }
.testimonial-text { font-size: 1.0625rem; }
.testimonial-name { color: var(--text-color); font-weight: 700; margin-top: .5rem; }

.home-testimonials .carousel-indicators [data-bs-target] {
  width: 10px; height: 10px; border-radius: 50%; background-color: rgba(0,0,0,.25);
}
.home-testimonials .carousel-indicators .active { background-color: var(--accent-color); }

/* Footer bottom (last row) font size 14px for all, including links */
.site-footer .row.align-items-center .small,
.site-footer .row.align-items-center .small a {
  font-size: 0.875rem !important;
}

/* 404 Page */
.page-404 { background-image: linear-gradient(180deg, var(--light-color) 0%, var(--white-color) 80%); }
.page-404-title { font-family: 'Cormorant Garamond', serif; color: var(--text-color); font-size: 3rem; }
.page-404-lead { color: var(--text-color); opacity: .85; }
.page-404-code { width: 96px; height: 96px; background: var(--secondary-color); color: var(--accent-color); font-size: 2rem; }

/* Mobile Bottom Quick Actions */
.link-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: var(--secondary-color);
  box-shadow: 0 -6px 16px rgba(0,0,0,0.08);
}
.link-bottom .b-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.link-bottom .b-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  text-decoration: none;
  color: var(--text-color);
  position: relative;
}

.link-bottom .b-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  right: 0;
  border-right: 1px dashed rgba(63, 63, 63, 0.2);
}

.link-bottom .b-icon {
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background-color: transparent;
  transition: transform .15s ease;
}
.link-bottom .b-label {
  margin: 0;
  font-size: 0.7rem;
  font-family: 'Montserrat', sans-serif;
}

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

@media (max-width: 991.98px) {
  h2,
  h4 {
    font-size: 1.75rem !important; /* 28px */
  }
  h5 {
    font-size: 1.5rem !important; /* 24px */
  }
  p{
    font-size: 1rem !important;
  }
  .link-bottom .b-label{
    font-size: .7rem !important;
  }
  .home-menu-img{
    height: 380px;
  }
  .site-footer, .site-footer p, .site-footer li, .site-footer a, .site-footer .small {
    font-size: 15px;
  }
  .home-hero p, .home-menu p, .home-menu .module-category__description, .home-experience p, .testimonial-text {
    font-size: 15px;
  }
  .home-menu .module-category__head {
    font-size: 18px;
}
a#bookNowBtnMobile {
    padding: 7px 14px;
    font-size: 15px;
    border-radius: 3px;
}
.home-experience-img{
    height: 220px;
}
.contact-info-form .contact-card-title a,.contact-info-form .contact-card-title{
    font-size: 16px !important;
}
  .site-header .navbar-brand img {
    max-height: 60px;
  }
  .about-hero-title,.services-hero-title,.gallery-hero-title,.contact-hero-title{
    font-size: 2.5rem;
  }
  .services-menu .module-category__head {
    font-size: 18px;
}
.col-12.text-center.mb-3 .module-category__head,.services-menu .module-category__text .module-category__name {
    font-size: 28px;
}
  .site-header .navbar .btn-outline-accent {
    border-radius: 3px;
  }

  .home-hero .home-hero-col1,
  .home-hero .home-hero-col3 {
    text-align: center;
  }

  .home-hero .home-hero-col1 .d-flex {
    justify-content: center;
  }

  .home-hero .home-hero-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
  }
  
  .home-hero .feature-box {
      text-align: center;
      margin-bottom: 0.5rem; /* Adjusted margin */
      padding: 0.5rem !important; /* Adjusted padding */
  }

  /* Font sizes for mobile hero */
  .home-hero .home-hero-col1 h1 {
      font-size: 1.75rem; /* 28px */
  }
  .home-hero .home-hero-col1 p {
      font-size: 1rem; /* 16px */
  }
  .home-hero .home-hero-col1 .btn {
      font-size: 1.125rem; /* 18px */
  }
  .home-hero .feature-box .small {
      font-size: 1.75rem; /* 28px */
      line-height: 1.3;
  }
  .home-hero .feature-box h3,
  .home-hero .feature-box .h6,
  .home-hero .feature-box p {
      font-size: 1.125rem; /* 18px */
  }

  .home-testimonials .testimonial-item blockquote {
    font-size: 1rem;
    padding: 1.5rem;
  }
}