:root {
    --color-bg: #FFFFFF;
    --color-text-main: #2C2C2C;
    --color-text-secondary: #585858;
    --color-accent: #8C6A5D;
    /* Coffee tone */
    --color-accent-light: #F4F1EE;
    /* Creamy background */
    --color-primary-btn: #2C2C2C;
    --color-white: #FFFFFF;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 24px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: box-shadow var(--transition-fast);
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-fast);
}

nav a:hover {
    color: var(--color-accent);
}

/* Hero Section */
#hero {
    min-height: 90vh;
    /* Almost full viewport */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 80px;
    /* Offset for fixed header */
    padding-left: 5%;
    /* Artistic offset */
    padding-right: 0;
    background-color: var(--color-accent-light);
    overflow: hidden;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 48px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.2s;
}

.eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--color-accent);
    display: block;
    margin-bottom: 16px;
}

#hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text-main);
}

#hero p {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 480px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.primary-btn {
    background-color: var(--color-primary-btn);
    color: var(--color-white);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-image-container {
    flex: 1;
    height: 90vh;
    width: 60vw;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 0.5s;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
#about {
    padding: 120px 0;
    background-color: var(--color-white);
}

.about-container {
    max-width: 800px;
    text-align: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 32px;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

/* Beans Section */
#beans {
    padding: 120px 0;
    background-color: var(--color-accent-light);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.beans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.bean-card {
    background: var(--color-white);
    border-radius: 1px;
    /* Slightly sharp modern look */
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    cursor: default;
}

.bean-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card-image {
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bean-card:hover .card-image img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.card-content {
    padding: 32px;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-bottom: 16px;
    color: var(--color-text-secondary);
}

.notes {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Location/Footer */
#location {
    padding: 100px 0;
    text-align: center;
    background-color: var(--color-accent);
    color: var(--color-white);
}

#location h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.footer-content {
    padding: 32px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    border-top: 1px solid #eee;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    #hero {
        flex-direction: column-reverse;
        padding-left: 0;
        min-height: auto;
        padding-top: 100px;
    }

    .hero-content {
        padding: 48px 24px;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-container {
        width: 100%;
        height: 400px;
        clip-path: none;
    }

    #hero h1 {
        font-size: 3rem;
    }
}

/* Mobile Navigation */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
        padding: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    /* Hamburger Animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* General Mobile Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    #about,
    #beans {
        padding: 60px 0;
    }

    .about-text h2,
    .section-header h2 {
        font-size: 2.2rem;
    }

    .logo {
        font-size: 24px;
    }

    #location {
        padding: 60px 0;
    }

    #location h2 {
        font-size: 2rem;
    }
}