/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --color-primary: #ffffff;
    /* Clean White */
    --color-secondary: #f9f5f0;
    /* Cream / Very Light Beige */
    --color-accent: #d4af37;
    /* Soft Gold */
    --color-accent-hover: #b59021;
    /* Darker Gold */
    --color-dark: #333333;
    /* Dark Grey/Black */
    --color-text: #666666;
    /* Grey Text */
    --color-light-pink: #fce4ec;
    /* Light Pink */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--color-secondary);
}

/* =========================================
   2. TYPOGRAPHY & UTILITIES
   ========================================= */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header .subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 10px;
    display: block;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-dark);
    color: #ffffff;
    border-color: var(--color-dark);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-outline {
    border-color: var(--color-dark);
    color: var(--color-dark);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-dark);
    color: #fff;
}

.btn-white {
    background-color: #fff;
    color: var(--color-dark);
}

.btn-white:hover {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 5px;
    margin-top: 10px;
    width: 100%;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* =========================================
   3. HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.slogan {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-top: 2px;
    font-family: var(--font-body);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list li a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-list li a:hover::after,
.nav-list li a.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
    color: var(--color-dark);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1002;
    padding: 30px;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-list li a {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    color: var(--color-dark);
}

/* =========================================
   4. HOME SECTIONS
   ========================================= */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../hero-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    margin-top: 80px;
    position: relative;
}

.hero-content h2 {
    font-size: 4.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-buttons .btn-outline {
    border-color: #fff;
    color: #fff;
}

.hero-buttons .btn-outline:hover {
    background-color: #fff;
    color: var(--color-dark);
}

/* Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 10px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-gallery-text {
    background-color: #fff;
    padding: 10px 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
    font-weight: 600;
}

.btn-view {
    background-color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-dark);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 15px 0;
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--color-dark);
}

.product-info .price {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-accent);
}

/* Promo Section */
.promo-container {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    box-shadow: var(--shadow);
}

.promo-content {
    flex: 1;
    padding: 60px;
}

.promo-image {
    flex: 1;
    height: 450px;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
}

.gallery-grid img:hover {
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-dark);
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* =========================================
   5. FOOTER
   ========================================= */
.footer {
    background-color: #222;
    color: #ddd;
    padding: 80px 0 20px;
}

.footer-col.brand-col img {
    filter: brightness(0) invert(0.8);
    /* Turns dark logo to light gray */
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--color-accent);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

.btn-whatsapp-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-whatsapp-footer:hover {
    background-color: #128C7E;
}

/* =========================================
   6. PAGES & MODAL
   ========================================= */
.page-header {
    background-color: var(--color-secondary);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-style: italic;
    color: var(--color-text);
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-overlay-box {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent);
    z-index: -1;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.features-list {
    margin-top: 20px;
}

.feature-item {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--color-accent);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: #fff;
    padding: 30px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--color-accent);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-img {
    width: 40px;
    height: 40px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-dark);
}

.stars {
    color: #f4c150;
    font-size: 0.8rem;
}

.review-body p {
    font-style: italic;
    font-size: 0.95rem;
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background-color: #fff;
    box-shadow: var(--shadow);
}

.contact-info {
    background-color: var(--color-dark);
    color: #fff;
    padding: 50px;
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--color-accent);
    margin-top: 5px;
}

.info-item h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-form-wrapper {
    padding: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-dark);
}

/* Tools */
.btn-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--color-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 99;
    visibility: hidden;
}

.btn-scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.btn-floating-whatsapp {
    position: fixed;
    bottom: 85px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.btn-floating-whatsapp:hover {
    transform: scale(1.1);
}

/* --- Gallery Modal & Slider --- */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-modal.open {
    opacity: 1;
    visibility: visible;
}

.gallery-content {
    width: 90%;
    max-width: 600px;
    height: auto;
    max-height: 90vh;
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
}

.close-gallery {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.close-gallery:hover {
    background: var(--color-dark);
    color: #fff;
}

.gallery-slider {
    position: relative;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    max-height: 70vh;
    overflow: hidden;
}

.slider-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slider-image-container img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--color-dark);
    color: #fff;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.gallery-info {
    padding: 18px 20px;
    background-color: #fff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-text h2 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.3;
}

.gallery-text p {
    margin: 0;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.gallery-whatsapp {
    width: auto;
    margin: 0;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .promo-container,
    .contact-container,
    .about-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .promo-image {
        height: 250px;
        order: -1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

}



