/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:ital,wght@1,400&display=swap');

:root {
    --primary-color: #f05454;
    --bg-color: #111;
    --text-color: #eee;
    --secondary-bg: #222;
    --accent-glass: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

/* Navigation */
nav {
    background: rgba(17, 17, 17, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: right;
	
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
	margin-left: auto on 
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Header/Hero */
header {
    height: 80vh;
    /* Changed to 80vh for better fold visibility */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-attachment: fixed;
    /* Parallax effect */
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay */
}

header>* {
    position: relative;
    z-index: 1;
}

header p {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #ddd;
    max-width: 600px;
}

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: auto;
}

/* Cards & Grid (for Flavors/Events) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--secondary-bg);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.card p {
    color: #bbb;
    font-size: 0.95rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-top: 1rem;
    background: rgba(240, 84, 84, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* Images */
.centered-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--secondary-bg);
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Contact Links */
.contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}


.contact a:hover {
    opacity: 0.8;
}

/* --- Mobile Navigation --- */
.burger {
    display: none;
    /* Hidden on desktop */
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(226, 226, 226);
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    nav {
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none !important;
    }

    .burger {
        display: none !important;
    }
}

/* Burger Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}