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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #2c5530;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #4a90e2;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Decaying Apple Blossom to Datacenter */
.hero {
    background: linear-gradient(135deg, #ffb3d9 0%, #ff80c0 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: decayToDatacenter 8s ease-in-out forwards;
}

@keyframes decayToDatacenter {
    0% {
        background: linear-gradient(135deg, #ffb3d9 0%, #ff80c0 100%);
        filter: saturate(1) brightness(1);
    }
    25% {
        background: linear-gradient(135deg, #ffb3d9 0%, #ff80c0 100%);
        filter: saturate(0.8) brightness(0.9);
    }
    50% {
        background: linear-gradient(135deg, #cc9999 0%, #996666 100%);
        filter: saturate(0.4) brightness(0.7);
    }
    75% {
        background: linear-gradient(135deg, #666666 0%, #444444 100%);
        filter: saturate(0.2) brightness(0.5);
    }
    100% {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        filter: saturate(1) brightness(1);
    }
}

.hero::before {
    content: '🌸🌸🌸🌸🌸🌸🌸🌸🌸🌸🌸🌸';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
    font-size: 3em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    opacity: 0.6;
    animation: floralDecay 8s ease-in-out forwards;
}

@keyframes floralDecay {
    0% {
        content: '🌸🌸🌸🌸🌸🌸🌸🌸🌸🌸🌸🌸';
        opacity: 0.8;
        filter: saturate(1) hue-rotate(0deg);
    }
    25% {
        content: '🌸🥀🌸🥀🌸🥀🌸🥀🌸🥀🌸🥀';
        opacity: 0.6;
        filter: saturate(0.7) hue-rotate(20deg);
    }
    50% {
        content: '🥀🥀🥀🥀🥀🥀🥀🥀🥀🥀🥀🥀';
        opacity: 0.4;
        filter: saturate(0.3) hue-rotate(60deg);
    }
    75% {
        content: '🏗️⚡🏗️⚡🏗️⚡🏗️⚡🏗️⚡🏗️⚡';
        opacity: 0.5;
        filter: saturate(0.8) hue-rotate(120deg);
    }
    100% {
        content: '🖥️📡🖥️📡🖥️📡🖥️📡🖥️📡🖥️📡';
        opacity: 0.7;
        filter: saturate(1) hue-rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h2 {
    font-size: 1.8em;
    font-weight: 300;
    margin-bottom: 20px;
    color: #f0f8ff;
}

.hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-dates {
    margin-bottom: 40px;
}

.hero-dates p {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #4facfe;
}

.stat p {
    font-size: 1em;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #4facfe;
    color: white;
}

.btn-primary:hover {
    background-color: #00f2fe;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #4facfe;
}

/* Events Section */
.events {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c5530;
}

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

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.event-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.event-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.event-card.featured .event-image {
    min-height: auto;
}

.placeholder-image {
    font-size: 4em;
    opacity: 0.8;
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #2c5530;
}

.event-date {
    color: #4facfe;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9em;
}

.event-features {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    background-color: #e8f4fd;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #2c5530;
}

/* Tickets Section */
.tickets {
    padding: 100px 0;
    background-color: white;
}

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

.ticket-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.ticket-card.premium {
    border-color: #4facfe;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
}

.ticket-card.premium::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #4facfe;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
}

.ticket-card h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #2c5530;
}

.price {
    font-size: 3em;
    font-weight: bold;
    color: #4facfe;
    margin-bottom: 30px;
}

.ticket-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.ticket-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
}

.ticket-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
}

/* Facts Preview Section */
.facts-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    text-align: center;
}

.facts-preview .section-title {
    color: white;
}

.facts-intro {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3,
.newsletter h3 {
    margin-bottom: 20px;
    color: #2c5530;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1em;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #4facfe;
}

/* Footer */
footer {
    background-color: #2c5530;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    color: #4facfe;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4facfe;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    padding: 10px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: rgba(79, 172, 254, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9em;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero h2 {
        font-size: 1.4em;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .event-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .ticket-grid {
        grid-template-columns: 1fr;
    }
}