/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--warm-white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 200px,
            rgba(26, 26, 26, 0.02) 200px,
            rgba(26, 26, 26, 0.02) 201px
        );
    pointer-events: none;
    z-index: 1;
}

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

/* Color Variables - Coffee Theme */
:root {
    --coffee-brown: #8B4513;  /* Rich coffee brown */
    --coffee-light: #A0522D;  /* Light coffee */
    --coffee-dark: #654321;   /* Dark coffee */
    --cream-accent: #D4A574;  /* Creamy coffee accent */
    --cream-light: #E5D4B1;   /* Light cream */
    --cream-dark: #C19A5B;    /* Dark cream */
    --brick-red: #B8604D;  /* Actual brick wall color */
    --brick-texture: #A15842;
    --charcoal: #1A1A1A;  /* Black columns and accents */
    --steel-gray: #424242;
    --warm-white: #FAFAF8;  /* Warm white walls */
    --cafe-latte: #D4A574;  /* Coffee tones */
    --espresso: #3C2415;
    --light-wood: #E5D4B1;  /* Floor tones */
    --concrete: #E8E8E6;  /* Industrial concrete */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

/* Authentic Brick Texture Background */
.brick-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--brick-red);
    background-image: 
        repeating-linear-gradient(
            0deg,
            var(--brick-red),
            var(--brick-red) 20px,
            var(--brick-texture) 20px,
            var(--brick-texture) 21px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(0,0,0,0.03) 50px,
            rgba(0,0,0,0.03) 100px,
            transparent 100px,
            transparent 150px,
            rgba(0,0,0,0.03) 150px,
            rgba(0,0,0,0.03) 200px
        );
    opacity: 0.15;
    mix-blend-mode: multiply;
}


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--coffee-brown);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    background: rgba(248, 246, 240, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--coffee-brown);
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.nav-link {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--coffee-brown);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    background: var(--coffee-brown);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--charcoal);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(248, 246, 240, 0.9) 0%,
        rgba(248, 246, 240, 0.7) 50%,
        rgba(127, 176, 105, 0.1) 100%
    );
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--coffee-brown);
    color: var(--warm-white);
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-badge::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cream-accent);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 0.9;
}

.title-line-1 {
    display: block;
    color: var(--charcoal);
}

.title-line-2 {
    display: block;
    color: var(--coffee-brown);
    text-shadow: none;
}

.hero-subtitle {
    margin-bottom: 2rem;
}

.subtitle-text {
    display: block;
    font-size: 1.3rem;
    color: var(--steel-gray);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.subtitle-accent {
    display: block;
    font-size: 1.5rem;
    color: var(--veca-magenta);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--steel-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--coffee-brown);
    color: var(--warm-white);
    border: 2px solid var(--coffee-brown);
    font-weight: 700;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--coffee-dark);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--warm-white);
    border-color: var(--coffee-brown);
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--coffee-brown);
    pointer-events: none;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--warm-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--coffee-brown);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--cream-accent);
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--coffee-brown);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--steel-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--steel-gray);
    z-index: 2;
}

.scroll-arrow {
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--warm-white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: rgba(139, 69, 19, 0.05);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-accent {
    color: var(--coffee-brown);
}

.accent-text {
    color: var(--coffee-brown);
}

.about-description {
    font-size: 1.1rem;
    color: var(--steel-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-feature {
    padding: 1.5rem;
    background: var(--concrete);
    border-left: 4px solid var(--coffee-brown);
    transition: transform 0.3s ease;
    position: relative;
}

.about-feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cream-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-feature:hover {
    transform: translateX(10px);
    border-left-color: var(--cream-accent);
}

.about-feature:hover::after {
    transform: scaleX(1);
}

.about-feature h3 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.about-feature p {
    color: var(--steel-gray);
    line-height: 1.6;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.about-img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Menu Preview Section */
.menu-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--concrete) 100%);
    position: relative;
}

.menu-preview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23F8F6F0"/><circle cx="50" cy="50" r="2" fill="%237FB069" opacity="0.1"/></svg>');
}

.menu-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-description {
    font-size: 1.1rem;
    color: var(--steel-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.menu-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--coffee-brown);
    width: 30px;
    text-align: center;
}

.preview-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--warm-white);
    border-left: 4px solid var(--coffee-brown);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--cream-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.preview-card:hover {
    transform: translateX(10px);
    border-left-color: var(--cream-accent);
}

.preview-card:hover::before {
    transform: scaleY(1);
}

.preview-card h3 {
    font-size: 1.2rem;
    color: var(--charcoal);
}

.preview-card .price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--veca-magenta);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--warm-white);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: var(--veca-mint);
    opacity: 0.05;
    border-radius: 50%;
    transform: translateY(-50%);
}

.gallery::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: var(--veca-magenta);
    opacity: 0.05;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--concrete) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 3%;
    width: 120px;
    height: 120px;
    background: var(--coffee-brown);
    opacity: 0.03;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.testimonial-card {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--coffee-brown);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:nth-child(even) {
    border-left-color: var(--cream-accent);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--coffee-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card:nth-child(even) .customer-avatar {
    background: var(--cream-accent);
    color: var(--charcoal);
}

.customer-details h4 {
    color: var(--charcoal);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.customer-type {
    color: var(--steel-gray);
    font-size: 0.85rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--steel-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-date {
    color: var(--steel-gray);
    font-size: 0.85rem;
    opacity: 0.8;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--light-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: grayscale(30%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--coffee-brown);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 0.2;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--concrete) 0%, var(--warm-white) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: var(--coffee-brown);
    opacity: 0.05;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--warm-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-left: 3px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-left-color: var(--coffee-brown);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--coffee-brown);
    margin-top: 0.2rem;
}

.contact-item h3 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--steel-gray);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--coffee-brown);
    color: var(--warm-white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--veca-magenta);
    transition: left 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    left: 0;
}

.contact-map {
    background: var(--warm-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid var(--coffee-brown);
}

/* Ensure the map item does not stretch taller than its content in the grid */
.contact-map {
    align-self: start;
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.interactive-map {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 520px;
    min-height: 320px;
    border: none;
    outline: none;
}

.interactive-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--warm-white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-brand h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream-accent);
    margin: 0;
    letter-spacing: 1px;
}

.footer-desc {
    margin-top: 0.4rem;
    color: var(--concrete);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--warm-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-links a {
    color: var(--concrete);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--cream-accent);
}

.footer-contact-list {
    list-style: none;
    margin: 0 0 0.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-contact-list li {
    color: var(--concrete);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-list i {
    color: var(--cream-accent);
    width: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--concrete);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--cream-accent);
    width: 16px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--cream-accent);
    color: var(--charcoal);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--cream-dark);
    transform: translateY(-2px);
}

.footer-social i {
    font-size: 1.1rem;
}


.footer-link {
    color: var(--coffee-brown);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    color: var(--concrete);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.footer-menu li::before {
    content: '•';
    color: var(--coffee-brown);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--concrete);
    font-size: 0.85rem;
}

.footer-bottom p {
    color: var(--concrete);
    font-size: 0.9rem;
}


/* Floating Elements */
.footer-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-coffee {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--cream-accent);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.floating-3 {
    bottom: 30%;
    left: 70%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

/* Menu Page Specific Styles */
.menu-page {
    background: var(--cream);
}

.menu-header-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
}

.menu-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(248, 246, 240, 0.95) 0%,
        rgba(248, 246, 240, 0.8) 100%
    );
}

.menu-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.menu-badge {
    display: inline-block;
    background: var(--veca-magenta);
    color: var(--warm-white);
    padding: 0.7rem 2rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    position: relative;
    transform: rotate(-2deg);
}

.menu-badge::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--veca-mint);
}

.menu-main-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 0.9;
}

.menu-main-title .title-line {
    display: block;
}

.menu-main-title .accent {
    background: linear-gradient(135deg, var(--veca-mint) 0%, var(--veca-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.menu-content {
    padding: 60px 0;
}

.menu-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0 2rem;
    position: sticky;
    top: 80px;
    z-index: 5;
    background: linear-gradient(180deg, rgba(250,250,248,0.9), rgba(250,250,248,0.6) 60%, transparent);
    backdrop-filter: blur(6px);
}

.toolbar-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.search-box {
    flex: 1 1 280px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    border: 2px solid var(--concrete);
    padding: 0.6rem 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box i {
    color: var(--coffee-brown);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: var(--charcoal);
}

.search-box:focus-within {
    border-color: var(--coffee-brown);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.chip {
    border: 1px solid var(--concrete);
    background: var(--warm-white);
    color: var(--charcoal);
    padding: 0.5rem 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip:hover {
    border-color: var(--coffee-brown);
}

.chip.active {
    background: var(--coffee-brown);
    color: var(--warm-white);
    border-color: var(--coffee-brown);
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.menu-category {
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--mint-green), var(--magenta));
}

.category-header {
    padding: 3rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-gray), var(--cream));
    position: relative;
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--veca-mint), var(--veca-mint-light));
    color: var(--charcoal);
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(110, 202, 166, 0.3);
    animation: float 4s ease-in-out infinite;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.category-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-style: italic;
}

.menu-grid {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--warm-white);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.menu-item:hover {
    background: #fff;
    border-left-color: var(--mint-green);
    transform: translateX(5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.menu-item.featured {
    border-left-color: var(--veca-mint);
    background: rgba(110, 202, 166, 0.05);
}

.menu-item.featured::after {
    content: '★';
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--magenta);
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.menu-item.special {
    border-left-color: var(--veca-magenta);
    background: rgba(233, 30, 99, 0.05);
}

.menu-item.price-range .item-price {
    background: linear-gradient(90deg, var(--veca-mint), var(--veca-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.item-content {
    flex: 1;
}

.item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popular-badge,
.special-badge {
    background: var(--veca-magenta);
    color: var(--warm-white);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.special-badge {
    background: var(--veca-mint);
    color: var(--charcoal);
}

.item-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.item-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--veca-magenta);
    margin-left: 1rem;
    white-space: nowrap;
}

.menu-footer {
    margin-top: 4rem;
    padding: 3rem 0;
    background: var(--white);
    border-top: 4px solid var(--mint-green);
}

.menu-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.qr-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.qr-code {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--mint-green), var(--magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.qr-text h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.qr-text p {
    color: var(--medium-gray);
}

.social-section h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--medium-gray);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--mint-green);
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(248, 246, 240, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        z-index: 999;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-contact,
    .footer-col,
    .footer-links,
    .footer-contact-list {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-badges {
        justify-content: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 15px;
    }

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

    .menu-main-title {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .about-content,
    .menu-preview-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .menu-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .qr-section {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .category-header {
        padding: 2rem 1rem 1.5rem;
    }

    .category-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-item {
        min-width: 80px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-main-image {
        height: 300px;
    }

    .contact-details {
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .preview-cards {
        gap: 0.8rem;
    }

    .menu-highlights {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .menu-main-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .item-price {
        margin-left: 0;
        font-size: 1.5rem;
    }

    .hero-main-image {
        height: 300px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Coffee Cup Animation */
@keyframes steam {
    0% {
        opacity: 0;
        transform: translateY(0) scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scaleX(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scaleX(0.8);
    }
}

.coffee-steam {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(to top, transparent, rgba(110, 202, 166, 0.3));
    border-radius: 50%;
    animation: steam 3s infinite;
}

/* Floating Elements Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Loading Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
}