/* Modern Coffee Shop Design - Completely Different from prompted.sbs */

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

:root {
    --primary: #6F4E37;      /* Coffee brown */
    --secondary: #D4A574;    /* Latte cream */
    --accent: #C85A54;       /* Rustic red */
    --dark: #2C1810;         /* Dark roast */
    --light: #F5F1ED;        /* Cream */
    --text: #3E2723;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--light);
}

/* Demo Banner */
.demo-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Header & Navigation */
header {
    background: var(--dark);
    position: sticky;
    top: 48px;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--light);
    padding: 8rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(200, 90, 84, 0.4);
}

.btn-primary:hover {
    background: #d66961;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 90, 84, 0.6);
}

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

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
}

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

/* Section Headings */
h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
    font-weight: normal;
    letter-spacing: 2px;
    position: relative;
}

h2::after {
    content: '☕';
    display: block;
    margin: 1rem auto 0;
    font-size: 2rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

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

.about-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--light);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.about-card p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
}

/* Menu Section */
.menu {
    padding: 6rem 0;
    background: var(--light);
}

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

.menu-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.menu-item h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--secondary);
    padding-bottom: 0.5rem;
}

.menu-item ul {
    list-style: none;
}

.menu-item li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed #ddd;
    font-size: 1.1rem;
}

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

.menu-item li span:last-child {
    color: var(--accent);
    font-weight: bold;
}

/* Locations Section */
.locations {
    padding: 6rem 0;
    background: white;
}

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

.location-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--light);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: scale(1.05);
}

.location-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.location-card p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 2px solid var(--secondary);
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.contact-form button {
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 3rem 2rem;
}

footer p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

footer p:last-child {
    color: var(--secondary);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-grid,
    .menu-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
}
