/* Wheat Bunny Styles - Based on logo color theme */
:root {
    /* Logo-inspired color palette */
    --primary-color: #a88a8a;      /* Muted mauve/dusty rose from logo */
    --primary-dark: #8b6f6f;       /* Darker shade for hover states */
    --primary-light: #c4adad;      /* Lighter shade for accents */
    --bg-cream: #f5f0eb;           /* Warm cream background */
    --bg-light: #faf8f5;           /* Light cream for cards */
    --text-dark: #3d3d3d;          /* Dark text */
    --text-medium: #666666;        /* Medium text */
    --text-light: #999999;         /* Light text */
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.08);
    
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
}

/* Work in Progress Banner */
.wip-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #a88a8a 100%);
    color: var(--white);
    text-align: center;
    padding: 24px 20px;
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    background-color: var(--bg-cream);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px;
    max-width: 600px;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 50%;
    box-shadow: 0 4px 20px var(--shadow);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 138, 138, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 138, 138, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-image img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.menu h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.menu-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 0.95rem;
}

.menu-intro::after {
    content: " — Currently not accepting orders";
    color: var(--primary-color);
    font-weight: 500;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.menu-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.menu-image {
    height: 250px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.05);
}

.menu-info {
    padding: 30px;
}

.menu-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.description {
    color: var(--text-medium);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.price-options {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.size {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.instagram-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.instagram-link svg {
    width: 24px;
    height: 24px;
}

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

/* Footer */
footer {
    padding: 60px 0;
    background-color: var(--bg-cream);
    text-align: center;
}

.footer-logo {
    width: 80px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
    opacity: 0.8;
}

footer p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-content {
        padding: 40px;
        text-align: center;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        padding: 0 40px 40px;
    }
    
    .hero-image img {
        max-height: 50vh;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 30px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about, .menu, .contact {
        padding: 60px 0;
    }
    
    .about h2, .menu h2, .contact h2 {
        font-size: 2rem;
    }
}