@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

body {
    background-color: #f5f7fa;
    margin-top: 80px;
}

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

:root {
    --brand-red: #D32F2F;
    --brand-gold: #FFAB00;
    --text-dark: #1A1A1B;
    --text-gray: #555555;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Outfit', sans-serif;
    background: #f9f9f9;
}

/* Header Main */
.premium-header {
    background: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    padding: 10px 0;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 80px;
    transition: transform 0.3s;
}

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

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    /* gap: 15px; */
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-red);
    background: rgba(211, 47, 47, 0.05);
}

/* Dropdown Premium Look */
.nav-item-dropdown {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: 150%;
    left: 0;
    width: 250px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 4px solid var(--brand-red);
}

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

.mega-dropdown li a {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: 0.3s;
}

.mega-dropdown li a:hover {
    background: #fdf2f2;
    color: var(--brand-red);
    padding-left: 20px;
}

/* --- PREMIUM BUTTONS  --- */

.header-btns {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-premium-outline {
    position: relative;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #D32F2F;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #D32F2F;
    border-radius: 12px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    z-index: 1;
}

.btn-premium-outline:hover {
    color: #ffffff;
    border-color: #D32F2F;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
    transform: translateY(-2px);
}

.btn-premium-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #D32F2F;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn-premium-outline:hover::before {
    left: 0;
}

.btn-premium-gradient {
    position: relative;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #FF4500 0%, #D32F2F 100%);
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 15px rgba(211, 47, 47, 0.3),
        inset 0 -4px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    top: 0;
    left: 0;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
    border-radius: 12px;
}

.btn-premium-gradient:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 25px rgba(211, 47, 47, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.btn-premium-gradient:hover .btn-glow {
    opacity: 0.6;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

.btn-premium-gradient {
    animation: pulse-red 2s infinite;
}

.btn-premium-gradient:active,
.btn-premium-outline:active {
    transform: translateY(1px);
}

@media (max-width: 1000px) {
    .header-inner {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .header-logo img {
        height: 40px !important;
        width: auto;
    }

    .header-btns {
        display: flex;
        align-items: center;
        gap: 8px;
    }


    .btn-premium-gradient {
        padding: 8px 12px !important;
        font-size: 11px !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2) !important;
    }

    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1002;
    }

    .mobile-toggle span {
        width: 22px;
        height: 2px;
        background: var(--brand-red);
        transition: 0.3s;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        /* Increased width */
        height: 100vh;
        background: var(--white);
        padding: 80px 20px;
        display: block !important;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    /* Make nav-list vertical on mobile */
    .nav-list {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        margin: 0;
    }

    /* Dropdown menu mobile fix */
    .nav-item-dropdown .mega-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border-top: none;
        padding-left: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-item-dropdown.open .mega-dropdown {
        display: block;
    }

    /* Adjust nav-link padding and font size on mobile */
    .nav-link {
        padding: 8px 12px;
        font-size: 16px;
    }
}


/* ==============event section============ */

.event-section-main {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.main-heading {
    text-align: center;
    margin-bottom: 50px;
}

.main-heading h2 {
    font-size: 38px;
    font-weight: 800;
    color: #222;
    position: relative;
    display: inline-block;
}

.main-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ff4747;
    /* Tomato/Red */
}

.event-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.solid-event-card {
    display: flex;
    background: #ffffff;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s;
}

.solid-event-card:hover {
    transform: translateY(-5px);
    border-color: #ff4747;
    box-shadow: 0 15px 35px rgba(255, 71, 71, 0.2);
}

.card-visual-left {
    width: 40%;
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-right: 1px solid #eee;

}

.card-visual-left img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.date-badge-solid {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4747;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.2;
}

.date-badge-solid .d {
    font-size: 18px;
    font-weight: 800;
    display: block;
}

.date-badge-solid .m {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.card-details-right {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.card-details-right h3 {
    font-size: 18px;
    color: #111;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.card-details-right .description {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.venue-info-box {
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
    margin-bottom: 15px;
}

.v-label {
    color: #ff4747;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.venue-info-box p {
    font-size: 12px;
    margin: 5px 0 0 0;
    color: #444;
}

.btn-event-details {
    margin-top: auto;
    background: #ff4747;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-event-details:hover {
    background: #222;
}

.icon-circle {
    background: #fff;
    color: #ff4747;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .event-grid-container {
        grid-template-columns: 1fr;
    }

    .solid-event-card {
        flex-direction: column;
    }

    .card-visual-left,
    .card-details-right {
        width: 100%;
    }
}

/* ===========footer============== */

.premium-footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 80px 20px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Border color changed to Tomato */
    border-top: 3px solid tomato;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-column h4 {
    /* Text color changed to Tomato */
    color: tomato;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    /* Underline color changed to Tomato */
    background: tomato;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.footer-logo span {
    /* Logo accent color changed to Tomato */
    color: tomato;
}

.about-text {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    /* Hover link color changed to Tomato */
    color: tomato;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.contact-item i {
    /* Icon color changed to Tomato */
    color: tomato;
    margin-top: 4px;
}

.contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #ffffff;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Social icon color changed to Tomato */
    color: tomato;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    /* Hover background changed to Tomato */
    background: tomato;
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

 @media (max-width: 600px) {
            .footer-container {
                grid-template-columns: 1fr;
                /* text-align: center; */
            }}
