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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background: linear-gradient(135deg, #fefefe 0%, #f8f5f0 100%);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: #2c1810;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c1810;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4a574, #8b4513);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #8b4513;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px 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 h2 {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #8b4513, #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

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

.nav-link {
    text-decoration: none;
    color: #2c1810;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #8b4513;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4a574, #8b4513);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

.bar {
    width: 28px;
    height: 3px;
    background: #2c1810;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #f8f5f0 0%, #ede4d3 50%, #f0e6d2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4a574" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%238b4513" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d4a574" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

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

.hero-text h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #8b4513, #d4a574, #8b4513);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.3rem;
    color: #5a4037;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a0522d, #8b4513);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #8b4513;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.hero-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-image img {
    max-width: 450px;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

.hero-info {
    max-width: 1200px;
    margin: 5rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4a574, #8b4513);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.info-card i {
    font-size: 2.5rem;
    color: #8b4513;
    transition: transform 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1);
}

.info-card h4 {
    margin-bottom: 0.5rem;
    color: #2c1810;
    font-size: 1.2rem;
    font-weight: 700;
}

.info-card p {
    color: #5a4037;
    margin: 0;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f5f0 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d4a574" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.5;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-text {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.about-text p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a4a4a;
}

.about-text strong {
    color: #8b4513;
    font-weight: 700;
}

.about-text em {
    color: #8b4513;
    font-style: italic;
    font-size: 1.2rem;
}

.about-images {
    display: grid;
    gap: 1.5rem;
}

.about-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 3px solid rgba(212, 165, 116, 0.3);
}

.about-img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Menu Section - New Compact Layout */
.menu {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f5f0 0%, #ede4d3 50%, #f0e6d2 100%);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wheat" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25 10 L25 40 M20 15 L30 15 M20 20 L30 20 M20 25 L30 25 M20 30 L30 30 M20 35 L30 35" stroke="%23d4a574" stroke-width="0.5" opacity="0.1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23wheat)"/></svg>') repeat;
    opacity: 0.3;
}

.menu h2 {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.menu-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: #5a4037;
    margin-bottom: 4rem;
    font-style: italic;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.menu-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #8b4513);
}

.section-title {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 165, 116, 0.3);
    font-size: 2rem;
    color: #8b4513;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: #d4a574;
    font-size: 1.8rem;
}

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

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

.menu-group {
    background: rgba(248, 245, 240, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.group-title {
    color: #2c1810;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.group-price {
    color: #8b4513;
    font-size: 1.1rem;
    background: rgba(212, 165, 116, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-weight: 600;
}

.group-description {
    color: #5a4037;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
    gap: 1rem;
}

.menu-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.item-name {
    color: #2c1810;
    font-weight: 700;
    font-size: 1.1rem;
}

.item-description {
    color: #5a4037;
    font-size: 0.9rem;
    line-height: 1.5;
}

.item-price {
    color: #8b4513;
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #d4a574, #8b4513);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* Grid layouts for toppings, sides, coffee, drinks */
.toppings-grid,
.sides-grid,
.coffee-grid,
.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.topping-item,
.side-item,
.coffee-item,
.drink-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.topping-item:hover,
.side-item:hover,
.coffee-item:hover,
.drink-item:hover {
    background: rgba(212, 165, 116, 0.1);
    transform: translateY(-2px);
}

.topping-item span,
.side-item span,
.coffee-item span,
.drink-item span {
    color: #8b4513;
    font-weight: 700;
    font-size: 1rem;
}

.menu-note {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(212, 165, 116, 0.3);
    position: relative;
    z-index: 1;
}

.menu-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #8b4513);
}

.menu-note p {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.menu-note a {
    color: #8b4513;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.menu-note a:hover {
    color: #d4a574;
    text-decoration: underline;
}

/* Responsive adjustments for menu */
@media (max-width: 768px) {
    .menu-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-section {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .toppings-grid,
    .sides-grid,
    .coffee-grid,
    .drinks-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .item-price {
        align-self: flex-end;
    }
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f5f0 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23d4a574" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>') repeat;
    opacity: 0.4;
}

.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

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

.contact-card {
    background: rgba(248, 245, 240, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4a574, #8b4513);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.contact-card i {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-card:hover i {
    transform: scale(1.1);
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: #2c1810;
    font-size: 1.3rem;
}

.contact-card p {
    color: #5a4037;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-card a {
    color: #8b4513;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #d4a574;
    text-decoration: underline;
}

.social-links {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.social-links h3 {
    margin-bottom: 2rem;
    color: #2c1810;
    font-size: 1.5rem;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(248, 245, 240, 0.8);
    border-radius: 15px;
    text-decoration: none;
    color: #2c1810;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.social-link:hover {
    background: #8b4513;
    color: white;
    transform: translateX(15px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.social-link i {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23d4a574" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>') repeat;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-logo h3 {
    background: linear-gradient(135deg, #d4a574, #f4e4c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.footer-logo p {
    color: #d4a574;
    font-style: italic;
}

.footer-info p {
    color: #d4a574;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        border-top: 1px solid rgba(212, 165, 116, 0.2);
    }

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

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

    .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);
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

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

    .hero-info {
        grid-template-columns: 1fr;
    }

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

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

    .contact-info {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 120px 15px 60px;
    }

    .info-card,
    .menu-category,
    .contact-card {
        padding: 2rem;
    }

    .about-text {
        padding: 2rem;
    }

    .menu-note {
        padding: 2rem;
    }
}

/* Smooth scrolling offset for fixed navbar */
section {
    scroll-margin-top: 100px;
}

/* Loading animation */
.loaded {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

