:root {
    --bg: #3a0707;
    --accent: #e7caa3;
    --muted: #ffffff;
    --card-bg: #4b0b0b;
    --glass: rgba(255,255,255,0.03);
    --radius: 12px;
    --container: 1100px;
    /* 🔥 BRAND FONT (LOGO FONT) */
    --brand-font: "Cinzel", serif;
}

* {
    box-sizing: border-box;
    font-family: var(--brand-font);
}

html, body {
    height: 100%;
    margin: 0;
    background: var(--bg);
    color: #fff;
}

/*body {
    padding-top: 90px;
    background: linear-gradient(180deg, #280303, #280303);
    color: var(--accent);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}*/

/* container */
.container {
    /*  max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;*/
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px;
}

/* ===========================
   🔹 FIXED HEADER SECTION
=========================== */

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: rgb(54 0 0);
    backdrop-filter: blur(8px);
    z-index: 50;
    border-bottom: 1px solid rgb(231 202 163);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 3px 16px;
}
/*.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #3a0707;
    z-index: 50;
    border-bottom: 1px solid rgb(231 202 163);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}*/

.brand {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 15px 0px;
    border-radius: 12px;
}

    .brand img {
        height: 70px !important;
        width: 90px;
        height: auto;
        object-fit: contain;
      /*  filter: drop-shadow(0 0 6px rgb(231 202 163));*/
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .brand:hover img {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgb(231 202 163));
    }

.logo-text h1 {
    /*font-family: "Cinzel", serif;*/
    font-size: 1.9rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--gold1), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--accent);
    letter-spacing: 1px;
    margin: 0;
    text-align: left
}

.logo-text p {
    /*font-family: "Poppins", sans-serif;*/
    margin: 0;
    font-size: 12px;
    /*color: #d16a44;*/
    color: var(--accent);
    text-align: left
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .brand {
        /*   flex-direction: column;*/
        text-align: center;
        padding: 7px 7px;
    }

        .brand img {
            width: 70px;
        }

    .logo-text h1 {
        font-size: 1.4rem;
        text-align: left
    }

    .logo-text p {
        font-size: 0.85rem;
        letter-spacing: 3px;
        text-align: left
    }
}

/* brand */
/*.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--accent);
}

.logo {
    height: 64px;
    width: 64px;
    object-fit: contain;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    padding: 6px;
}

.logo img {
    height: 70px !important;
    width: 90px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}*/

/* nav + actions grouped */
/*.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}*/

/* main nav */
/*.main-nav {
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent);
        background: rgb(81 19 19);
    }*/

/* Navigation */
.main-nav {
    margin-left: auto;
    display: flex;
    gap: 12px;
}

    .main-nav a {
        color: var(--muted);
        text-decoration: none;
        padding: 8px 10px;
        border-radius: 8px;
        transition: color 0.3s ease, background 0.3s ease;
    }

        .main-nav a.active,
        .main-nav a:hover {
            color: var(--accent);
        }

.header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 12px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
}

/* ===========================
   Active Menu Highlight
   =========================== */
.main-nav a.active {
    color: var(--accent);
    font-weight: 600;
    position: relative;
}

    .main-nav a.active::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 50%;
        width: 30%;
        height: 2px;
        background: var(--accent);
        transform: translateX(-50%);
        border-radius: 3px;
    }

/* Cart */
.cart-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.04);
    padding: 6px 10px;
    border-radius: 10px;
    color: var(--accent);
    cursor: pointer;
}

.cart-count {
    background: var(--accent);
    color: #3a0707;
    border-radius: 999px;
    padding: 2px 8px;
    margin-left: 6px;
    font-weight: 600;
}

/* 🔹 Mobile Toggle */
/*.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

    .menu-toggle .bar {
        height: 3px;
        width: 100%;
        background-color: var(--accent);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translateY(7px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translateY(-7px);
    }*/


/* ===========================
   ✅ Responsive Navigation Toggle
   =========================== */

/* Hidden by default on desktop (already set above) */
.menu-toggle {
    position: relative;
    width: 32px;
    height: 24px;
    cursor: pointer;
    display: none;
    background: none;
    border: none;
    outline: none;
    z-index: 101;
}

    /* Hamburger lines */
    .menu-toggle::before,
    .menu-toggle::after,
    .menu-toggle span {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--accent);
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    .menu-toggle span {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-toggle::before {
        top: 0;
    }

    .menu-toggle::after {
        bottom: 0;
    }

    /* When active → make X icon */
    .menu-toggle.active::before {
        transform: rotate(45deg);
        top: 50%;
    }

    .menu-toggle.active::after {
        transform: rotate(-45deg);
        bottom: 50%;
    }

    .menu-toggle.active span {
        opacity: 0;
    }

/* ===========================
   Mobile Nav Animation
   =========================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgb(231 202 163);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s ease;
    }

        .main-nav.open {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .main-nav a {
            padding: 14px 20px;
            font-size: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            text-align: center;
        }
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    padding: 48px 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.hero-text h1 {
    font-family: var(--brand-font);
    font-size: 48px;
    margin: 0;
    color: var(--accent);
}

.lead {
    color: var(--muted);
    font-size: 16px;
    margin-top: 10px;
   /* max-width: 55ch;*/
}

/*.team-img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, #f3e2c7, #d6b98c);
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    border: 2px solid rgba(231, 202, 163, 0.6);
}
*/

.hero-ctas {
    margin-top: 18px;
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--accent);
}

.btn-secondary {
    background: linear-gradient(145deg, rgba(231,202,163,0.15), rgba(231,202,163,0.08));
    color: var(--accent);
    border: 1px solid rgba(231,202,163,0.2);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all .3s ease;
}

    .btn-secondary:hover {
        background: var(--accent);
        color: var(--bg);
        transform: translateY(-3px);
        box-shadow: 0 0 14px rgba(231,202,163,0.3);
    }

/* hero art */
.hero-art {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-banner {
    width: 100%;
    max-width: 680px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(231, 202, 163, 0.2);
    border: 1px solid rgba(231, 202, 163, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hero-banner:hover {
        transform: scale(1.02);
        box-shadow: 0 0 40px rgba(231, 202, 163, 0.4);
    }


@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-art {
        order: -1;
        margin-bottom: 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-banner {
        max-width: 100%;
        border-radius: 10px;
    }
}



/* ===========================
   SECTIONS
=========================== */
.section {
    text-align: center;
}

.section-title {
    font-family: var(--brand-font);
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
}

    .section-title::after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        background: var(--accent);
        margin: 10px auto 0;
        opacity: 0.5;
    }

/* ===========================
   PRODUCT GRID
=========================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    transition: transform .18s ease, box-shadow .18s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 30px rgba(0,0,0,0.6);
    }

.product-media {
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-media img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.product-name {
    font-weight: 700;
    color: var(--accent);
    font-size: 16px;
}

.product-desc {
    font-size: 13px;
    color: var(--muted);
    min-height: 36px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price {
    font-weight: 700;
    color: var(--accent);
}

.card-actions {
    display: flex;
    gap: 8px;
}

.btn-card {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.04);
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--accent);
    cursor: pointer;
}

/* about section layout */
.about-grid {
    text-align: left;   
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    gap: 18px;
    color: var(--muted);
}

/* ===========================
   FOOTER
=========================== */
/*.site-footer {
    background: linear-gradient(180deg, #2b0202, #280303);
    border-top: 1px solid rgb(231 202 163);
    padding: 30px 0;
    margin-top: 60px;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-inner p {
        margin: 0;
        font-size: 14px;
    }

.socials {
    display: flex;
    gap: 12px;
}

    .socials a {
        background: var(--accent);
        color: var(--bg);
        padding: 6px 10px;
        border-radius: 50%;
        font-weight: 700;
        text-decoration: none;
        transition: all .3s ease;
    }

        .socials a:hover {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
        }*/


/* ===========================
   Footer (Enhanced + Animated)
   =========================== */
.site-footer {
    border-top: 1px solid rgb(231 202 163);
    padding: 18px 0;
    margin-top: 40px;
    background: linear-gradient(180deg, #2b0202, #280303);
    color: var(--muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-left {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* Developer Credit Blink + Glow */
.dev-credit a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    animation: blink-glow 1.8s infinite ease-in-out;
}

    .dev-credit a:hover {
        color: var(--muted);
        text-shadow: 0 0 10px rgb(231 202 163);
    }

/* Social Icons Section */
.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .footer-right a {
        color: var(--muted);
        font-size: 1.2rem;
        text-decoration: none;
        transition: all 0.4s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid rgb(231 202 163);
        animation: iconPulse 2.5s ease-in-out infinite;
    }

        /* Hover Effect */
        .footer-right a:hover {
            color: var(--gold2);
            border-color: var(--gold2);
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(255, 210, 122, 0.6);
        }

        /* Instagram Special Gradient Pulse */
        .footer-right a[title="Instagram"]:hover {
            color: #fff;
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
            border-color: transparent;
            box-shadow: 0 0 12px rgba(255, 100, 150, 0.7);
        }

/* Responsive Alignment */
@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-right {
        justify-content: center;
    }
}

/* Animations */
@keyframes blink-glow {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 6px rgba(255, 210, 122, 0.8);
    }

    50% {
        opacity: 0.5;
        text-shadow: 0 0 2px rgba(255, 210, 122, 0.3);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 5px rgba(255, 210, 122, 0.3);
    }

    50% {
        transform: scale(1.15);
        opacity: 0.85;
        box-shadow: 0 0 12px rgba(255, 210, 122, 0.6);
    }
}

/* Optional utility classes */
.url-text {
    font-size: 0.9em;
    color: #aaa;
}

.blink-link {
    color: #fff700;
    animation: blink 1.2s infinite;
    text-decoration: none;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* modal */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 60;
}

    .modal[aria-hidden="false"] {
        display: flex;
    }

.modal-panel {
    background: linear-gradient(180deg, rgb(81 19 19), #4b0b0b);
    padding: 20px;
    border-radius: 12px;
    max-width: 880px;
    width: 92%;
    color: var(--accent);
}

.modal-close {
    position: absolute;
    right: 22px;
    top: 20px;
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: 26px;
    cursor: pointer;
}

.center {
    text-align: center;
    margin-top: 20px;
}

.muted {
    color: var(--muted);
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
/*@media (max-width: 900px) {
    .header-inner {
        gap: 12px;
    }

    .main-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: var(--bg);
        flex-direction: column;
        width: 200px;
        border: 1px solid rgba(231,202,163,0.3);
        border-radius: 10px;
        padding: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    }

        .main-nav.show {
            display: flex;
        }

    .menu-toggle {
        display: flex;
        color: #fff;
    }

    .nav-link {
        padding: 10px;
        text-align: left;
        width: 100%;
    }
}*/

@media (max-width: 1000px) {
    .product-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-art {
        order: -1;
        margin-bottom: 10px;
    }
}

@media (max-width: 720px) {
    .product-grid {
        grid-template-columns: repeat(1,1fr);
    }

    .logo {
        height: 52px;
        width: 52px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .product-grid {
        grid-template-columns: repeat(1,1fr);
    }

    .header-inner {
        gap: 10px;
    }

    .lead {
        max-width: unset;
    }
}

/* 🌟 Products Page Header */
.top-row {
    text-align: center;
   /* background: linear-gradient(145deg, #3a0707, #4b0b0b);*/
    /*border: 1px solid rgba(231, 202, 163, 0.4);*/
    border-radius: 14px;
    padding: 25px 20px;
    margin-bottom: 30px;
    /*box-shadow: 0 4px 10px rgba(0,0,0,0.3);*/
}

    /* Title styling */
    .top-row h1 {
        font-family: var(--brand-font);
        color: var(--accent);
        font-size: 2rem;
        margin: 0 0 18px;
        position: relative;
    }

        .top-row h1::after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background: var(--accent);
            margin: 10px auto 0;
            opacity: 0.6;
            border-radius: 2px;
        }

/* 🔹 Filters area */
.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

    /* Dropdown & Search box */
    .filters select,
    .filters input {
        padding: 10px 14px;
        font-size: 15px;
        border: 1px solid rgba(231,202,163,0.3);
        border-radius: 8px;
        outline: none;
        background: rgba(255,255,255,0.07);
        color: var(--accent);
        transition: all 0.3s ease;
        width: 200px;
    }

        .filters select option {
            background: #3a0707;
            color: var(--accent);
        }

        /* Placeholder color fix */
        .filters input::placeholder {
            color: var(--muted);
        }

        /* Hover / Focus effects */
        .filters select:hover,
        .filters input:hover {
            border-color: var(--accent);
            box-shadow: 0 0 6px rgba(231,202,163,0.3);
        }

        .filters select:focus,
        .filters input:focus {
            border-color: var(--accent);
            background: rgba(255,255,255,0.1);
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .filters {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

        .filters select,
        .filters input {
            width: 90%;
            max-width: 320px;
        }
}


/* ===========================
   Contact Page
   =========================== */
.contact-page {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--light);
}

    .contact-page h1 {
        font-size: 2.2rem;
        margin-bottom: 8px;
        color: var(--accent);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .contact-page .lead {
        font-size: 1.05rem;
        color: var(--muted);
        margin-bottom: 32px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: rgba(255, 255, 255, 0.02);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid rgb(231 202 163);
    box-shadow: 0 0 10px rgb(231 202 163);
    margin-bottom: 36px;
}

    .contact-form label {
        display: flex;
        flex-direction: column;
        text-align: left;
        color: var(--accent);
        font-weight: 500;
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        background: rgba(255, 255, 255, 0.05);
        color: var(--light);
        border: 1px solid rgb(231 202 163);
        border-radius: 8px;
        padding: 10px 12px;
        font-size: 1rem;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
        outline: none;
        margin-top: 6px;
    }

        .contact-form input:focus, .contact-form select:focus,
        .contact-form textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 6px rgba(255, 210, 122, 0.4);
        }

    .contact-form select {
        background-color: #4d1313; /* dark chocolate */
        color: #f5d09a; /* text in normal view */
        padding: 12px 15px;
        border-radius: 8px;
        border: 1px solid #f5d09a;
        font-size: 1rem;
        width: 100%;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

        /* Fix the options text color when dropdown opens */
        .contact-form select option {
            background-color: #4d1313; /* same as dropdown background */
            color: #f5d09a; /* gold text visible on dark background */
            padding: 10px;
        }

            /* Optional: hover highlight for better UX */
            .contact-form select option:hover {
                background-color: #ffd70033; /* light gold hover effect */
            }

    /* Submit Button */
    .contact-form .btn-primary {
        align-self: flex-start;
        background: var(--accent);
        color: #111;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 10px 20px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.2s ease;
    }

        .contact-form .btn-primary:hover {
            background: var(--gold2);
            transform: scale(1.05);
        }


.contact-info {
    background: rgba(255, 255, 255, 0.02);
    padding: 24px 20px;
    border-radius: 12px;
    border: 1px solid rgb(231 202 163);
    box-shadow: 0 0 10px rgb(231 202 163);
    margin: 40px 0;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/
    font-family: 'Inter', sans-serif;
   /* color: #4b2e2e;*/
    /*border: 1px solid #e0cfc0;*/
}

    .contact-info h2 {
        font-size: 1.75rem;
        margin-bottom: 12px;
        color: var(--accent);
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .contact-info p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    .contact-info a {
        color: #b03a2e;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-info a:hover {
            color: #7a3e2f;
            text-decoration: underline;
        }


/* Map Section */
.map iframe {
    border-radius: 10px;
    border: 1px solid rgb(231 202 163);
    filter: brightness(0.9) contrast(1.05);
    box-shadow: 0 0 10px rgb(231 202 163);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 768px) {
    .contact-page {
        padding: 40px 16px;
    }

    .contact-form {
        padding: 20px;
    }

        .contact-form input,
        .contact-form textarea {
            font-size: 0.95rem;
        }

        .contact-form .btn-primary {
            width: 100%;
            text-align: center;
        }

    .map iframe {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .contact-page h1 {
        font-size: 1.8rem;
    }

    .contact-page .lead {
        font-size: 0.95rem;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent); /* uses your theme's gold tone */
    color: var(--bg); /* deep maroon background for icon */
    font-size: 28px;
    padding: 14px 16px;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(231, 202, 163, 0.4);
    z-index: 100;
    animation: zoomPulse 2s infinite ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.15);
        box-shadow: 0 0 18px rgba(231, 202, 163, 0.6);
    }

/* Zoom In Zoom Out Animation */
@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}



