:root {
    --bg-color: #f9f8f4;
    --text-color: #2c2a26;
    --accent-color: #8c7b6c;
    --secondary-text: #6e6a64;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --spacing-unit: 1rem;
    --transition-speed: 0.6s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-speed) ease-out, transform var(--transition-speed) ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    mix-blend-mode: difference;
    color: #fff;
    /* Inverted for blend mode */
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-links a {
    margin-left: 3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Staff Login button — fixed top-right, always visible in all browsers */
.nav-login-btn {
    position: fixed;
    top: 1.4rem;
    right: 2.5rem;
    z-index: 9999;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f9f8f4;
    border: 1px solid #f9f8f4;
    padding: 0.5rem 1.3rem;
    border-radius: 2px;
    background-color: #1e1c19;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
}

.nav-login-btn:hover {
    background-color: #c9a96e;
    border-color: #c9a96e;
    color: #1e1c19;
}

@media (max-width: 768px) {
    .nav-login-btn {
        top: 0.9rem;
        right: 1rem;
        font-size: 0.6rem;
        padding: 0.4rem 0.85rem;
        letter-spacing: 1.5px;
    }
}



/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transform: scale(1.1);
    transition: transform 10s ease;
}

.hero:hover .hero-img {
    transform: scale(1);
}

.hero-content {
    color: #fff;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    font-style: italic;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    font-weight: 300;
}

/* Generic Section Styles */
.section {
    padding: 8rem 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}


/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.product-card {
    cursor: pointer;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    height: 400px;
    /* Fixed height for consistency */
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.view-btn {
    background: #fff;
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .view-btn {
    transform: translateY(0);
}

.product-info {
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}




/* Process Section */
.process-section {
    background-color: #f4f4f4;
    /* Slightly different bg for contrast */
}

.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    text-align: left;
}

.process-step {
    flex: 1;
    padding: 2rem;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--secondary-text);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .process-grid {
        flex-direction: column;
    }

    .process-step {
        border-top: none;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
    }
}


/* Contact Section */
.contact-section {
    text-align: center;
    background-color: #fff;
}

.contact-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-text);
    font-weight: 300;
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: #fff;
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.social-links a {
    color: #fff;
    margin-left: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.5;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

/* Responsiveness */
@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem 2rem;
        background: var(--text-color);
        /* Improve visibility on mobile */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--text-color);
        padding: 2rem 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0;
        margin-bottom: 2rem;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: block;
        color: #fff;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: #fff;
        margin: 6px 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}