/* =========================================================================
   MUNAS X LDII - PREMIUM NATIONAL EVENT STYLESHEET
   ========================================================================= */

   :root {
    --primary-green: #0d3b16;     /* Deep elegant green */
    --light-green: #1a5c24;
    --accent-gold: #cfaa43;       /* Premium muted gold */
    --accent-gold-light: #e6c86a;
    --dark-bg: #050a06;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    
    --online-blue: #0b2f5c;
    --online-blue-light: #164e91;
    --online-accent: #3da1ff;

    --glass-bg: rgba(13, 59, 22, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Defaults */
h1, h2, h3, h4 {
    font-weight: 700;
}

h1.event-title, h2.event-desc {
    font-family: 'Playfair Display', serif;
}

/* =========================================================================
   BACKGROUNDS
   ========================================================================= */

.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('assets/bg-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(5, 10, 6, 0.95) 0%, rgba(13, 59, 22, 0.85) 100%);
    z-index: -1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.main-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* =========================================================================
   HERO / HEADER SECTION
   ========================================================================= */

.premium-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 80px;
}

.hero-glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle shine effect on panel */
.hero-glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 110px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.event-title {
    font-size: 4.5rem;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.event-desc {
    font-size: 1.6rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 40px;
    font-family: 'Outfit', sans-serif;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(207, 170, 67, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(207, 170, 67, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(207, 170, 67, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(207, 170, 67, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(207, 170, 67, 0); }
}

/* =========================================================================
   PATH SELECTION SECTION (CARDS)
   ========================================================================= */

.path-selection-section {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.heading-line {
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
}

.premium-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    width: 100%;
}

.premium-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.05), transparent 50%);
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--light-green);
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.5s ease;
    top: -50px;
    right: -50px;
    border-radius: 50%;
}
.premium-card:hover .card-glow { opacity: 0.5; }

.online-card .card-glow { background: var(--online-blue-light); }

.card-content {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.online-card .card-icon { color: var(--online-accent); }

.card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--light-green);
    background: rgba(26, 92, 36, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
    width: fit-content;
}

.tag-blue {
    color: var(--online-accent);
    background: rgba(61, 161, 255, 0.15);
}

.premium-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.card-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.card-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.card-features i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}
.online-card .card-features i { color: var(--online-accent); }

/* Buttons */
.btn-premium {
    padding: 18px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-premium i {
    transition: transform 0.3s ease;
}

.btn-premium:hover i {
    transform: translateX(5px);
}

.btn-offline {
    background: var(--light-green);
    color: white;
    box-shadow: 0 10px 20px rgba(26, 92, 36, 0.3);
}

.btn-offline:hover {
    background: #237830;
    box-shadow: 0 15px 30px rgba(26, 92, 36, 0.4);
    transform: translateY(-3px);
}

.btn-online {
    background: var(--online-blue-light);
    color: white;
    box-shadow: 0 10px 20px rgba(22, 78, 145, 0.3);
}

.btn-online:hover {
    background: #1d61b3;
    box-shadow: 0 15px 30px rgba(22, 78, 145, 0.4);
    transform: translateY(-3px);
}

/* Card Hover States */
.premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

/* =========================================================================
   INFO GRID SECTION
   ========================================================================= */

.event-info {
    padding: 60px 20px 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.02);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(207, 170, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.info-item h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================================================
   FOOTER
   ========================================================================= */

footer {
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 20px;
    text-align: center;
    background: rgba(0,0,0,0.8);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 60px;
    opacity: 0.7;
    filter: grayscale(100%);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 768px) {
    .event-title { font-size: 3rem; }
    .event-desc { font-size: 1.2rem; }
    .hero-glass-panel { padding: 40px 20px; }
    .premium-cards-container { grid-template-columns: 1fr; }
}
