/* ═══════════════════════════════════════════════════════════
   IACP GLOBAL - ADVANCED DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════ */

/* --- CONFIGURATION & VARIABLES --- */
:root {
    --color-black: #050505; --color-dark: #0a0f14; --color-white: #ffffff; --color-cyan: #00FBFF; --color-green: #00FF2F;
    --grad-main: linear-gradient(135deg, var(--color-cyan), var(--color-green)); --grad-glass: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    --font-head: 'Montserrat', sans-serif; --font-body: 'Poppins', sans-serif;
    --shadow-glow: 0 0 40px rgba(0, 251, 255, 0.3); --shadow-card: 0 20px 60px rgba(0,0,0,0.5); --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    --color-black: #f8f9fa; --color-dark: #ffffff; --color-white: #1a1a1a; --color-text-muted: #6c757d;
    --grad-glass: linear-gradient(145deg, rgba(0,0,0,0.03), rgba(0,0,0,0.01)); --shadow-card: 0 10px 40px rgba(0,0,0,0.1);
    --color-cyan: #00d9dd;  
    --color-green: #00dd29;
}

/* --- BASE RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--color-black); color: var(--color-white); font-family: var(--font-body); overflow-x: hidden; line-height: 1.6; transition: background-color 0.3s ease, color 0.3s ease; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }

/* --- ANIMATED BACKGROUND --- */
.page-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; background: var(--color-black); overflow: hidden; transition: background 0.3s ease; }
.grid-overlay { position: absolute; width: 100%; height: 100%; background-image: linear-gradient(rgba(0, 251, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 251, 255, 0.03) 1px, transparent 1px); background-size: 50px 50px; z-index: -1; animation: gridMove 20s linear infinite; }
@keyframes gridMove { 0% { transform: translate(0, 0); } 100% { transform: translate(50px, 50px); } }

.blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; animation: float 12s infinite ease-in-out; }
.blob-1 { top: -10%; left: -10%; width: 700px; height: 700px; background: radial-gradient(circle, var(--color-cyan), transparent); animation-delay: 0s; }
.blob-2 { bottom: -10%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, var(--color-green), transparent); animation-delay: 3s; }
.blob-3 { top: 40%; left: 40%; width: 450px; height: 450px; background: radial-gradient(circle, var(--color-cyan) 0%, var(--color-green) 50%, transparent 100%); animation-delay: 6s; opacity: 0.25; }
@keyframes float { 0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); } 33% { transform: translate(80px, -50px) scale(1.15) rotate(120deg); } 66% { transform: translate(-40px, 70px) scale(0.85) rotate(240deg); } }

/* --- NAVIGATION BAR --- */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 0; background: rgba(10, 15, 20, 0.7); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05); transition: var(--transition); }
[data-theme="light"] .navbar { background: rgba(255, 255, 255, 0.9); border-bottom: 1px solid rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
/* Logo Container - Image + Text Side by Side */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { width: 45px; height: 45px; object-fit: contain; transition: var(--transition); }
.logo:hover .logo-img { transform: rotate(360deg) scale(1.1); }
.logo a { font-size: 1.8rem; font-weight: 800; font-family: var(--font-head); letter-spacing: -1px; }
.logo a span {
    background: linear-gradient(90deg, #00FF2F, #00C3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes dotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.2); } }

.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 500; position: relative; padding: 5px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--grad-main); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.icon-btn { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.icon-btn:hover { background: var(--color-cyan); color: var(--color-black); border-color: var(--color-cyan); transform: rotate(180deg); box-shadow: var(--shadow-glow); }
[data-theme="light"] .icon-btn { background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.1); }

.btn-login { padding: 12px 28px; background: var(--grad-main); color: var(--color-black); border-radius: 50px; font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px; box-shadow: 0 5px 20px rgba(0, 251, 255, 0.3); transition: var(--transition); }
.btn-login:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 251, 255, 0.5); }
.btn-login i { transition: transform 0.3s ease; }
.btn-login:hover i { transform: translateX(5px); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle .bar { width: 25px; height: 3px; background: var(--color-white); border-radius: 3px; transition: var(--transition); }

/* --- HERO SECTION --- */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: space-between; padding: 140px 5% 80px; position: relative; gap: 60px; }
.hero-content { flex: 1; max-width: 600px; animation: fadeInUp 1s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.badge-pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; border-radius: 30px; background: rgba(0, 251, 255, 0.08); color: var(--color-cyan); border: 1px solid rgba(0, 251, 255, 0.25); margin-bottom: 25px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
[data-theme="light"] .badge-pill { background: rgba(0, 251, 255, 0.1); border: 1px solid rgba(0, 251, 255, 0.3); }
.dot-indicator { width: 10px; height: 10px; background: var(--color-green); border-radius: 50%; box-shadow: 0 0 15px var(--color-green); animation: pulse 2.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.6; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.1); } }

.hero-title { font-size: 4.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 25px; font-family: var(--font-head); letter-spacing: -2px; }
.text-gradient { background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; display: inline-block; animation: gradientShift 4s ease infinite; }
@keyframes gradientShift { 0%, 100% { filter: hue-rotate(0deg); } 50% { filter: hue-rotate(20deg); } }

.hero-desc { color: #a8a8a8; font-size: 1.15rem; max-width: 520px; margin-bottom: 40px; line-height: 1.7; }
[data-theme="light"] .hero-desc { color: var(--color-text-muted); }

.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }
.btn { padding: 14px 40px; border-radius: 50px; font-weight: 600; text-transform: uppercase; font-size: 14px; letter-spacing: 1.2px; position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 12px; cursor: pointer; transition: var(--transition); border: none; }

.btn-primary { background: var(--color-cyan); color: var(--color-black); box-shadow: 0 5px 25px rgba(0, 251, 255, 0.4); }
.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 251, 255, 0.6); }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s ease; }
.btn-primary:hover::before { left: 100%; }

.btn-glass { background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.2); color: var(--color-white); backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,0.12); border-color: var(--color-cyan); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 251, 255, 0.2); }
[data-theme="light"] .btn-glass { background: rgba(0,0,0,0.05); border: 2px solid rgba(0,0,0,0.1); color: var(--color-white); }

.scroll-down { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); text-align: center; font-size: 13px; color: #888; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-down i { animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-12px); } 60% { transform: translateY(-6px); } }

/* --- HERO VISUAL CARD --- */
.hero-visual { position: relative; flex: 0 0 450px; display: none; animation: floatCard 6s ease-in-out infinite; }
@keyframes floatCard { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
@media (min-width: 992px) { .hero-visual { display: block; } }

.glass-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); backdrop-filter: blur(20px); border-radius: 30px; padding: 50px 40px; text-align: center; box-shadow: var(--shadow-card); transform: perspective(1200px) rotateY(-12deg) rotateX(5deg); transition: var(--transition); position: relative; overflow: hidden; }
[data-theme="light"] .glass-card { background: rgba(0, 0, 0, 0.03); border: 1px solid rgba(0, 0, 0, 0.08); }
.glass-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(0, 251, 255, 0.1), transparent 70%); animation: cardGlow 8s linear infinite; }
@keyframes cardGlow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.glass-card:hover { transform: perspective(1200px) rotateY(0) rotateX(0) scale(1.05); border-color: var(--color-cyan); box-shadow: 0 30px 80px rgba(0, 251, 255, 0.3); }

.card-content { position: relative; z-index: 1; }
.icon-large { font-size: 5rem; color: var(--color-cyan); margin-bottom: 25px; filter: drop-shadow(0 0 20px var(--color-cyan)); animation: iconFloat 3s ease-in-out infinite; }
@keyframes iconFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(5deg); } }
.glass-card h3 { font-size: 1.8rem; margin-bottom: 15px; font-weight: 700; }
.glass-card p { color: #999; font-size: 1rem; }
[data-theme="light"] .glass-card p { color: var(--color-text-muted); }

.stats-row { display: flex; justify-content: space-around; margin-top: 35px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; gap: 20px; }
[data-theme="light"] .stats-row { border-top: 1px solid rgba(0,0,0,0.1); }
.stat { text-align: center; }
.stat strong { display: block; font-size: 2rem; color: var(--color-green); font-weight: 800; margin-bottom: 5px; text-shadow: 0 0 20px rgba(0, 255, 47, 0.4); }
.stat span { font-size: 0.9rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }

/* --- TRUST STRIP --- */
.trust-strip { margin-top: -60px; z-index: 5; position: relative; }
.strip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.trust-item { background: rgba(10, 15, 20, 0.85); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1); padding: 30px; border-radius: 20px; display: flex; align-items: center; gap: 20px; transition: var(--transition); position: relative; overflow: hidden; }
[data-theme="light"] .trust-item { background: rgba(255, 255, 255, 0.9); border: 1px solid rgba(0,0,0,0.1); }
.trust-item::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(0, 251, 255, 0.1), transparent); transition: left 0.6s ease; }
.trust-item:hover::before { left: 100%; }
.trust-item:hover { transform: translateY(-8px); border-color: var(--color-green); box-shadow: 0 15px 40px rgba(0, 255, 47, 0.2); }

.icon-box { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; background: rgba(0, 255, 47, 0.1); border-radius: 15px; border: 1px solid rgba(0, 255, 47, 0.3); transition: var(--transition); }
.trust-item:hover .icon-box { background: var(--color-green); transform: rotate(360deg); }
.icon-box i { font-size: 2rem; color: var(--color-green); transition: var(--transition); }
.trust-item:hover .icon-box i { color: var(--color-black); }

.trust-item .text h3 { font-size: 1.2rem; margin-bottom: 5px; font-weight: 700; }
.trust-item .text p { color: #888; font-size: 0.95rem; }
[data-theme="light"] .trust-item .text p { color: var(--color-text-muted); }

/* --- SECTION HEADERS --- */
.section-header { margin-bottom: 60px; }
.section-header.text-center { text-align: center; }
.neon-text { color: var(--color-cyan); font-size: 1rem; text-transform: uppercase; letter-spacing: 3px; font-weight: 600; margin-bottom: 15px; display: inline-block; position: relative; }
.neon-text::after { content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); width: 60px; height: 2px; background: var(--grad-main); }
.section-title { font-size: 3rem; font-weight: 800; font-family: var(--font-head); margin-bottom: 20px; }

/* --- EVENT CARD --- */
.event-card-glass { background: rgba(255,255,255,0.03); backdrop-filter: blur(15px); border-radius: 20px; padding: 3px; position: relative; max-width: 950px; margin: 40px auto; overflow: hidden; }
[data-theme="light"] .event-card-glass { background: rgba(0,0,0,0.03); }
.glow-border { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg, var(--color-cyan), var(--color-green), var(--color-cyan)); opacity: 0.4; animation: borderRotate 6s linear infinite; z-index: -1; }
@keyframes borderRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.event-content { background: var(--color-dark); border-radius: 17px; padding: 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px; position: relative; z-index: 1; }
[data-theme="light"] .event-content { background: #ffffff; }

.date-box { text-align: center; border: 2px solid var(--color-cyan); padding: 15px 20px; border-radius: 12px; color: var(--color-cyan); min-width: 80px; background: rgba(0, 251, 255, 0.05); transition: var(--transition); }
.date-box:hover { background: var(--color-cyan); color: var(--color-black); transform: scale(1.1); box-shadow: 0 10px 30px rgba(0, 251, 255, 0.4); }
.date-box .month { font-size: 0.9rem; font-weight: 600; display: block; text-transform: uppercase; letter-spacing: 1px; }
.date-box .day { font-size: 1.5rem; font-weight: 800; display: block; margin-top: 5px; }

.event-content .details { flex: 1; min-width: 300px; }
.event-content h3 { font-size: 1.5rem; margin-bottom: 15px; font-weight: 700; }
.meta-list { list-style: none; display: flex; gap: 25px; color: #aaa; margin-top: 12px; flex-wrap: wrap; }
.meta-list li { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.meta-list i { color: var(--color-cyan); font-size: 1.1rem; }

.btn-outline-cyan { border: 2px solid var(--color-cyan); color: var(--color-cyan); background: transparent; padding: 12px 35px; border-radius: 50px; font-weight: 600; text-transform: uppercase; font-size: 14px; letter-spacing: 1px; transition: var(--transition); }
.btn-outline-cyan:hover { background: var(--color-cyan); color: var(--color-black); box-shadow: 0 8px 25px rgba(0, 251, 255, 0.5); transform: translateY(-3px); }

/* --- FOOTER --- */
.footer { background: rgba(5, 5, 5, 0.95); border-top: 1px solid rgba(255,255,255,0.1); padding: 60px 0 30px; margin-top: 100px; position: relative; }
[data-theme="light"] .footer { background: rgba(255, 255, 255, 0.95); border-top: 1px solid rgba(0,0,0,0.1); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 15px; }
.footer-col h3 span { color: var(--color-cyan); }
.footer-col p, .footer-col a { color: #999; font-size: 0.95rem; margin-bottom: 10px; display: block; transition: var(--transition); }
.footer-col a:hover { color: var(--color-cyan); transform: translateX(5px); }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; font-weight: 700; color: var(--color-green); }
/* Footer Bottom Border & Layout */
/* --- FOOTER BOTTOM SECTION --- */

/* 1. ඉහළින් ඉරක් ඇඳීම සහ පරතරය තැබීම */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Dark Mode Line */
    margin-top: 50px;
    padding-top: 30px;
}

/* Light Mode සඳහා ඉරේ පාට වෙනස් කිරීම */
[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* 2. Layout එක සැකසීම (Flexbox) */
.footer-bottom-content {
    display: flex;
    flex-direction: column; /* Mobile වලදී එක යට එක */
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

/* Desktop (ලොකු Screen) සඳහා Layout එක වෙනස් කිරීම */
@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row; /* දෙපැත්තට මාරු කිරීම */
        justify-content: space-between;
        text-align: left;
    }
}

/* 3. අකුරු වල පාට සහ ප්‍රමාණය (Text Styling) */
.copyright-text {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

[data-theme="light"] .copyright-text {
    color: var(--color-text-muted);
}

/* 4. ලින්ක්ස් (Links) සැකසීම */
.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    font-size: 0.9rem;
    color: #888;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

[data-theme="light"] .footer-legal-links a {
    color: var(--color-text-muted);
}

/* Hover කළාම පාට වෙනස් වීම (Cyan Color) */
.footer-legal-links a:hover {
    color: var(--color-cyan);
}

/* Hover කළාම පොඩි ඉරක් පෙන්වීම (Underline Effect) */
.footer-legal-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-cyan);
    transition: width 0.3s ease;
}

.footer-legal-links a:hover::after {
    width: 100%;
}

/* --- Social Icons Styling (ඔබේ කේතයේ තිබූ අයිකන සඳහා) --- */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: all 0.3s ease;
}

[data-theme="light"] .social-icon {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
    color: #666;
}

.social-icon:hover {
    background: var(--color-cyan);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 251, 255, 0.3);
    border-color: var(--color-cyan);
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.scroll-reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.scroll-reveal.active { opacity: 1; transform: translateY(0); }
.scroll-reveal.right { transform: translateX(50px); }
.scroll-reveal.right.active { transform: translateX(0); }
.scroll-reveal.up { transform: translateY(-50px); }
.scroll-reveal.up.active { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   BACK TO TOP BUTTON STYLES
   ═══════════════════════════════════════════════════════════ */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--grad-main); /* Theme Gradient */
    color: var(--color-black);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Glow Effect */
    box-shadow: 0 5px 15px rgba(0, 251, 255, 0.3);
}

/* Visible State */
.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.developer-credit{
    display: block;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}
.developer-credit strong{
    color: #ffffff;
}

/* Hover Effect */
.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 47, 0.5);
    background: var(--color-cyan);
}

/* Dark Mode Adjustment (Optional - keeps text readable) */
[data-theme="light"] .back-to-top-btn {
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .hero { flex-direction: column; text-align: center; padding-top: 140px; gap: 40px; }
    .hero-content { max-width: 100%; }
    .hero-title { font-size: 3.5rem; }
    .hero-btns { justify-content: center; }
    .scroll-down { display: none; }
    .nav-links { position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px); background: rgba(10, 15, 20, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 50px 0; transition: left 0.4s ease; }
    .nav-links.active { left: 0; }
    .menu-toggle { display: flex; }
    /* 1. Hide Logo Text & Adjust Image */
    .logo a { display: none !important; }
    .logo-img { width: 40px; height: 40px; margin-right: 0; }
    
    /* 2. Adjust Navbar Container padding */
    .nav-container { padding: 0 15px; }

    /* 3. Right Side Layout (Theme Button -> Login -> Menu) */
    .nav-right { display: flex; align-items: center; gap: 8px; }

    /* 4. Dark Mode Button Sizing */
    .icon-btn { width: 35px; height: 35px; font-size: 1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

    /* 5. Login Button (Visible, Compact, Icon Hidden to save space) */
    .btn-login { display: flex !important; padding: 6px 12px; font-size: 11px; border-radius: 20px; white-space: nowrap; height: 35px; align-items: center; }
    .btn-login i { display: none; }

    /* 6. Hamburger Menu */
    .menu-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; margin-left: 5px; }
    .menu-toggle .bar { width: 22px; height: 2px; background: var(--color-white); border-radius: 2px; transition: 0.3s; }
    
    /* 7. Ensure Mobile Menu Background is correct */
    .nav-links { position: fixed; top: 70px; right: -100%; width: 100%; height: calc(100vh - 70px); background: rgba(10, 15, 20, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 20px; transition: 0.4s ease; z-index: 999; }
    .nav-links.active { right: 0; }
    
    /* 8. Fix Colors for Light Mode Mobile */
    [data-theme="light"] .menu-toggle .bar { background: #000; }
    [data-theme="light"] .nav-links { background: rgba(255, 255, 255, 0.98); }


}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .strip-grid { grid-template-columns: 1fr; }
    .event-content { flex-direction: column; text-align: center; }
    .meta-list { justify-content: center; }
    .navbar { padding: 15px 0; }
    .btn-login { font-size: 12px; padding: 10px 20px; }
    .footer-bottom .flex { flex-direction: row; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .text-gradient { font-size: 2.5rem; }
    .hero-desc { font-size: 1rem; }
    .btn { padding: 12px 30px; font-size: 12px; }
    .glass-card { padding: 35px 25px; }
    .icon-large { font-size: 3.5rem; }
    .btn-login { padding: 6px 8px; font-size: 10px; }
    .nav-right { gap: 5px; }
}