/* Base Styles */
:root {
    --primary-color: #6f4e37; /* Coffee brown */
    --secondary-color: #c0a080; /* Light mocha */
    --accent-color: #d4a76a; /* Caramel */
    --text-color: #3c2f2f; /* Dark brown */
    --light-text: #8c7b75; /* Muted brown */
    --bg-color: #fff;
    --light-bg: #f8f5f2; /* Cream */
    --dark-bg: #3c2f2f; /* Dark brown */
    --header-font: 'Playfair Display', serif;
    --body-font: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 6px;
    --box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style-type: none;
}

img, svg {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.underline {
    height: 3px;
    width: 80px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    color: white;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="600" viewBox="0 0 1200 600"><rect width="1200" height="600" fill="%236f4e37"/><circle cx="200" cy="150" r="30" fill="%23fff" opacity="0.2" /><circle cx="400" cy="300" r="25" fill="%23fff" opacity="0.15" /><circle cx="700" cy="200" r="40" fill="%23fff" opacity="0.1" /><circle cx="1000" cy="350" r="35" fill="%23fff" opacity="0.2" /><circle cx="300" cy="450" r="20" fill="%23fff" opacity="0.15" /><circle cx="800" cy="500" r="30" fill="%23fff" opacity="0.1" /></svg>');
    color: white;
    text-align: center;
    padding: 120px 0 100px;
    background-size: cover;
}

.hero h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

/* Coffee Section */
.coffee {
    padding: 80px 0;
}

.coffee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.coffee-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

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

.coffee-icon {
    margin-bottom: 20px;
}

.coffee-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.menu-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.menu-category {
    flex: 1;
    min-width: 300px;
}

.menu-category h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--light-text);
}

.menu-item-name {
    font-weight: 600;
    color: var(--text-color);
}

.menu-item-price {
    font-weight: bold;
    color: var(--primary-color);
}

/* Entertainment Section */
.entertainment {
    padding: 80px 0;
}

.entertainment-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.entertainment-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.entertainment-card h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.entertainment-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.entertainment-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--body-font);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-logo img {
    margin-bottom: 15px;
}

.footer-links, .footer-entertainment {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-entertainment h3 {
    color: white;
    margin-bottom: 15px;
}

.footer-links ul li, .footer-entertainment ul li {
    margin-bottom: 10px;
}

.footer-links ul li a, .footer-entertainment ul li a {
    color: #ddd;
}

.footer-links ul li a:hover, .footer-entertainment ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: var(--box-shadow);
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .about-content {
        flex-direction: column;
    }

    .hero h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 0 70px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}
