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

:root {
    --primary-color: #e10600;
    --secondary-color: #ff1e87;
    --accent-color: #00d9ff;
    --dark: #0a0a0a;
    --light: #ffffff;
    --gray: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #666;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light);
    animation: fadeInUp 1s ease-out;
}

.date-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 35px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 35px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    font-weight: 400;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 0.9;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(255, 215, 0, 0.5);
    filter: drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.7));
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

.event-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 25px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 30px rgba(255, 30, 135, 0.8),
                 0 0 60px rgba(0, 217, 255, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 45px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    word-spacing: 8px;
    color: #ffffff;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 20px 55px;
    background: var(--light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--light);
}

.cta-button.secondary {
    background: transparent;
    color: var(--light);
    border: 3px solid var(--light);
}

.cta-button.secondary:hover {
    background: var(--light);
    color: var(--primary-color);
    border-color: var(--light);
}

/* Highlight Section */
.highlight-section {
    padding: 100px 0;
    background: var(--light);
}

.highlight-section h2 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 60px;
    font-weight: 400;
    letter-spacing: 6px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    position: relative;
}

.highlight-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 40px 20px;
    background: var(--gray);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--dark);
}

.gallery-section h2 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gallery-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.gallery-subtitle {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--light);
}

.video-section h2 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.video-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.venue-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.venue-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.venue-address {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.venue-website-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(225, 6, 0, 0.3);
}

.venue-website-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(225, 6, 0, 0.5);
}

/* Details Section */
.details-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    color: var(--light);
}

.details-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 8px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
}

.detail-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.detail-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.detail-value {
    font-size: 1.3rem;
    line-height: 1.8;
}

.subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.venue-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.venue-link:hover {
    color: var(--light);
    border-bottom: 2px solid var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

/* Photoshoot Section */
.photoshoot-section {
    padding: 100px 0;
    background: var(--gray);
}

.photoshoot-section h2 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 60px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.photoshoot-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.photoshoot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.photoshoot-card {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.photoshoot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(225, 6, 0, 0.2);
}

.photoshoot-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.photoshoot-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--light);
    text-align: center;
}

.welcome-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.welcome-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    letter-spacing: 1px;
    opacity: 0.95;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    padding: 40px 0;
    background: var(--dark);
    color: var(--light);
    text-align: center;
}

.footer-subtext {
    margin-top: 10px;
    opacity: 0.7;
    font-size: 0.9rem;
}

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

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 2px 30px rgba(255, 30, 135, 0.6),
                     0 0 60px rgba(0, 217, 255, 0.4);
    }
    100% {
        text-shadow: 0 2px 40px rgba(255, 30, 135, 1),
                     0 0 80px rgba(0, 217, 255, 0.8);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 10px 40px rgba(255, 255, 255, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .event-subtitle {
        font-size: 1.3rem;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .highlight-section h2,
    .details-content h2,
    .photoshoot-section h2,
    .gallery-section h2,
    .video-section h2 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .venue-info h3 {
        font-size: 2rem;
    }

    .welcome-section h2 {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .detail-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .features-grid,
    .photoshoot-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .event-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 1rem;
    }

    .date-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
        letter-spacing: 3px;
    }

    .highlight-section h2,
    .details-content h2,
    .photoshoot-section h2,
    .gallery-section h2,
    .video-section h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .venue-info h3 {
        font-size: 1.8rem;
    }

    .welcome-section h2 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
}
