﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #1a0d08;
    --bg-brown: #2a140c;
    --accent: #d4a373;
    --accent-hover: #b8834f;
    --light-bg: #f8f4ee;
    --text-light: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: var(--bg-dark);
    color: #222;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    position: relative;
    z-index: 5;
}

.top-bar {
    background: var(--bg-dark);
    border-bottom: 1px solid #3a2017;
}

.top-bar-inner {
    width: min(2560px, 92%);
    min-height: 160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.top-copy {
    color: #e2d3c2;
    font-size: 0.74rem;
}

/* .top-actions {
    display: flex;
    align-items: center;
    gap: 34px;
} */

.top-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* .top-actions a {
    text-decoration: none;
    color: #f5d27a; /* gold color */
} */

/* Visit Button Style */
.visit-btn {
    background-color: #f5d27a;  /* gold */
    color: #2b1a10; /* dark brown text */
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

.visit-btn:hover {
    background-color: #ffffff;
    color: #2b1a10;
}




.top-actions a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.00rem;
    transition: color 0.2s ease;
}

.top-actions a:hover {
    color: var(--accent);
}

.visit-btn {
    border: 1px solid #7f644c;
    border-radius: 4px;
    padding: 3px 10px;
}

.logo-float {
    position: absolute;
    left: 50%;
    top: 82px;
    transform: translate(-50%, -50%);
    z-index: 3;
}


.logo-float img {
    width: min(640px, 52vw);
    height: auto;
    object-fit: contain;
    margin-top: 110px;
}


.logo-section {
    background: var(--bg-brown);
    text-align: center;
    padding: 85px 25px 25px;
    
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    line-height: 1;
    color: var(--text-light);
    font-weight: 600;
}

.navbar {
    background: var(--bg-brown);
    border-top: 1px solid #3a2017;
    border-bottom: 1px solid #3a2017;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 12px 16px;
}

.navbar a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.78rem;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.navbar a:hover,
.navbar a.active {
    color: var(--accent);
    border-color: var(--accent);
}

.hero {
    min-height: clamp(420px, 75vh, 760px);
    background: url('bg.webp') center / cover no-repeat;
    position: relative;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--text-light);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 0, 0, 0.58);
}

.hero-content {
    position: relative;
    width: min(90%, 760px);
    z-index: 1;
    padding: 20px;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.hero p {
    color: var(--text-light);
    font-size: clamp(0.95rem, 2.1vw, 1.05rem);
    margin-bottom: 22px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    background: var(--accent);
    color: var(--text-light);
    border-radius: 4px;
    padding: 12px 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.featured {
    background: var(--light-bg);
    padding: clamp(52px, 7vw, 80px) 5%;
    text-align: center;
    border-top: 1px solid #eadfce;
}

.featured h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.8vw, 2.5rem);
    margin-bottom: clamp(28px, 5vw, 50px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 22px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}

.product-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.card-text {
    padding: 14px;
}

.card-text h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.card-btn {
    display: inline-block;
    text-decoration: none;
    background: var(--accent);
    color: var(--text-light);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: background 0.2s ease;
}

.card-btn:hover {
    background: #c19463;
}

.contact {
    background: url('images/footerBg.webp') center / cover no-repeat;
    color: var(--text-light);
    padding: clamp(48px, 6vw, 72px) 20px;
    text-align: center;
}

.contact-overlay {
    background: rgba(0, 0, 0, 0.72);
    max-width: 560px;
    margin: 0 auto;
    border-radius: 10px;
    padding: clamp(24px, 4vw, 40px) clamp(18px, 4vw, 30px);
}

.contact-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4.5vw, 2rem);
    margin-bottom: 8px;
}

.contact-overlay p {
    font-size: 0.9rem;
    margin-bottom: 18px;
}

form {
    margin: 16px 0;
    display: grid;
    gap: 10px;
    justify-items: center;
}

input {
    width: min(100%, 360px);
    padding: 12px 15px;
    border: 1px solid #fff;
    border-radius: 4px;
    outline: none;
    color: #fff;
    background: transparent;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

input:focus {
    border-color: var(--accent);
}

footer {
    background: var(--bg-dark);
    color: #c7b299;
    text-align: center;
    padding: 15px;
    font-size: 13px;
}

@media (max-width: 992px) {
    .top-bar-inner {
        min-height: 72px;
    }

    .top-copy {
        font-size: 0.68rem;
    }

    .top-actions {
        gap: 10px;
    }

    .logo-float {
        top: 72px;
    }

    .logo-float img {
        width: min(280px, 62vw);
    }

    .logo-section {
        padding-top: 58px;
        padding-bottom: 12px;
    }

    .navbar ul {
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .top-bar-inner {
        width: 94%;
        min-height: 64px;
    }

    .top-copy {
        display: none;
    }

    .top-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .logo-float {
        top: 64px;
    }

    .logo-float img {
        width: min(230px, 70vw);
    }

    .logo-section {
        padding-top: 24px;
        padding-bottom: 8px;
    }

    .navbar ul {
        gap: 12px;
        padding: 12px 10px;
    }

    .hero-content {
        width: 92%;
        padding: 14px;
    }

    .btn {
        width: 100%;
        max-width: 240px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 210px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}


