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

:root {
    /* Cafe Color Palette */
    --cream-light: #faf7f2;
    --cream: #f5f1eb;
    --cream-dark: #ede6db;
    --espresso: #3c2415;
    --espresso-light: #5d3a24;
    --caramel: #d4a574;
    --caramel-light: #e6c19a;
    --caramel-dark: #b8935f;
    --coffee-brown: #6f4e37;
    --latte: #c9a876;
    --warm-beige: #e8dcc6;
    --soft-gold: #f4e4c1;
    --text-primary: #3c2415;
    --text-secondary: #6f4e37;
    --text-muted: #8b7355;
    --accent-orange: #e07a5f;
    --accent-green: #81b29a;
    --shadow-light: rgba(60, 36, 21, 0.1);
    --shadow-medium: rgba(60, 36, 21, 0.15);
    --shadow-strong: rgba(60, 36, 21, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream-light);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--warm-beige);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px var(--shadow-light);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(250, 247, 242, 0.98);
    box-shadow: 0 4px 30px var(--shadow-medium);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

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

.logo-svg {
    width: 40px;   /* adjust to fit your design */
    height: auto;
    display: block;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--espresso);
    letter-spacing: -0.5px;
}

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

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

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

.nav-link:hover {
    color: var(--espresso);
}

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

.btn-reserve {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--caramel) 0%, var(--caramel-dark) 100%);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-light);
    font-size: 0.95rem;
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--shadow-medium);
    background: linear-gradient(135deg, var(--caramel-dark) 0%, var(--coffee-brown) 100%);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--espresso);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 115vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--soft-gold) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a574' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(250, 247, 242, 0.8) 0%, rgba(232, 220, 198, 0.6) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid var(--caramel-light);
    border-radius: 25px;
    color: var(--coffee-brown);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--espresso);
    letter-spacing: -1px;
}

.title-script {
    font-family: 'Dancing Script', cursive;
    color: var(--caramel-dark);
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--espresso) 0%, var(--coffee-brown) 100%);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px var(--shadow-light);
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--caramel-light);
    border-radius: 25px;
    color: var(--coffee-brown);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.btn-secondary:hover {
    border-color: var(--caramel);
    background: var(--caramel-light);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--caramel-dark);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--warm-beige);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coffee-cup {
    width: 300px;
    height: 300px;
    background: linear-gradient(145deg, var(--coffee-brown) 0%, var(--espresso) 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px var(--shadow-strong);
    animation: float 6s ease-in-out infinite;
}

.coffee-cup::before {
    content: '☕';
    font-size: 6rem;
    color: var(--caramel-light);
    z-index: 2;
}

.cup-steam {
    position: absolute;
    top: -20px;
    width: 3px;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
    border-radius: 2px;
    animation: steam 3s ease-in-out infinite;
}

.cup-steam:nth-child(1) {
    left: 40%;
    animation-delay: 0s;
}

.cup-steam:nth-child(2) {
    left: 50%;
    animation-delay: 0.5s;
}

.cup-steam:nth-child(3) {
    left: 60%;
    animation-delay: 1s;
}

@keyframes steam {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scaleX(1.2);
    }
}

.floating-beans {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bean {
    position: absolute;
    font-size: 1.5rem;
    animation: floatBean 8s ease-in-out infinite;
    filter: sepia(1) saturate(1.5) hue-rotate(25deg);
}

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

.bean-2 {
    top: 70%;
    right: 20%;
    animation-delay: 2s;
}

.bean-3 {
    top: 40%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes floatBean {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid var(--caramel-light);
    border-radius: 25px;
    color: var(--coffee-brown);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--espresso);
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Menu Preview Section */
.menu-preview {
    padding: 8rem 0;
    background: var(--cream);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--warm-beige);
    border-radius: 25px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-btn.active,
.category-btn:hover {
    background: var(--caramel);
    border-color: var(--caramel);
    color: white;
    transform: translateY(-2px);
}

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

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    display: none;
}

.menu-item.active {
    display: block;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.menu-image {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--caramel-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    filter: sepia(1) saturate(1.2) hue-rotate(25deg);
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.menu-image:hover .menu-overlay {
    opacity: 1;
}

.quick-order {
    padding: 0.75rem 1.5rem;
    background: var(--caramel);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-order:hover {
    background: var(--caramel-dark);
    transform: scale(1.05);
}

.menu-content {
    padding: 1.5rem;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.menu-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--espresso);
}

.menu-price {
    font-weight: 700;
    color: var(--caramel-dark);
    font-size: 1.2rem;
}

.menu-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.menu-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: var(--soft-gold);
    color: var(--coffee-brown);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.menu-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-outline {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--caramel);
    border-radius: 25px;
    color: var(--caramel-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--caramel);
    color: white;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--cream-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--espresso);
    letter-spacing: -1px;
}

.about-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 165, 116, 0.1);
}

.feature-icon {
    font-size: 2rem;
    filter: sepia(1) saturate(1.5) hue-rotate(25deg);
}

.feature-text h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--espresso);
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-cta {
    margin-top: 2rem;
}

.about-visual {
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.image-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow-light);
    position: relative;
    transition: all 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.card-1 {
    grid-row: span 2;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--caramel-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    filter: sepia(1) saturate(1.2) hue-rotate(25deg);
}

.image-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    color: var(--espresso);
    text-align: center;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 200px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--caramel-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    filter: sepia(1) saturate(1.2) hue-rotate(25deg);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(60, 36, 21, 0.9));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Reservation Section */
.reservation {
    padding: 8rem 0;
    background: var(--cream-light);
}

.reservation-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.reservation-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--espresso);
    letter-spacing: -1px;
}

.reservation-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.reservation-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--espresso);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--warm-beige);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--cream-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--caramel);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.reservation-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--espresso) 0%, var(--coffee-brown) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.reservation-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.reservation-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hours-card,
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.hours-card h3,
.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--warm-beige);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--caramel-dark);
}

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

.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--espresso);
    letter-spacing: -1px;
}

.contact-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
}

.contact-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--caramel) 0%, var(--caramel-dark) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.contact-map {
    position: relative;
    background: url("/assets/images/map-bg.png") no-repeat center center / cover;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-light);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-map::after {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.map-placeholder {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
}

.map-pin {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: sepia(1) saturate(1.5) hue-rotate(25deg);
}

/* Footer */
.footer {
    background: var(--espresso);
    color: var(--cream-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-svg {
    width: 40px;   /* adjust to fit your design */
    height: auto;
    display: block;
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cream-light);
}

.footer-description {
    color: var(--caramel-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--coffee-brown);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-light);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--caramel);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.footer-links h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--cream-light);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.footer-contact {
    max-width: 350px;
}

.footer-contact-info {
    margin-bottom: 2rem;
}

.footer-contact-info p {
    color: var(--caramel-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.newsletter {
    margin-top: 2rem;
}

.newsletter h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--cream-light);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--coffee-brown);
    border-radius: 10px;
    background: var(--coffee-brown);
    color: var(--cream-light);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: var(--caramel-light);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--caramel);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--caramel);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.newsletter-form button:hover {
    background: var(--caramel-dark);
}

.footer-bottom {
    border-top: 1px solid var(--coffee-brown);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--caramel-light);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--caramel-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-credit {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.footer-credit a {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 500;
}

.footer-credit a:hover {
  text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .about-container,
    .reservation-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-visual {
        order: -1;
    }
    
    .reservation-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(250, 247, 242, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding-top: 3rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--warm-beige);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        width: 100%;
    }
    
    .btn-reserve {
        margin-top: 1rem;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 8rem;
        padding-bottom: 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        gap: 1rem;
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .coffee-cup {
        width: 250px;
        height: 250px;
    }
    
    .coffee-cup::before {
        font-size: 4rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
    
    .card-1 {
        grid-row: span 1;
    }
    
    .image-card {
        height: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item.tall {
        grid-row: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 5rem;
        padding-bottom: 2rem;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-top: 1.5rem;
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .stat-item {
        text-align: center;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .coffee-cup {
        width: 200px;
        height: 200px;
        margin: 1rem auto;
    }
    
    .coffee-cup::before {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2rem);
    }
    
    .section-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .reservation-form,
    .contact-form {
        padding: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--caramel) 0%, var(--caramel-dark) 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--caramel-dark) 0%, var(--coffee-brown) 100%);
}

/* Smooth transitions for all interactive elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}