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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Local Font Face */
@font-face {
    font-family: 'Brick Shapers';
    src: url('BrickShapers.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* WOW Brand Colors */
:root {
    --wow-red: #E92F4A;
    --wow-teal: #019393;
    --wow-orange: #E89E23;
    --wow-dark: #1a1a1a;
    --wow-light: #f8f9fa;
}

/* Brick Shapers font for all titles */
h1, h2, h3, h4, h5, h6,
.section-title,
.title,
.event-title,
.card-title {
    font-family: 'Brick Shapers', cursive;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--wow-dark);
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-img {
    height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

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

.nav-main {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-bar {
    background: var(--wow-dark);
    padding: 0;
    border-top: 1px solid #333;
}

.nav-bar .nav-container {
    height: 40px;
    justify-content: center;
}

.nav-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.nav-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-btn-primary {
    background: var(--wow-red);
    border-color: var(--wow-red);
    color: white;
}

.nav-btn-primary:hover {
    background: #d6283a;
    border-color: #d6283a;
}

.nav-pills {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-pill {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-pill.active {
    background: white;
    color: var(--wow-dark);
}

.nav-pill:hover:not(.active) {
    background: rgba(255, 255, 255, 0.2);
}

/* WOW Logo Styles */
.wow-logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.wow-w {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.wow-o {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    font-family: 'Poppins', sans-serif;
    position: relative;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wow-o::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: white;
    box-shadow: 
        0 0 0 2px white,
        0 0 0 4px transparent,
        0 0 0 6px white,
        0 0 0 8px transparent,
        0 0 0 10px white;
}

.wow-o::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.2rem;
    height: 0.2rem;
    background: white;
    border-radius: 50%;
    box-shadow: 
        -0.3rem 0 0 white,
        0.3rem 0 0 white,
        0 -0.3rem 0 white,
        0 0.3rem 0 white,
        -0.2rem -0.2rem 0 white,
        0.2rem -0.2rem 0 white,
        -0.2rem 0.2rem 0 white,
        0.2rem 0.2rem 0 white;
}

.wow-logo-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wow-logo-large .wow-w {
    font-size: 8rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.wow-logo-large .wow-o {
    font-size: 8rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wow-logo-large .wow-o::before {
    width: 6rem;
    height: 6rem;
    box-shadow: 
        0 0 0 8px white,
        0 0 0 16px transparent,
        0 0 0 24px white,
        0 0 0 32px transparent,
        0 0 0 40px white;
}

.wow-logo-large .wow-o::after {
    width: 0.8rem;
    height: 0.8rem;
    box-shadow: 
        -1.2rem 0 0 white,
        1.2rem 0 0 white,
        0 -1.2rem 0 white,
        0 1.2rem 0 white,
        -0.8rem -0.8rem 0 white,
        0.8rem -0.8rem 0 white,
        -0.8rem 0.8rem 0 white,
        0.8rem 0.8rem 0 white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu a:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.2);
}


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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.crowd-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    filter: blur(1px);
}

@keyframes crowdPulse {
    0%, 100% { 
        opacity: 0.9;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.02);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    margin-bottom: 4rem;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: white;
    font-weight: 300;
    text-transform: lowercase;
    letter-spacing: 1px;
    transition: opacity 0.8s ease-in-out;
    opacity: 1;
}

.hero-subtitle.fade-out {
    opacity: 0;
}

.hero-subtitle.fade-in {
    opacity: 1;
}

.hero-subtitle.typing {
    opacity: 1;
}

.hero-subtitle.typing::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--wow-teal);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-logo {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.logo-large {
    height: 400px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        opacity: 0.9;
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    100% {
        opacity: 1;
        filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--wow-red);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(233, 47, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 47, 74, 0.4);
    background: #d6283a;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: white;
    color: var(--wow-dark);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #2C5530;
    border-bottom: 2px solid #2C5530;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) rotate(45deg) translateY(0); }
    40% { transform: translateX(-50%) rotate(45deg) translateY(-10px); }
    60% { transform: translateX(-50%) rotate(45deg) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Brick Shapers', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-banner {
    margin-top: 1rem;
    display: inline-block;
}

.coming-soon-text {
    background: linear-gradient(135deg, var(--wow-red), var(--wow-orange));
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-family: 'Brick Shapers', cursive;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 4px 15px rgba(233, 47, 74, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(233, 47, 74, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(233, 47, 74, 0.5);
        transform: scale(1.02);
    }
}

.payment-notice {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(1, 147, 147, 0.08), rgba(233, 47, 74, 0.08));
    border: 2px solid var(--wow-teal);
    border-radius: 16px;
    padding: 20px 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(1, 147, 147, 0.15);
    transition: all 0.3s ease;
}

.payment-notice:hover {
    box-shadow: 0 6px 30px rgba(1, 147, 147, 0.25);
    transform: translateY(-2px);
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--wow-teal), var(--wow-red));
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(1, 147, 147, 0.3);
}

.payment-icon svg {
    width: 24px;
    height: 24px;
}

.payment-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.payment-title {
    font-family: 'Brick Shapers', cursive;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--wow-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.payment-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}
.social-icon-container {
    width: 40px;
    height: auto;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icon {
    width: 20px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .payment-notice {
        flex-direction: column;
        text-align: center;
        padding: 20px 24px;
        gap: 12px;
    }
    
    .payment-text {
        text-align: center;
        align-items: center;
    }
    
    .payment-icon {
        width: 40px;
        height: 40px;
    }
    
    .payment-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .payment-title {
        font-size: 0.95rem;
    }
    
    .payment-subtitle {
        font-size: 0.85rem;
    }
}

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

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

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none !important;
}

.event-card * {
    text-decoration: none !important;
}

/* Social Media Icons */
.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #ccc;
    transition: fill 0.3s ease;
}

.social-link:hover {
    background: var(--wow-red);
    transform: translateY(-2px);
}

.social-link:hover svg {
    fill: white;
}

.event-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.event-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 47, 74, 0.3), rgba(1, 147, 147, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-image::after {
    opacity: 1;
}

.event-info {
    padding: 1.5rem;
}

.event-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.event-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-date {
    font-size: 1rem;
    font-weight: 600;
    color: #ff6b6b;
}

/* Store Section */
.store {
    background: white;
    padding: 80px 0;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.store-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.coming-soon-item {
    opacity: 0.6;
    position: relative;
    pointer-events: none;
}

.coming-soon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    z-index: 1;
    pointer-events: none;
}

.coming-soon-item .store-coming-soon {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.coming-soon-item:hover {
    transform: none;
    cursor: not-allowed;
}

.store-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.store-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 47, 74, 0.1), rgba(1, 147, 147, 0.1));
    transition: opacity 0.3s ease;
}

.store-item:hover .store-image::after {
    opacity: 0;
}

.store-placeholder {
    font-size: 4rem;
    opacity: 0.8;
}

.store-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.store-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.store-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #45b7d1;
    display: block;
    margin-bottom: 0;
}

.store-coming-soon {
    display: block;
    margin-top: 0.75rem;
    background: linear-gradient(135deg, var(--wow-red), var(--wow-orange));
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-family: 'Brick Shapers', cursive;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 10px rgba(233, 47, 74, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
    text-align: center;
    width: fit-content;
    align-self: flex-start;
}

/* Contact Section */
.contact {
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #666;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b6b;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsive Logo Sizing */
@media (max-width: 768px) {
    /* Compact Navbar for Mobile */
    .nav-container {
        height: 45px;
        padding: 0 15px;
    }
    
    .nav-bar .nav-container {
        height: 35px;
    }
    
    .logo-img {
        height: 25px;
        max-width: 80px;
    }
    
    .nav-pill {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        gap: 0.4rem;
        margin: 0 0.2rem;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .nav-icons {
        gap: 0.5rem;
    }
    
    .nav-icon {
        font-size: 1rem;
        padding: 0.3rem;
    }
    
    .hero-logo {
        bottom: -50px;
    }
    
    .logo-large {
        height: 100px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    /* Extra Compact Navbar for Small Mobile */
    .nav-container {
        height: 40px;
        padding: 0 10px;
    }
    
    .nav-bar .nav-container {
        height: 30px;
    }
    
    .logo-img {
        height: 20px;
        max-width: 60px;
    }
    
    .nav-pill {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        gap: 0.3rem;
        margin: 0 0.15rem;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .nav-icons {
        gap: 0.3rem;
    }
    
    .nav-icon {
        font-size: 0.9rem;
        padding: 0.2rem;
    }
    
    .hero-logo {
        bottom: -40px;
    }
    
    .logo-large {
        height: 80px;
        max-width: 100px;
    }
}

/* Events Page Styles */
.events-hero {
    background: linear-gradient(135deg, var(--wow-red), var(--wow-teal));
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.events-hero-content h1 {
    font-family: 'Brick Shapers', cursive;
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.events-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.events-filter {
    background: var(--wow-light);
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--wow-teal);
    background: transparent;
    color: var(--wow-teal);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    background: var(--wow-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 147, 147, 0.3);
}

.filter-btn.active {
    background: var(--wow-teal);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(1, 147, 147, 0.4);
}

.filter-btn:active {
    transform: scale(0.98);
}

.events-list {
    padding: 4rem 0;
    background: white;
}

.events-grid-detailed {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.event-card-detailed {
    display: flex;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0) scale(1);
}

.event-card-detailed:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-card-detailed.filtering-out {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    pointer-events: none;
}

.event-card-detailed.filtering-in {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: filterIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes filterIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.events-grid-detailed {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.events-grid-detailed.loading {
    opacity: 0.5;
}

.events-grid-detailed.loading::after {
    content: 'Loading events...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: var(--wow-teal);
    font-weight: 600;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.event-date {
    background: var(--wow-red);
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.event-content {
    padding: 1.5rem;
    flex: 1;
}

.event-category {
    background: var(--wow-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--wow-dark);
    margin-bottom: 0.8rem;
}

.event-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.event-details span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.event-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.event-buttons .btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.event-buttons .btn-secondary {
    background: var(--wow-teal);
    color: white;
    border: 2px solid var(--wow-teal);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.event-buttons .btn-secondary:hover {
    background: #017d7d;
    border-color: #017d7d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(1, 147, 147, 0.3);
}

.event-buttons .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
}

.event-time {
    color: var(--wow-teal) !important;
}

.event-location {
    color: var(--wow-red) !important;
}

.event-price {
    color: var(--wow-orange) !important;
    font-weight: 700 !important;
}

@media (max-width: 768px) {
    .event-buttons {
        flex-direction: column;
    }
    
    .event-buttons .btn {
        width: 100%;
        flex: none;
        min-width: 100%;
    }
    
    .event-card-detailed {
        flex-direction: column;
    }
}

/* Homepage Events List */
.upcoming-events {
    background: var(--wow-light);
    padding: 4rem 0;
}

.upcoming-events .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.upcoming-events .section-header h2 {
    font-family: 'Brick Shapers', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wow-dark);
    margin-bottom: 1rem;
}

.upcoming-events .section-header p {
    font-size: 1.1rem;
    color: #666;
}

.events-list-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-item-home {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.event-item-home:hover {
    transform: translateY(-3px);
}

.event-item-home .event-image-home {
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.event-item-home .event-content-home {
    padding: 1.5rem;
}

.event-item-home .event-date-small {
    background: var(--wow-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-item-home h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wow-dark);
    margin-bottom: 0.5rem;
}

.event-item-home p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-item-home .event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #666;
}

.view-all-events {
    text-align: center;
}

.view-all-events .btn {
    background: var(--wow-teal);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-events .btn:hover {
    background: var(--wow-red);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .about-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        width: 100%;
    }

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 2s infinite;
}
