:root {
    --bg: #0a0a0a;
    --primary: #ffffff;
    --secondary: #888888;
    --accent: #ff0055;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --text: #e0e0e0;
    --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    position: relative;
    cursor: default;
    line-height: 1.6;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    /* Behind content */
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    /* On top of everything */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
    background: radial-gradient(circle at center, #1a1a1a 0%, var(--bg) 80%);
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--primary);
    text-transform: uppercase;
    position: relative;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 300;
}

.date-time {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    letter-spacing: 2px;
}

.highlight {
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.separator {
    color: var(--accent);
    align-self: center;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary);
    color: var(--bg);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.cta-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--secondary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

.arrow span {
    display: block;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid var(--secondary);
    border-right: 2px solid var(--secondary);
    transform: rotate(45deg);
    margin: -5px;
    animation: arrow-glow 1.5s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Sections */
main {
    padding: 8rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Content above particles */
}

.section {
    margin-bottom: 150px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: left;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    padding-left: 1rem;
    border-left: 4px solid var(--accent);
}

/* Cards & Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 3rem;
    transition: var(--transition);
}

.glass:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.card h3,
.menu-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.card p,
.menu-item p {
    color: var(--secondary);
    font-size: 1.1rem;
}

.sub-text {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: var(--accent) !important;
}

/* Menu */
.menu-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.menu-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Location */
.location-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.map-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    border: 1px solid var(--border);
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.map-btn:hover {
    background: var(--primary);
    color: var(--bg);
}

/* Footer */
footer {
    text-align: center;
    padding: 5rem 0;
    border-top: 1px solid var(--border);
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Animations */
@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes arrow-glow {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Updated styles for new features */

/* Buttons */
.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.map-btn {
    margin-top: 0;
    /* Reset margin since we use flex gap */
    cursor: pointer;
    background: transparent;
    font-family: inherit;
    font-size: 0.9rem;
}

.secondary-btn {
    border-color: var(--secondary);
    color: var(--secondary);
}

.secondary-btn:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 500px;
    width: 90%;
    margin: auto;
    text-align: center;
    transform: scale(0.7);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--accent);
    box-shadow: 0 0 50px rgba(255, 0, 85, 0.2);
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.close-btn:hover {
    color: var(--accent);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.parking-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.warning {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.coords-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.coords-box code {
    font-family: monospace;
    color: var(--primary);
    font-size: 1.1rem;
}

.copy-btn {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
}

.copy-btn:hover {
    color: var(--primary);
}

.small-info {
    font-size: 0.85rem;
    color: var(--secondary);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Gifts Section */
.gift-card {
    text-align: center;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.gift-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Hero Credits */
.hero-credits {
    margin-top: 2rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    opacity: 0.6;
    font-weight: 500;
}

.hero-credits span::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 10px;
}