/*
Theme Name: Dtnailschester
Theme URI: https://www.dtnailschester.com/
Author: DT Nails & Spa
Author URI: https://www.dtnailschester.com/
Description: Custom theme for DT Nails & Spa - Chester, VA 23831. A premium nail salon experience.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dtnailschester
Tags: nail-salon, spa, beauty, one-page, custom-menu, featured-images
*/

/* ===== CUSTOM STYLES ===== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat:wght@300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=League+Spartan:wght@300;400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Josefin+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --color-gold: #EE9D24;
    --color-gold-light: #F5B94D;
    --color-gold-dark: #D68A1A;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-bg-light: #faf8f5;
    --color-bg-cream: #f5f0e8;
    --color-red: #c0392b;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --font-elegant: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* === Header === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* === CALL US Button — gold gradient with white border === */
.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(180deg, #f0c75e 0%, #c8922a 50%, #a57516 100%);
    color: var(--color-white) !important;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    outline: 2px solid #b8860b;
    cursor: pointer;
    transition: filter 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-call:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* === Hamburger === */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: none;
    border: none;
    gap: 5px;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Mobile Menu === */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    z-index: 999;
    padding: 95px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text);
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s, padding-left 0.3s;
}

.mobile-nav a:hover {
    color: var(--color-gold);
    padding-left: 8px;
}

/* === Social Sidebar (Desktop - right side) === */
.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 1.1rem;
    transition: opacity 0.3s, width 0.3s;
}

.social-sidebar a:hover {
    opacity: 0.85;
    width: 45px;
}

.social-sidebar .social-fb {
    background: #3b5998;
}

.social-sidebar .social-gp {
    background: #dd4b39;
}

.social-sidebar .social-yelp {
    background: #af0606;
}

.social-sidebar .social-ig {
    background: #e1306c;
}

.social-sidebar .social-phone {
    background: #f25c5c;
}

/* === Mobile Floating Action Button (FAB) === */
.mobile-fab {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
}

.fab-trigger {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e74c3c;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 2;
}

.fab-trigger:hover {
    transform: scale(1.05);
}

.fab-trigger.active {
    background: #c0392b;
    transform: rotate(45deg);
}

.fab-items {
    position: absolute;
    bottom: 60px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.fab-items.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-items a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.fab-items a:hover {
    transform: scale(1.1);
}

.fab-items .fab-fb {
    background: #3b5998;
}

.fab-items .fab-gp {
    background: #dd4b39;
}

.fab-items .fab-yelp {
    background: #af0606;
}

.fab-items .fab-ig {
    background: #e1306c;
}

.fab-items .fab-phone {
    background: #f25c5c;
}

/* === Footer === */
.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.75);
}

.site-footer h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.site-footer h3+p+h3,
.site-footer h3+div+h3,
.site-footer address+h3 {
    margin-top: 16px;
}

.site-footer p,
.site-footer address {
    font-size: 1rem;
    line-height: 1.8;
    font-style: normal;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--color-gold);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.footer-social .social-fb {
    background: #3b5998;
}

.footer-social .social-gp {
    background: #dd4b39;
}

.footer-social .social-yelp {
    background: #af0606;
}

.footer-social .social-ig {
    background: #e1306c;
}

.footer-map-col {
    display: flex;
    flex-direction: column;
}

.footer-map-col iframe {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border: none;
    border-radius: 4px;
    filter: grayscale(10%);
}

@media (min-width: 1024px) {
    .footer-map-col iframe {
        min-height: 250px;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom a {
    color: var(--color-gold) !important;
}

/* === Section Headings === */
.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.2;
}

/* === Hero Section === */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: right;
    padding: 30px 30px 40px;
    max-width: 500px;
    width: 100%;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--color-white);
    color: #a57516;
    border: 3px solid #b8860b;
    border-radius: 30px;
    padding: 10px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(184, 134, 11, 0.1);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #fdfdfd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(184, 134, 11, 0.2);
}

/* === Sections Flow (reorder mobile vs PC) === */
.sections-flow {
    display: flex;
    flex-direction: column;
}

.features-strip {
    order: 1;
    /* Mobile: appears first (after hero) */
}

.who-we-are-section {
    order: 2;
    /* Mobile: appears second */
}

/* === Features Strip === */
.features-strip {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 130px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.features-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px 40px;
    flex: 1;
}

.feature-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.feature-text {
    font-family: 'Josefin Sans', var(--font-body);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    white-space: nowrap;
}

.feature-divider {
    width: 1px;
    height: 55px;
    background: rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

/* === Who We Are Section === */
.who-we-are-section {
    padding: 80px 0 50px;
    background: var(--color-white);
}

.who-box {
    position: relative;
    display: grid;
    grid-template-columns: 400px 1fr;
    border: 1px solid #993500;
    overflow: visible;
    padding: 30px;
}

.who-image {
    position: relative;
    z-index: 1;
    margin-top: -60px;
}

.who-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.who-flower {
    position: absolute;
    top: -50px;
    left: 385px;
    width: 180px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.who-flower img {
    width: 100%;
    height: auto;
}

.who-text {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-label {
    font-family: 'League Spartan', var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #CD980A;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.who-heading {
    font-family: 'Libre Baskerville', var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.who-paragraph {
    font-family: 'League Spartan', var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.who-paragraph:last-child {
    margin-bottom: 0;
}

.who-highlight {
    color: #CD980A;
    font-weight: 700;
}

/* === Quote Section === */
.quote-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 65px 0;
}

.quote-box {
    background: rgba(255, 255, 255, 0.6);
    border: 3px solid rgba(255, 255, 255, 1);
    padding: 28px 30px;
    text-align: center;
    max-width: 810px;
    margin: 0 auto;
}

.quote-text {
    font-family: 'Playfair Display', 'Didot', serif;
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    color: #99570D;
    line-height: 1.3;
    margin-bottom: 15px;
}

.quote-author {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #99570D;
    text-shadow: 0px 4px 5px rgba(0, 0, 0, 0.4);
}

/* === Our Services Section === */
.services-section {
    padding: 80px 0 60px;
    background: var(--color-white);
}

.services-box {
    position: relative;
    border: 1px solid #993500;
    padding: 30px 40px 50px;
    text-align: center;
}

.services-leaf {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    z-index: 2;
}

.services-leaf img {
    width: 100%;
    height: auto;
}

.services-label {
    font-family: 'League Spartan', var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 70px;
    margin-bottom: 5px;
    position: relative;
    z-index: 3;
}

.services-heading {
    font-family: 'Georgia', 'Palatino', serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 35px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.service-card {
    position: relative;
    overflow: visible;
}

.service-card:nth-child(odd) {
    margin-top: -30px;
}

.service-card-img {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 150%;
    overflow: hidden;
}

.service-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-info {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 80%;
}

.service-card-title {
    display: block;
    font-family: 'Georgia', 'Palatino', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 5px;
    line-height: 1.2;
    text-shadow: #c8c8c8 1px 1px 0px, #b4b4b4 0px 2px 0px, #a0a0a0 0px 3px 0px, rgba(140, 140, 140, 0.498039) 0px 4px 0px, #787878 0px 0px 0px, rgba(0, 0, 0, 0.498039) 0px 5px 10px;
}

.service-card-link {
    display: inline-block;
    font-family: 'League Spartan', var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: #993500;
    text-decoration: none;
    background: #FFFFFF;
    border: 1px solid rgb(164, 95, 83);
    border-radius: 0.5em;
    box-shadow: 0.71px 0.71px 1px #000000;
    padding: 4px 12px;
    transition: all 0.2s ease, visibility 0s;
}

.service-card-link:hover {
    background: #993500;
    color: var(--color-white);
}

.services-more {
    text-align: center;
    margin-top: 45px;
}

.services-more-btn {
    display: inline-block;
    font-family: 'League Spartan', var(--font-body);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #993500;
    text-decoration: none;
    border: 1px solid #993500;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.services-more-btn:hover {
    background: #993500;
    color: var(--color-white);
}

/* === Customer Reviews Section === */
.reviews-section {
    padding: 80px 0 60px;
    background: var(--color-white);
}

.reviews-label {
    font-family: 'League Spartan', var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #993500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.reviews-heading {
    font-family: 'Georgia', 'Palatino', serif;
    font-size: 50px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 35px;
}

.reviews-banner-wrap {
    position: relative;
    max-width: 1282px;
    margin: 0 auto;
}

.reviews-banner {
    width: 100%;
    height: 311px;
    position: relative;
    overflow: hidden;
}

.reviews-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-leaf {
    position: absolute;
    right: 0;
    bottom: -80px;
    width: 346px;
    z-index: 2;
}

.reviews-leaf img {
    width: 100%;
    height: auto;
}

.reviews-box-wrap {
    display: flex;
    justify-content: center;
    margin-top: -65px;
    /* Overlap the banner */
    position: relative;
    z-index: 3;
}

.reviews-box {
    background: var(--color-white);
    border: 1px solid #993500;
    width: 568px;
    max-width: 90vw;
    padding: 30px;
    text-align: center;
    position: relative;
    min-height: 250px;
}

.reviews-slider {
    position: relative;
}

.review-slide {
    display: none;
    animation: fadeEffect 0.5s;
}

.review-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 40px;
    color: #993500;
    cursor: pointer;
    padding: 10px;
}

.reviews-arrow-prev {
    left: -50px;
}

.reviews-arrow-next {
    right: -50px;
}

.reviews-title {
    font-family: 'League Spartan', var(--font-body);
    font-size: 20px;
    font-weight: bold;
    color: #CD980A;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.reviews-text {
    font-family: 'Georgia', 'Palatino', serif;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    line-height: 1.6em;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 9.5px;
    margin-top: 20px;
}

.reviews-dot {
    width: 6px;
    height: 6px;
    background: #EEDACB;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.reviews-dot.active {
    background: #993500;
}

/* === Gallery Section === */
.gallery-section {
    padding: 80px 0 0;
    background: var(--color-white);
}

.gallery-label {
    font-family: 'League Spartan', var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #993500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 5px;
}

.gallery-heading {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
    margin-bottom: 35px;
}

.gallery-slider-wrap {
    position: relative;
    width: 100%;
}

.gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gallery-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-slider {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 60px 30px;
}

.gallery-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3 / 4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 50px;
    background-color: #C47B3C;
    border: none;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

/* CSS triangle arrow */
.gallery-arrow::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.gallery-arrow:hover {
    background-color: #993500;
}

/* Prev button */
.gallery-arrow-prev {
    left: 48px;
}

.gallery-arrow-prev::before {
    border-right: 12px solid white;
    margin-right: 5px;
}

/* 3D fold at bottom-left */
.gallery-arrow-prev::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 10px solid rgba(0, 0, 0, 0.5);
    border-left: 10px solid transparent;
}

/* Next button */
.gallery-arrow-next {
    right: 48px;
}

.gallery-arrow-next::before {
    border-left: 12px solid white;
    margin-left: 5px;
}

/* 3D fold at bottom-right */
.gallery-arrow-next::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 10px solid rgba(0, 0, 0, 0.5);
    border-right: 10px solid transparent;
}

.gallery-counter {
    text-align: right;
    color: #993500;
    font-family: 'Georgia', serif;
    font-size: 14px;
    padding: 10px 0;
    margin-right: 5px;
    display: none;
    /* Only show on mobile */
}

/* === Responsive === */
@media (min-width: 1024px) {
    .hero-section {
        height: 85vh;
        min-height: 650px;
    }

    .hero-overlay {
        width: 50%;
        height: 60%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.9) 100%);
    }

    .hero-subtitle {
        font-size: 2.4rem;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 6px;
    }

    .hero-bg {
        z-index: 1;
    }

    /* PC: Who We Are first, Features second */
    .features-strip {
        order: 2;
    }

    .who-we-are-section {
        order: 1;
    }

    .hero-overlay {
        display: none;
        /* Không dùng overlay rời nữa */
    }

    .hero-content {
        position: absolute;
        right: 10%;
        bottom: 50px;
        width: 600px;
        height: auto;
        background: rgba(0, 0, 0, 0.5);
        padding: 30px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        z-index: 3;
    }
}

@media (max-width: 1023px) {
    .hamburger-btn {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .social-sidebar {
        display: none !important;
    }

    .mobile-fab {
        display: block;
    }

    .hero-section {
        height: 90vh;
        min-height: 650px;
    }

    .hero-content {
        background: rgba(0, 0, 0, 0.5);
        padding: 25px 15px;
        position: absolute;
        bottom: 30px;
        left: 20px;
        right: 20px;
        width: auto;
        border-radius: 8px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }

    /* Features strip mobile */
    .features-strip {
        height: auto;
        padding: 30px 0;
    }

    .features-grid {
        flex-direction: column;
        gap: 10px;
    }

    .feature-item {
        padding: 15px 20px;
    }

    .feature-divider {
        width: 60px;
        height: 1px;
        background: rgba(255, 255, 255, 0.3);
    }

    .feature-text {
        font-size: 16px;
    }

    /* Who We Are mobile */
    .who-we-are-section {
        padding: 50px 0;
    }

    .who-box {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .who-image {
        margin-top: 0;
    }

    .who-image img {
        max-height: 400px;
    }

    .who-flower {
        position: relative;
        left: -40px;
        top: -10px;
        margin-bottom: -30px;
        width: 120px;
    }

    .who-text {
        padding: 20px 0 0 0;
    }

    .who-heading {
        font-size: 26px;
    }

    /* Quote mobile */
    .quote-section {
        padding: 40px 0;
    }

    .quote-box {
        padding: 20px 25px;
    }

    .quote-text {
        font-size: 24px;
    }

    .quote-author {
        font-size: 20px;
    }

    /* Services mobile */
    .services-section {
        padding: 60px 0 40px;
    }

    .services-box {
        padding: 20px 15px 40px;
    }

    .services-leaf {
        width: 140px;
        top: -55px;
    }

    .services-label {
        margin-top: 35px;
    }

    .services-heading {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card-img {
        padding-bottom: 120%;
    }

    .service-card:nth-child(odd) {
        margin-top: 0;
    }

    /* Reviews mobile */
    .reviews-section {
        padding: 60px 0 40px;
    }

    .reviews-heading {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .reviews-banner {
        height: 155px;
        /* Giảm chiều cao 1 nửa */
    }

    .reviews-leaf {
        width: 140px;
        bottom: -20px;
    }

    .reviews-box-wrap {
        margin-top: 30px;
        /* Không đè lên ảnh */
    }

    .reviews-box {
        padding: 25px 20px;
        margin-top: 0;
    }

    .reviews-arrow {
        display: none;
        /* Hide arrows on mobile to save space */
    }

    .reviews-title {
        font-size: 18px;
    }

    .reviews-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Gallery mobile */
    .gallery-section {
        padding: 60px 0 0;
    }

    .gallery-label {
        font-size: 16px;
    }

    .gallery-heading {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .gallery-slider {
        padding: 25px 15px 20px;
    }

    .gallery-track {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        display: none;
    }

    .gallery-item.active {
        display: block;
    }

    .gallery-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .gallery-arrow-prev {
        left: 5px;
    }

    .gallery-arrow-next {
        right: 5px;
    }

    .gallery-counter {
        display: block;
    }
}

@media (max-width: 767px) {
    .footer-map-col iframe {
        min-height: 180px;
    }

    .feature-item {
        padding: 8px 20px;
    }
}

/* ══════════════════════════════════════════════════════
   PAGE BANNER (Policy / Gallery / Contact hero)
══════════════════════════════════════════════════════ */
.page-banner {
    position: relative;
    background: var(--color-dark);
    background-size: cover;
    background-position: center;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 5, 0.58);
}

.page-banner-content {
    position: relative;
    z-index: 1;
    padding: 64px 24px;
}

.page-banner-label {
    font-family: 'League Spartan', var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-banner-title {
    font-family: 'Libre Baskerville', var(--font-heading);
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.page-banner-sub {
    font-family: 'League Spartan', var(--font-body);
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    margin-top: 14px;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════
   POLICY PAGE
══════════════════════════════════════════════════════ */
.policy-section {
    background: var(--color-bg-light);
}

.policy-content h2 {
    font-family: 'Libre Baskerville', var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-gold);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    font-family: 'League Spartan', var(--font-body);
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 14px;
}

.policy-content ul {
    font-family: 'League Spartan', var(--font-body);
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 14px;
    list-style: disc;
}

.policy-content ul li {
    margin-bottom: 6px;
}

.policy-content strong {
    color: var(--color-dark);
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════════ */
.gallery-page-banner {
    min-height: 260px;
    display: flex;
    align-items: center;
    position: relative;
}

.gallery-page-feed-section {
    background: var(--color-bg-light);
    min-height: 300px;
}

.gallery-page-empty {
    text-align: center;
    color: #999;
    font-size: 15px;
    padding: 60px 0;
}

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-section {
    background: var(--color-bg-light);
    padding: 60px 0 80px;
}

.contact-note {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
    font-family: 'League Spartan', var(--font-body);
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.contact-note p { margin: 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-map iframe {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: 6px;
    display: block;
    filter: grayscale(10%);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-label {
    font-family: 'Libre Baskerville', var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-hours p {
    font-family: 'League Spartan', var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

.contact-info-item a {
    color: var(--color-text);
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: var(--color-gold);
}

.contact-hours p { margin: 0; }

.contact-social { margin-top: 4px; }

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        height: 300px;
    }
}

/* ══════════════════════════════════════════════════════
   MOBILE BOTTOM NAV (.link-bottom)
══════════════════════════════════════════════════════ */
.link-bottom {
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    display: none;
    background: #e0aa3e;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.b-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
}

.b-wrapper a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    flex: 1;
    transition: all 0.3s ease;
}

.b-wrapper a:hover {
    color: var(--color-dark);
    opacity: 0.8;
}

.b-wrapper a span {
    font-size: 20px;
    margin-bottom: 5px;
}

.b-wrapper a p {
    margin: 0;
    font-weight: 500;
}

@media only screen and (max-width: 768px) {
    .link-bottom {
        display: block;
    }
}

/* ── ACF WYSIWYG overrides ── */

/* Quote: p bên trong WYSIWYG kế thừa style của .quote-text */
.quote-text p {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0;
}

/* Who We Are: WYSIWYG content khớp với .who-paragraph */
.who-text-acf p {
    font-family: 'League Spartan', var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.who-text-acf p:last-child {
    margin-bottom: 0;
}

.who-text-acf strong {
    color: #CD980A;
    font-weight: 700;
}

/* Reviews: WYSIWYG content khớp với .reviews-text */
.reviews-text p {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0;
}