/* ========================================
   AMBER LIONS - STYLESHEET
   ========================================
   Organized by sections for easy navigation and editing.
======================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    --primary: #1e3a5f;
    --secondary: #ff9f1c;
    --accent: #ff8c00;
    --dark: #0f2439;
    --light: #F5F5F5;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

/* ==================== GLOBAL RESET ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ==================== BODY ==================== */
body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* ==================== BOOT INTRO ANIMATION ==================== */
#bootIntro {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 50%, #0A0A0A 100%);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    animation: fadeOutSplash 0.8s ease 3.5s forwards;
}
#bootIntro img {
    width: 400px; max-width: 80vw; height: auto;
    opacity: 0; transform: scale(0.3);
    animation: logoEntrance 2s ease 0.5s forwards;
    filter: drop-shadow(0 0 30px rgba(241, 196, 15, 0.5));
}
@keyframes logoEntrance {
    0%   { opacity: 0; transform: scale(0.3) rotate(-10deg); }
    60%  { opacity: 1; transform: scale(1.1) rotate(2deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes fadeOutSplash { to { opacity: 0; visibility: hidden; } }

/* ==================== HEADER ==================== */
header {
    position: fixed; top: 0; left: 0; right: 0;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--dark) 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    z-index: 1000; height: 70px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
header.show { transform: translateY(0); }

/* ==================== NAV ==================== */
nav {
    max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 2rem; height: 100%;
}

/* ==================== LOGO ==================== */
.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px; font-weight: 700;
    color: var(--secondary); letter-spacing: 3px;
    display: flex; align-items: center; gap: 12px;
}
.logo::before {
    content: ''; display: inline-block;
    width: 45px; height: 45px;
    background-image: url("photo.png");
    background-size: contain; background-repeat: no-repeat; background-position: center;
    margin-right: 8px;
}

/* ==================== NAV LINKS ==================== */
.nav-links {
    display: flex; gap: 2rem;
    list-style: none; align-items: center;
}
.nav-links a {
    text-decoration: none; color: #fff;
    font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1.5px;
    transition: all 0.3s ease; position: relative; padding: 8px 5px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 3px; background: var(--secondary);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--secondary); }

/* ==================== CTA BUTTONS ==================== */
.cta-buttons { display: flex; gap: 1rem; align-items: center; }

.btn {
    padding: 10px 20px; border: none; border-radius: 4px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: all 0.3s ease;
    font-size: 12px; text-decoration: none; display: inline-block;
}
.btn-primary { background: var(--secondary); color: var(--primary); }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,159,28,0.4); }
.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--primary); box-shadow: 0 3px 15px rgba(255,159,28,0.3);
}
.btn-secondary:hover {
    background: linear-gradient(135deg, #ffb347 0%, var(--secondary) 100%);
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,159,28,0.5);
}

/* ==================== HEADER SOCIAL ICONS ==================== */
.nav-social { display: flex; gap: 10px; align-items: center; margin-left: 6px; }

.nav-social-link {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease; text-decoration: none;
}
.nav-social-link svg { width: 17px; height: 17px; fill: #fff; transition: fill 0.3s ease; }
.nav-social-link:hover {
    background: var(--secondary); transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,159,28,0.4);
}
.nav-social-link:hover svg { fill: var(--primary); }

/* ==================== HERO BANNER ==================== */
.hero-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    height: 300px; display: flex; align-items: center;
    justify-content: center; position: relative; overflow: hidden;
}
.hero-banner::before {
    content: ''; position: absolute; width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,159,28,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,159,28,0.1)  0%, transparent 50%);
}
.hero-banner-content {
    display: flex; align-items: center; justify-content: center;
    gap: 30px; z-index: 10; animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-logo { height: 150px; width: auto; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3)); }
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 96px; color: #fff;
    letter-spacing: 15px; text-shadow: 0 5px 20px rgba(0,0,0,0.5); position: relative;
}
.hero-title::after {
    content: ''; position: absolute; bottom: -10px; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary) 50%, transparent 100%);
}

/* ==================== LIVE INDICATOR ==================== */
.live-indicator {
    background: var(--secondary); color: var(--dark);
    padding: 12px; text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.live-dot {
    width: 10px; height: 10px; background: #ff0000;
    border-radius: 50%; animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.2); }
}

/* ==================== SECTION HEADERS ==================== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px; color: var(--primary);
    margin-bottom: 10px; letter-spacing: 3px;
}
.section-subtitle { font-size: 18px; color: #666; font-weight: 400; }

/* ==================== FEATURED CONTENT ==================== */
.featured { max-width: 1400px; margin: 80px auto; padding: 0 2rem; }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }

.card {
    background: white; border-radius: 10px; overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.card-image { height: 200px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); }
.card-content { padding: 25px; }
.card-tag {
    display: inline-block; background: var(--secondary); color: white;
    padding: 5px 12px; border-radius: 3px;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 15px;
}
.card-title { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--dark); line-height: 1.3; }
.card-description { color: #666; line-height: 1.6; }

/* ==================== LATEST NEWS ==================== */
.latest-news { background: white; padding: 80px 2rem; }
.news-tabs { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; flex-wrap: wrap; }
.tab {
    background: transparent; border: 2px solid var(--primary);
    color: var(--primary); padding: 12px 30px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: all 0.3s ease; border-radius: 5px;
}
.tab.active, .tab:hover { background: var(--primary); color: white; }
.news-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px;
}
.news-card {
    background: white; border-radius: 8px; overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08); transition: transform 0.3s ease; cursor: pointer;
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.news-image { height: 180px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); }
.news-content { padding: 20px; }
.news-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--dark); line-height: 1.4; }
.news-meta { font-size: 14px; color: #999; }

/* ==================== SCHEDULE ==================== */
.schedule { max-width: 1400px; margin: 80px auto; padding: 0 2rem; }
.schedule-grid { display: grid; gap: 25px; }
.game-card {
    background: white; border-radius: 10px; padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 30px; align-items: center;
}
.team { display: flex; gap: 15px; align-items: center; }
.team-logo { font-size: 48px; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: var(--light); border-radius: 50%; }
.team-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 5px; }
.team-record { color: #666; }
.game-details { text-align: center; }
.vs { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--accent); font-weight: 700; }
.game-date { font-weight: 600; margin: 10px 0 5px; }
.game-time { color: #666; }

/* ==================== FOOTER ==================== */
footer { background: var(--dark); color: white; padding: 60px 2rem 30px; }
.footer-content {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; margin-bottom: 40px;
}
.footer-section h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px; margin-bottom: 20px;
    color: var(--accent); letter-spacing: 2px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #ccc; text-decoration: none; transition: color 0.3s ease; font-weight: 400; }
.footer-links a:hover { color: var(--accent); }

/* ==================== FOOTER SOCIAL ICONS ==================== */
.social-links { display: flex; gap: 15px; margin-top: 20px; align-items: flex-start; }

.social-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }

.social-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    transition: all 0.3s ease; cursor: pointer;
    text-decoration: none; color: #fff;
}
.social-icon svg { width: 20px; height: 20px; fill: #fff; transition: fill 0.3s ease; }
.social-icon:hover {
    background: var(--secondary); transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255,159,28,0.4);
}
.social-icon:hover svg { fill: var(--primary); }

.social-label {
    font-size: 10px; color: #aaa;
    letter-spacing: 0.5px; font-weight: 600; text-transform: uppercase;
}

/* Copyright */
.footer-bottom {
    text-align: center; padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999; font-size: 14px;
}

/* ==================== MOBILE MENU TOGGLE ==================== */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 3px; background: #fff; transition: all 0.3s ease; }

/* ==================== SCROLL ANIMATIONS ==================== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.stagger-1 { animation-delay: 0s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    header { height: 65px; }
    .hero-banner { height: 200px; }
    .hero-banner-content { flex-direction: column; gap: 15px; }
    .hero-logo { height: 80px; }
    .hero-title { font-size: 52px; letter-spacing: 8px; }
    .logo { font-size: 20px; }
    .logo::before { width: 40px; height: 40px; }
    .nav-links {
        display: none; position: fixed; top: 0; right: -100%;
        height: 100vh; width: 280px;
        background: linear-gradient(to bottom, var(--primary) 0%, var(--dark) 100%);
        flex-direction: column; padding: 90px 30px 40px;
        gap: 15px; transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5); z-index: 1001;
    }
    .nav-links.active { display: flex; right: 0; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 12px 0; font-size: 15px; }
    .menu-toggle { display: flex; z-index: 1002; }
    .cta-buttons { display: flex; }
    .nav-social { display: none; }
    .cta-buttons .btn { font-size: 11px; padding: 8px 14px; }
    .game-card { grid-template-columns: 1fr; text-align: center; }
    .team { justify-content: center; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 38px; letter-spacing: 5px; }
    .hero-logo { height: 60px; }
    .hero-banner { height: 160px; }
}
