/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;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;
    overflow-x: hidden;
}

/* 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: center;
    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;
}

.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;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-attachment: fixed;
    position: relative;
}

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

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

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

.home-header {
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.home-header::before {
    z-index: 1;
}

.home-header > .animate {
    z-index: 2;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    z-index: 0 !important;
    pointer-events: none;
}

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

/* Cards & Grid */
.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;
}

/* Slideshow Elements */
.slideshow { 
    width: min(100%, 1100px); 
    position: relative; 
    overflow: hidden; 
    background: #000; 
    margin: 0 auto; 
    border-radius: 12px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.6); 
    border: 1px solid rgba(255,255,255,0.1); 
    transition: aspect-ratio 0.5s ease-in-out; 
}

.slides { 
    display: flex; 
    transition: transform 0.5s ease-in-out; 
    touch-action: pan-y; 
    height: 100%; 
}

.slide { 
    min-width: 100%; 
    position: relative; 
    display: flex; 
    align-items: flex-end; 
    justify-content: center; 
    overflow: hidden; 
    height: 100%; 
}

.slide img { 
    position: absolute; 
    inset: 0; 
    margin: auto;
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.caption { 
    position: relative; 
    z-index: 2; 
    width: 100%; 
    padding: 60px 30px 30px; 
    text-align: center; 
    background: linear-gradient(transparent, rgba(0,0,0,0.9)); 
}

.caption h2 { 
    font-size: clamp(1.5rem, 4vw, 2.5rem); 
    margin-bottom: 8px; 
    color: #fff; 
}

.caption h2::after { 
    display: none; 
}

.caption p { 
    font-size: clamp(0.9rem, 2vw, 1.15rem); 
    color: #eee; 
    max-width: 800px; 
    margin: 0 auto; 
}

.event-cta { 
    display: inline-block; 
    margin-top: 14px; 
    padding: 10px 24px; 
    background: var(--primary-color); 
    color: #fff; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.95rem; 
    letter-spacing: 0.5px; 
    transition: all 0.2s; 
    border: 1px solid rgba(255,255,255,0.2); 
}

.event-cta:hover { 
    background: #ff6b6b; 
    transform: scale(1.05); 
    box-shadow: 0 4px 15px rgba(240,84,84,0.4); 
}

.prev, .next { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 5; 
    width: 48px; 
    height: 48px; 
    border: none; 
    border-radius: 50%; 
    background: rgba(0,0,0,0.55); 
    color: white; 
    font-size: 28px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: background 0.2s, transform 0.2s; 
    user-select: none; 
}

.prev:hover, .next:hover { 
    background: rgba(240,84,84,0.85); 
    transform: translateY(-50%) scale(1.1); 
}

.prev { left: 15px; }
.next { right: 15px; }

.dots { 
    position: absolute; 
    bottom: 15px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 10; 
    display: flex; 
    gap: 8px; 
}

.dot { 
    width: 10px; 
    height: 10px; 
    border: none; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.5); 
    cursor: pointer; 
    transition: all 0.2s; 
}

.dot.active { 
    background: var(--primary-color); 
    transform: scale(1.3); 
}

/* Mobile Navigation */
.burger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 8px;
}

.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: space-between;
        padding: 1rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 60px;
        height: calc(100vh - 60px);
        background-color: rgba(17, 17, 17, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in;
        padding-top: 3rem;
        margin-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
    .slideshow { width: 100%; border-radius: 8px; }
    .prev, .next { width: 40px; height: 40px; font-size: 22px; }
    .prev { left: 8px; }
    .next { right: 8px; }
    .caption { padding: 70px 16px 45px; }
}

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