/* --- Variables & Reset --- */
:root {
    --color-charcoal: #1a1a1a;
    --color-charcoal-light: #2c2c2c;
    --color-coral: #e07a5f;
    --color-coral-dark: #c46046;
    --color-cream: #f4f1ea;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #888888;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

.section-tag {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-coral);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.section-tag.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-charcoal);
}

.section-title.light {
    color: var(--color-white);
}

.lead {
    font-size: 1.25rem;
    color: var(--color-charcoal-light);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 700;
}

.btn-primary {
    background-color: var(--color-coral);
    color: var(--color-white);
    border: 2px solid var(--color-coral);
}

.btn-primary:hover {
    background-color: var(--color-coral-dark);
    border-color: var(--color-coral-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-charcoal);
}

.full-width {
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    padding: var(--spacing-sm) 0;
    transition: padding 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-coral);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 4px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    color: var(--color-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--color-coral);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-charcoal);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-menu-overlay ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.mobile-link {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.mobile-link:hover {
    color: var(--color-coral);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.8));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: var(--spacing-md);
}

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* --- About Section --- */
.section {
    padding: var(--spacing-xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image img {
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-list {
    margin-top: var(--spacing-md);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.feature-list .icon {
    font-size: 1.5rem;
}

/* --- Brews Section --- */
.dark-bg {
    background-color: var(--color-charcoal);
}

.section-header {
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.brews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.brew-card {
    background-color: var(--color-charcoal-light);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.brew-card:hover {
    transform: translateY(-10px);
}

.brew-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.brew-info {
    padding: var(--spacing-md);
}

.brew-info h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.brew-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* --- Menu Section --- */
.menu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.menu-highlights {
    margin: var(--spacing-md) 0;
}

.highlight-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.highlight-item strong {
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.highlight-item span {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.menu-image-stack {
    position: relative;
    height: 600px;
}

.stack-img {
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stack-img.img-1 {
    top: 0;
    right: 0;
    width: 60%;
    height: 70%;
}

.stack-img.img-2 {
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    border: 8px solid var(--color-cream);
}

.stack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Quote Section --- */
.quote-section {
    background-color: var(--color-coral);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--color-white);
}

.quote-section blockquote {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto var(--spacing-sm);
    line-height: 1.4;
}

.quote-section cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.info-item {
    margin-bottom: var(--spacing-md);
}

.info-item h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-charcoal);
}

.info-item p {
    color: var(--color-text-light);
}

.info-item a {
    color: var(--color-coral);
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-family: var(--font-serif);
    margin-bottom: var(--spacing-md);
    color: var(--color-charcoal);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-coral);
}

.form-status {
    margin-top: var(--spacing-sm);
    text-align: center;
    font-weight: 700;
}

.form-status.success {
    color: #28a745;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: var(--spacing-lg) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-coral);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .about-grid,
    .menu-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .brews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-image-stack {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .brews-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .quote-section blockquote {
        font-size: 1.5rem;
    }
}
