/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #EA232A;
    line-height: 1.6;
    letter-spacing: 0.3px;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    box-shadow: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo a {
    color: #EA232A;
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #EA232A, #ff4d4d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    margin-left: 2.5rem;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #EA232A;
}

.nav-links a.active {
    color: #EA232A;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #EA232A, #ff4d4d);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: #f8f9fa;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(234, 35, 42, 0.85) 0%, rgba(255, 77, 77, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-image-container {
    flex: 1;
    position: relative;
    padding-bottom: 40px;
}

.hero-logo {
    width: 100%;
    max-width: 1000px;
    height: auto;
    position: relative;
    z-index: 2;
}

.hero-image-shadow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #EA232A;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.hero p {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hero without background image fallback */
.hero:not([style*="background-image"]) {
    background-color: #EA232A;
}

.hero:not([style*="background-image"])::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #4b5563;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #EA232A, #ff4d4d);
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 35, 42, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(234, 35, 42, 0.4);
    background: linear-gradient(45deg, #d41e24, #EA232A);
}

/* Events Section */
.events-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.events-section h2 {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.8rem;
    color: #EA232A;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
}

.events-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #EA232A, #ff4d4d);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

.event-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(234, 35, 42, 0.1);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(234, 35, 42, 0.15);
}

.event-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.event-content {
    padding: 2rem;
}

.event-date {
    color: #EA232A;
    font-weight: 600;
    margin-bottom: 0rem;
    font-size: 1.1rem;
}

.event-title {
    color: #EA232A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.event-details {
    margin-bottom: 1.5rem;
    color: #EA232A;
}

.event-details p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.event-price {
    font-weight: 700;
    color: #EA232A;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.event-button {
    display: inline-block;
    background: linear-gradient(45deg, #EA232A, #ff4d4d);
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 35, 42, 0.2);
}

.event-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 35, 42, 0.3);
    background: linear-gradient(45deg, #d41e24, #EA232A);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 35, 42, 0.05) 0%, rgba(255, 77, 77, 0.05) 100%);
    z-index: 1;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.8rem;
    color: #EA232A;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.testimonials h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #EA232A, #ff4d4d);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(234, 35, 42, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(234, 35, 42, 0.12);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-card cite {
    color: #EA232A;
    font-style: normal;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(234, 35, 42, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #EA232A;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, #EA232A, #ff4d4d);
    margin-top: 0.8rem;
    border-radius: 2px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    position: relative;
}

.social-link:hover {
    color: #EA232A;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(234, 35, 42, 0.1);
    color: #64748b;
    font-size: 0.95rem;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu span {
    width: 30px;
    height: 3px;
    background-color: #EA232A;
    transition: 0.3s ease;
    border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-image-container {
        padding-bottom: 30px;
    }

    .hero-logo {
        max-width: 300px;
    }

    .details-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
