/* ==================== Reset & Variables ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --dark-brown: #3E2723;
    --light-brown: #A0826D;
    --cream: #F5DEB3;
    --dark-bg: #1a1a1a;
    --text-light: #f4f4f4;
    --text-dark: #2c2c2c;
    --accent-gold: #D4AF37;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: var(--text-light);
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(62, 39, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-family: 'Rye', cursive;
    color: var(--accent-gold);
    font-size: 2rem;
    letter-spacing: 3px;
    margin: 0;
}

.tagline {
    color: var(--cream);
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 2px;
    margin-top: -5px;
}

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

.nav-links a {
    color: var(--text-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(--accent-gold);
    transition: width 0.3s ease;
}

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

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

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

.burger div {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 5px;
    transition: all 0.3s ease;
}

/* ==================== Hero Section ==================== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%238B4513" width="1200" height="800"/><path fill="%23654321" d="M0,400 Q300,350 600,400 T1200,400 V800 H0 Z"/><circle fill="%23D4AF37" cx="900" cy="150" r="80" opacity="0.6"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 4px
    );
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Rye', cursive;
    font-size: 5rem;
    color: var(--accent-gold);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    letter-spacing: 8px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--cream);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-gold);
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--accent-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--cream);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--cream);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { top: 5px; opacity: 1; }
    50% { top: 15px; opacity: 0.5; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==================== Sections ==================== */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-family: 'Rye', cursive;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.divider {
    width: 100px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0 auto;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    transform: translateY(-50%) rotate(45deg);
}

.divider::before {
    left: -20px;
}

.divider::after {
    right: -20px;
}

/* ==================== About Section ==================== */
.about-section {
    background: #1a1410;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-align: justify;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 5px solid var(--dark-brown);
}

/* ==================== Menu Section ==================== */
.menu-section {
    background: #0f0f0f;
}

.menu-categories {
    display: grid;
    gap: 50px;
}

.menu-category {
    background: #1a1410;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-left: 5px solid var(--accent-gold);
}

.menu-category h3 {
    font-family: 'Rye', cursive;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 30px;
    text-align: center;
}

.menu-items {
    display: grid;
    gap: 25px;
}

.menu-item {
    background: #2a2420;
    padding: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.menu-item:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-item h4 {
    font-size: 1.3rem;
    color: var(--text-light);
}

.price {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: bold;
}

.menu-item p {
    color: #aaa;
    font-style: italic;
}

/* ==================== Contact Section ==================== */
.contact-section {
    background: var(--dark-brown);
    color: var(--text-light);
}

.contact-section .section-header h2 {
    color: var(--accent-gold);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    color: var(--text-light);
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.15);
}

.contact-form button {
    width: 100%;
    cursor: pointer;
    border: none;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-gold);
}

.footer-logo h3 {
    font-family: 'Rye', cursive;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-gold);
}

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

/* ==================== Responsive ==================== */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-brown);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }

    .menu-category {
        padding: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ==================== How To Order Section ==================== */
.how-to-order-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.3), rgba(0, 0, 0, 0.3));
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: rgba(62, 39, 35, 0.4);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: all 0.5s ease;
    transform: rotate(45deg);
    pointer-events: none;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--dark-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Rye', cursive;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.step-icon {
    font-size: 3.5rem;
    margin: 1rem 0;
    display: block;
}

.step-card h3 {
    font-family: 'Rye', cursive;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin: 1rem 0;
    letter-spacing: 2px;
}

.step-card p {
    color: var(--cream);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-step {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    border: 2px solid transparent;
}

.btn-step:hover {
    background: var(--accent-gold);
    color: var(--dark-brown);
    border-color: var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Info Banner */
.info-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(139, 69, 19, 0.2);
    border-left: 4px solid var(--accent-gold);
    border-radius: 10px;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1rem;
}

.info-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.info-item h4 {
    font-family: 'Rye', cursive;
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--cream);
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Design for How To Order */
@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .info-banner {
        flex-direction: column;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .step-card h3 {
        font-size: 1.2rem;
    }
}
