body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f8f6f2;
    color: #3e2723;
}

.main-navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(106,17,203,0.07);
    position: sticky;
    top: 0;
    z-index: 100;
}
.main-navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1.5rem;
}
.brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #6a11cb;
    font-weight: bold;
    letter-spacing: 2px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    text-decoration: none;
    color: #3e2723;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
    border-radius: 6px;
    padding: 0.4rem 1rem;
}
.nav-links li a.btn-nav,
.nav-links li a:hover,
.nav-links li a.active {
    background: #b6895b;
    color: #fff;
    box-shadow: 0 2px 8px rgba(182,137,91,0.08);
    position: relative;
}
.nav-links li a.btn-nav::after,
.nav-links li a:hover::after,
.nav-links li a.active::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 70%;
    height: 3px;
    background: #b6895b;
    border-radius: 2px;
}

/* Hamburger menu */
.nav-toggle { display: none; }
.nav-toggle-label {
    display: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
}
.nav-toggle-label span,
.nav-toggle-label span:before,
.nav-toggle-label span:after {
    display: block;
    background: #6a11cb;
    height: 4px;
    width: 100%;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s;
}
.nav-toggle-label span {
    position: relative;
}
.nav-toggle-label span:before {
    content: '';
    position: absolute;
    top: -10px;
}
.nav-toggle-label span:after {
    content: '';
    position: absolute;
    top: 10px;
}

.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f6f2;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    opacity: 0.18;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1rem 2rem 1rem;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #6a11cb;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}
.hero-content p {
    font-size: 1.3rem;
    color: #3e2723;
    margin-bottom: 1.5rem;
}
.cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #6a11cb 0%, #f7971e 100%);
    color: #fff;
    font-weight: bold;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 18px;
    box-shadow: 0 2px 8px rgba(106,17,203,0.08);
    transition: background 0.2s, transform 0.2s;
}
.cta-btn:hover {
    background: linear-gradient(90deg, #f7971e 0%, #6a11cb 100%);
    transform: scale(1.05);
}

.catalog-section {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 0 20px;
}
.catalog-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 32px;
    color: #6a11cb;
}
.coffee-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.coffee-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 30px 0 rgba(80,60,40,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    border: 1px solid rgba(182, 137, 91, 0.1);
    text-align: left;
}
.coffee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px 0 rgba(80,60,40,0.2);
    border-color: rgba(182, 137, 91, 0.3);
}
.coffee-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}
.coffee-card:hover img {
    transform: scale(1.1);
}
.coffee-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #4B2E19;
    margin: 0 0 0.8rem 0;
    font-weight: 700;
    line-height: 1.3;
    padding: 0 1.5rem;
}
.coffee-card p {
    font-size: 0.95rem;
    margin: 0 0 1rem 0;
    color: #7c5c3e;
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 1.5rem;
}
.price {
    font-weight: 700;
    color: #b6895b;
    font-size: 1.2rem;
    margin-top: auto;
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(182, 137, 91, 0.2);
    background: none;
    border-radius: 0;
}

.about-section {
    background: #fff8ee;
    padding: 60px 0 40px 0;
    margin-top: 60px;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(106,17,203,0.04);
}
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #6a11cb;
    margin-bottom: 1rem;
}
.about-content p {
    font-size: 1.1rem;
    color: #3e2723;
    line-height: 1.7;
}

.member-section {
    background: #f8f6f2;
    padding: 60px 0 40px 0;
    text-align: center;
}
.member-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #6a11cb;
    margin-bottom: 1.5rem;
}
.member-benefit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
}
.member-benefit > div {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(106,17,203,0.07);
    padding: 24px 32px;
    max-width: 320px;
    min-width: 220px;
    flex-grow: 1;
}

footer {
    background: #fff;
    text-align: center;
    padding: 32px 0 16px 0;
    color: #888;
    font-size: 1rem;
    margin-top: 40px;
    border-top: 1px solid #eee;
}
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #6a11cb;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.footer-info {
    margin-bottom: 0.5rem;
    color: #3e2723;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .main-navbar .container {
        flex-direction: column;
        gap: 0.7rem;
    }
    .member-benefit {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .main-navbar .container {
        flex-direction: row;
        gap: 0;
    }
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 200px;
        box-shadow: 0 2px 12px rgba(106,17,203,0.07);
        display: none;
    }
    .nav-links li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    .nav-toggle:checked + .nav-toggle-label + .nav-links {
        display: flex;
    }
    .nav-toggle-label {
        display: block;
        position: relative;
        z-index: 101;
    }
}
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .catalog-section h2, .about-content h2, .member-section h2 {
        font-size: 1.3rem;
    }
    .coffee-card img {
        height: 120px;
    }
    .main-navbar .container {
        padding: 0.7rem 0.5rem;
    }
} 