:root {
    --leather-dark: #2b1d12; /* Darker Espresso for better contrast */
    --leather-mid: #5d4037;  
    --leather-light: #8d6e63; 
    --accent-gold: #c5a059;   /* Brighter, more metallic gold */
    --parchment: #f4ece2;    /* Lightened parchment for better text contrast */
    --parchment-dark: #e6ccb2; 
    --text-main: #1a110a;    /* Near black brown for readability */
    --text-muted: #5f4b32;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--parchment);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
}

/* Texture Overlays */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("https://www.transparenttextures.com/patterns/p6.png");
}

h1, h2, h3, .logo, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--leather-dark);
    text-align: center;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin: 20px auto 0;
}

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

.container-full {
    width: 100%;
    padding: 0 40px;
}

.section-padding {
    padding: 120px 0;
}

.alternate-bg {
    background-color: var(--parchment-dark);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Header - More Defined */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent; /* Start fully transparent */
    transition: var(--transition);
}

header.scrolled {
    background: var(--leather-dark);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--accent-gold);
}

.logo {
    font-size: 1.8rem;
    color: var(--parchment); /* Light color initially over dark hero */
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

header.scrolled .logo {
    color: var(--accent-gold); /* Gold color when scrolled */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--parchment); /* Light color initially */
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

header.scrolled .nav-links a {
    color: var(--parchment); /* Keep it light on dark background when scrolled */
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 17, 10, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-content {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain; /* Ensures photo doesn't stretch */
    border: 8px solid var(--white);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    filter: none; /* Remove filters in lightbox for clarity */
}

.lightbox.active {
    display: flex;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
}

.gallery-item {
    cursor: pointer;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.call-btn {
    background-color: #25D366; /* WhatsApp Green style or just bright green */
}

.up-btn {
    background-color: var(--leather-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.up-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Hero */
.hero {
    height: 100vh;
    background: url('../photos/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 17, 10, 0.85) 0%, rgba(26, 17, 10, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--leather-dark);
}

.btn-primary:hover {
    background-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--leather-dark);
}

/* Image Integration */
img {
    filter: contrast(1.1);
    transition: var(--transition);
    display: block;
    width: 100%;
   
}

img:hover {
    transform: scale(1.02);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lead {
    font-size: 1.4rem;
    color: var(--leather-mid);
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Brands Carousel */
@keyframes brandScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.brands-carousel-wrapper {
    margin-top: 50px;
    overflow: hidden;
    /* Fade edges */
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.brands-carousel {
    width: 100%;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 80px;
    padding: 20px 0;
    width: max-content;
    animation: brandScroll 30s linear infinite;
    will-change: transform;
}

.brands-carousel-wrapper:hover .brands-track,
.brands-track.paused {
    animation-play-state: paused;
}

.brand-item-premium {
    flex: 0 0 auto;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-style: italic;
    font-weight: 500;
    color: var(--leather-dark);
    cursor: default;
    opacity: 0.7;
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.brand-item-premium:hover {
    color: var(--accent-gold);
    opacity: 1;
    transform: scale(1.1);
}

/* Collections */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: stretch; /* Cards in same row have same height */
}

.collection-card {
    background: white;
    padding: 15px;
    border: 4px solid rgba(43, 29, 18, 0.1);
    border-bottom: 4px solid var(--leather-dark);
    transition: var(--transition);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-img {
    height: 300px; /* Standardized height for the image area */
    overflow: hidden;
    margin-bottom: 20px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Makes info container fill the card */
    justify-content: space-between; /* Pushes button to the very bottom */
    text-align: center;
}

.card-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--leather-dark);
}

.card-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding-bottom: 2px;
}

.card-link:hover {
    border-bottom-color: var(--accent-gold);
}

.section-header p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Scrollable */
.gallery-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 40px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) transparent;
}

.gallery-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.gallery-scroll-container .gallery-item {
    flex: 0 0 500px; /* Bigger items */
    height: 600px; /* Bigger height */
    overflow: hidden;
    border: 10px solid var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gallery-scroll-container .gallery-item img {
    height: 100%;
    object-fit: cover;
    border: none;
}

/* Offers */
.offers-section {
    background-image: linear-gradient(rgba(244, 236, 226, 0.9), rgba(244, 236, 226, 0.9)), url('../photos/outside/1000004084.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.offer-badge {
    display: inline-block;
    background: var(--leather-dark);
    color: var(--accent-gold);
    padding: 8px 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* Why Folia */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* Reviews */
.reviews-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: start;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid rgba(43, 29, 18, 0.1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* Social */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-btn {
    width: 65px;
    height: 65px;
    background-color: var(--leather-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    font-size: 2rem;
    transition: var(--transition);
    border: 1px solid var(--accent-gold);
}

.social-btn:hover {
    background-color: var(--accent-gold);
    color: var(--leather-dark);
    transform: translateY(-5px) rotate(360deg);
}

/* Map Interaction */
.map-container {
    position: relative;
    border: 15px solid var(--white);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    overflow: hidden;
}

.map-overlay-link {
    text-decoration: none;
    display: block;
    position: relative;
}

.map-btn-wrapper {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.map-placeholder iframe {
    pointer-events: auto; /* Enable map interaction */
}

/* Visit Us */
.contact-info {
    padding-right: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start; /* Changed to start for multi-line hours */
    gap: 25px;
    margin-bottom: 30px;
}

.hours-list {
    flex: 1;
}

.hours-list p {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--leather-dark);
    display: flex;
    justify-content: space-between;
    max-width: 300px;
    border-bottom: 1px dashed rgba(43, 29, 18, 0.1);
}

.hours-list p strong {
    font-weight: 700;
}

.info-item i {
    color: var(--accent-gold);
    font-size: 2.2rem;
    min-width: 45px;
    text-align: center;
    margin-top: 5px;
}


.info-item p {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--leather-dark);
}

/* Footer */
footer {
    background-color: var(--leather-dark);
    color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
}

.footer-logo {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-socials a {
    color: var(--accent-gold);
    font-size: 2.5rem;
    transition: var(--transition);
}

/* Animations */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal-up    { transform: translateY(30px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--leather-dark);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .mobile-menu-btn { display: flex; }
    .nav-links { display: none; }
    .gallery-scroll-container .gallery-item { flex: 0 0 300px; height: 400px; }

    /* Real Zoom out photos on mobile */
    .card-img {
        height: 220px; /* Give it more vertical space */
        padding: 0; 
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-img img {
        max-width: 110%; /* Force the image to be smaller (Zoom Out effect) */
        max-height: 110%;
        object-fit: contain;
    }

    .nav-links.mobile-active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--leather-dark);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.mobile-active li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-links.mobile-active a {
        color: var(--parchment);
        padding: 15px 30px;
        display: block;
        font-size: 0.9rem;
    }

    .nav-links.mobile-active a:hover {
        color: var(--accent-gold);
        background: rgba(255, 255, 255, 0.04);
    }

    header.scrolled .mobile-menu-btn span {
        background: var(--parchment);
    }
}

/* ── Hero Fade-In Animations ─────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.25s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.75s; }

/* ── Story Image Accent ───────────────────────────────────── */
.story-img {
    position: relative;
    z-index: 0;
}

.img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-color: var(--accent-gold);
    z-index: -1;
}

/* ── Review Card Internals ───────────────────────────────── */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--leather-dark);
    margin-bottom: 5px;
}

.badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--leather-mid);
    border: 1px solid var(--parchment-dark);
    padding: 2px 8px;
    border-radius: 20px;
}

.card-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
    padding-top: 2px;
}

.card-stars i {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.quote {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 0.95rem;
    position: relative;
    padding-top: 10px;
}

.quote::before {
    content: "\201C";
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--accent-gold);
    opacity: 0.35;
    position: absolute;
    top: -15px;
    left: -8px;
    line-height: 1;
    pointer-events: none;
}

/* ── Rating Summary ──────────────────────────────────────── */
.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 50px;
    flex-wrap: wrap;
}

.rating-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--leather-dark);
    line-height: 1;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.reviews-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ── Footer Text ─────────────────────────────────────────── */
.footer-tagline {
    font-style: italic;
    color: var(--parchment-dark);
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 20px;
    line-height: 1.8;
}

/* ── Feature Item Text ───────────────────────────────────── */
.feature-item h3 {
    font-size: 1.15rem;
    color: var(--leather-dark);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}
