:root {
    --primary: #0b2a4a;
    /* Navy */
    --gold: #c5a017;
    /* Gold Accent */
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-main: #334155;
    --text-muted: #64748b;
    --font-heading: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-main);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
}

/* 1. HERO SECTION (Dark Navy Theme) */
.hero-section {
    position: relative;
    width: 100%;
    background-color: var(--primary);
    /* Dark Navy */
    padding: 60px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

/* User requested DJ Profile in the Hero (Left Side) */
.hero-dj-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-dj-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-dj-name {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.hero-dj-role {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gold);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
}

.hero-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* Right Side Slider (Framed) */
.hero-visual {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    height: 400px;
    position: relative;
}

.swiper-container,
.swiper-slide {
    height: 100%;
    width: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

/* 2. ABOUT SECTION (Split Layout) */
.about-section {
    padding: 50px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    color: var(--primary);
}

.about-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.btn-gold {
    background: var(--primary);
    color: var(--gold);
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

.btn-gold:hover {
    background: transparent;
    color: var(--primary);
}

.about-visual img {
    width: 100%;
    border-radius: 4px;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    /* Reduced shadow */
}

.judge-caption {
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    text-align: center;
    border-radius: 0 0 4px 4px;
    position: relative;
    margin-top: -4px;
}

.judge-caption h4 {
    color: var(--gold);
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.judge-caption p {
    margin: 4px 0 0;
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

/* 2. SERVICES STRIP (Compact) */
.services-strip {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.compact-service-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.compact-service {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    background: #f8fafc;
    border-radius: 50px;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

.compact-service i {
    color: var(--gold);
}

.compact-service:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* 3. ACHIEVEMENTS (Stats as Image) */
.achievements-section {
    padding: 60px 0;
    background: #f8fafc;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.achievement-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid #eee;
    position: relative;
    transition: 0.3s;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.ach-pill {
    background: var(--gold);
    color: var(--primary);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.ach-val {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.ach-lbl {
    font-size: 14px;
    color: var(--text-muted);
}

/* TICKER */
.news-ticker-bar {
    background: var(--primary);
    color: var(--white);
    display: flex;
    height: 45px;
    align-items: center;
    border-bottom: 2px solid var(--gold);
    overflow: hidden;
}

.ticker-title {
    background: var(--gold);
    color: var(--primary);
    font-weight: 800;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    z-index: 10;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    padding-left: 100%;
}

.ticker-item {
    margin-right: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* MODERN NAV MENU FIXED */
.main-nav {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: center;
    /* Center the menu items */
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
    /* Space between items */
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    /* Prevent overflow */
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    /* Slightly smaller for cleaner look */
    text-transform: uppercase;
    font-weight: 700;
    padding: 15px 5px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

/* Animated Underline */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 10px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
}

/* DROPDOWN MENU */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 9999;
    border-top: 4px solid var(--gold);
    border-radius: 0 0 4px 4px;
    padding: 0;
}

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

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333333 !important;
    /* Force dark text explicitly */
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s;
    text-transform: none;
    /* Normal case for dropdowns */
    background: #ffffff;
}

.dropdown a:hover {
    background: #f8fafc !important;
    color: var(--primary) !important;
    padding-left: 25px;
    border-left: 3px solid var(--gold);
}

.dropdown a:last-child {
    border-bottom: none;
}

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

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--primary);
    /* Dark text for visibility */
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s;
    text-transform: none;
    /* Normal case for dropdowns */
}

.dropdown a:hover {
    background: #f8fafc;
    color: var(--gold);
    padding-left: 25px;
}

.dropdown a:last-child {
    border-bottom: none;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .nav-list {
        gap: 15px;
    }

    .nav-link {
        font-size: 12px;
        padding: 12px 2px;
    }
}

/* 6. NOTICES (List Style) */
.notices-section {
    padding: 80px 0;
    background: var(--white);
}

.notice-list {
    list-style: none;
    padding: 0;
}

.notice-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: 0.2s;
}

.notice-item:hover {
    background: #fafafa;
    padding-left: 10px;
}

.notice-date {
    background: var(--light-bg);
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    min-width: 80px;
    margin-right: 20px;
    border: 1px solid #eee;
}

.notice-date .day {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.notice-date .month {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.notice-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 16px;
    flex-grow: 1;
}

.notice-link:hover {
    color: var(--primary);
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on tablet/mobile */
        gap: 30px;
        text-align: center;
    }

    .hero-dj-card {
        margin: 0 auto;
        width: 100%;
        /* Full width on mobile */
        max-width: 100%;
        /* Allow it to fill screen */
    }

    .hero-visual {
        width: 100%;
        height: 350px;
    }

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

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        min-height: auto;
        /* Allow content to dictate height */
    }

    .hero-visual {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 0;
    }

    .hero-visual {
        height: 250px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 0;
    font-size: 14px;
}

.footer-grid-3 {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand img {
    height: 60px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 20px;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
    line-height: 1.2;
    margin: 0;
}

.footer-col p {
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary);
}

.footer-col h4 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 700;
}

.footer-links,
.contact-info {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-map {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    opacity: 0.5;
    font-size: 13px;
}

@media (max-width: 900px) {
    .footer-grid-3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}