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

:root {
    --primary-brown: #6B4E31;
    --accent-orange: #C17A4A;
    --light-beige: #F9F0E0;
    --warm-tan: #E8D5B7;
    --dark-text: #3C2A1F;
}

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

body {
    font-family: 'Roboto', system-ui, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--light-beige);
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 6%;
    background-color: var(--primary-brown);
    color: #F9F0E0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(107, 78, 49, 0.2);
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #F9F0E0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--warm-tan);
    text-decoration: underline;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #F9F0E0;
    margin: 5px 0;
    transition: 0.3s;
}

.order-btn {
    background-color: var(--accent-orange);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background-color: #d98b55;
    transform: scale(1.05);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: linear-gradient(120deg, #F9F0E0 50%, #E8D5B7 50%);
}

.hero-content {
    padding: 8% 10% 8% 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    color: var(--primary-brown);
    margin-bottom: 1.2rem;
}

.hero-content p {
    font-size: 1.35rem;
    max-width: 420px;
    margin-bottom: 2.5rem;
    color: #5c4033;
}

.cta-button {
    background-color: var(--accent-orange);
    color: white;
    padding: 16px 36px;
    font-size: 1.25rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(193, 122, 74, 0.35);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(193, 122, 74, 0.4);
}

.hero-image {
    background-color: #E8C9A0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-img {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 40% 30%, #f8d9b0, #c17a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14rem;
    box-shadow: 20px 25px 40px rgba(59, 40, 29, 0.25);
    border: 25px solid #f9f0e0;
    z-index: 2;
}

.info-section {
    padding: 100px 6%;
    background: white;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
}

.coffee-content {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.coffee-content h2 {
    color: var(--primary-brown);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 2.1rem;
    position: relative;
}

.coffee-content h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    margin-top: 10px;
}

.coffee-content ul {
    list-style: none;
    padding: 10px 0 10px 20px;
}

.coffee-content li {
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px dotted #d9c2a0;
}

.coffee-content li:before {
    content: '☕';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 1.4rem;
}

.menu-section {
    padding: 100px 6%;
    background: var(--warm-tan);
}

.menu-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-brown);
}

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

.menu-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(107, 78, 49, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(107, 78, 49, 0.2);
}

.card-img {
    height: 200px;
    background-color: #e8c9a0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
}

.menu-card h3 {
    font-size: 1.5rem;
    padding: 20px 25px 5px;
    color: var(--primary-brown);
}

.menu-card p {
    padding: 0 25px;
    color: #66513f;
    margin-bottom: 10px;
}

.price {
    display: block;
    padding: 0 25px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.add-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-brown);
    color: #F9F0E0;
    border: none;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.add-btn:hover {
    background: #8a6642;
}

.cta-section {
    padding: 90px 6%;
    background: linear-gradient(90deg, var(--primary-brown), #8a6642);
    color: #f9f0e0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 35px;
    opacity: 0.95;
}

.cta-section .large {
    font-size: 1.4rem;
    padding: 20px 50px;
}

.contacts-section {
    padding: 100px 6%;
    background: white;
}

.contacts-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.6rem;
    color: var(--primary-brown);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 35px;
}

.contact-info, .contact-form, .map-placeholder {
    background: var(--light-beige);
    padding: 40px 30px;
    border-radius: 20px;
}

.contact-info h3, .contact-form h3 {
    color: var(--accent-orange);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-info p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 18px;
    border: 2px solid #d9c2a0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.3s;
}

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

.contact-form button {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.4;
    color: #6b4e31;
    font-weight: 500;
    background: linear-gradient(135deg, #f0d9b5, #e0c49a);
}

.placeholder-map {
    padding: 60px 30px;
}

footer {
    background-color: #3C2A1F;
    color: #d9c2a0;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.95rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 42, 31, 0.75);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #F9F0E0;
    padding: 50px 40px;
    border-radius: 24px;
    max-width: 420px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2.2rem;
    cursor: pointer;
    color: #8a6642;
}

.modal h2 {
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.close-modal {
    margin-top: 25px;
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: 15% 8% 12%;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-brown);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 60px;
        transition: 0.4s ease;
        gap: 30px;
        font-size: 1.4rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}