* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #000000;
    --secondary-bg: #000000;
    --accent-gold: #FFD700;
    --warm-gold: #D4AF37;
    --bright-gold: #FFE135;
    --text-light: #f8f8f8;
    --text-gray: #cccccc;
}

body {
    font-family: "Futura", "Futura PT", Helvetica, Arial, sans-serif;
    background: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

#home {
    margin-top: 4em;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--warm-gold);
}

nav.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    height: 46px;
    width: 100px;
    transition: all 0.3s ease;
    background: url('../Images/logo2.png') center/cover;
}

.logo:hover {
    color: var(--bright-gold);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1.5em;
}

.nav-links a:hover {
    background-color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #2a2a2a 100%);
    box-shadow: 0 15px 10px 0 rgba(0, 0, 0, 0.26);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../Images/hero2.png') center/cover;
    filter: blur(3px);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.42) 50%, #0000 100%);
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 3;
    position: relative;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.aspire-motto {
    margin-bottom: 2rem;
    position: relative;
    text-align: left;
}

.aspire-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
    letter-spacing: 0.1em;
    position: relative;
}

.letter-group {
    display: inline-block;
    position: relative;
}

.bracket {
    color: var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.highlight-letter {
    color: var(--bright-gold);
}

.letter-group:hover .bracket.left {
    transform: translateX(-10px);
}

.letter-group:hover .bracket.right {
    transform: translateX(10px);
}

.letter-group:hover .highlight-letter {
    transform: scale(1.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
    text-align: left;
    max-width: 400px;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--accent-gold), var(--bright-gold));
    color: var(--primary-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    color: var(--primary-bg);
}

/* About Section */
.about {
    padding: 3rem 0;
    background: var(--secondary-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-gold);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-gold), var(--bright-gold));
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-text h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.highlight-card {
    background: var(--primary-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.highlight-card h4 {
    color: var(--bright-gold);
    margin-bottom: 0.5rem;
}

/* Quote Section */
.quote-section {
    padding: 4rem 0;
    background: url('../Images/separator.png') center/cover;
    backdrop-filter: blur(3px);
    position: relative;
    color: var(--text-light);
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2rem;
    background-color: #000000bf;
    backdrop-filter: blur(3px);
    border-radius: 10px;
}

.quote-text {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.4;
}

.quote-author {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.quote-role {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}
.teams {
    padding: 3rem 0;
    background: var(--primary-bg);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: rgb(26,26,26);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-name {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.team-schedule {
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    border: 1px solid var(--warm-gold);
}

.teams-minimotion {
    background-image: url('../Images/teams.jpg');
}

/* Footer */
footer {
    background: var(--primary-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: var(--text-gray);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-left {
        align-items: center;
    }

    .aspire-motto {
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        max-width: none;
    }

    .aspire-line {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .teams-grid {
        grid-template-columns: 1fr;
    }

    .quote-text {
        font-size: 1.5rem;
    }
}

/* News Section */
.news-section {
    background: radial-gradient(circle at top left, #222 0%, #000 20%, #000 35%);
    padding: 6rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.news-section .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.news-section .section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.news-section .section-header h2 {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.news-section .section-header p {
    color: var(--text-gray);
    max-width: 520px;
}

/* Grid layout */
.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

/* News cards */
.news-card {
    background: linear-gradient(145deg, #141414 0%, #050505 100%);
    border-radius: 18px;
    padding: 1.75rem 1.75rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.news-card--top {
    grid-row: span 2;
}

/* Badge for top news */
.news-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 215, 0, 0.18);
    border: 1px solid rgba(255, 215, 0, 0.6);
    color: var(--bright-gold);
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.25rem;
    line-height: 1.3;
    color: #ffffff;
}

.news-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-gray);
}

.news-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Footer / link */
.news-footer {
    margin-top: auto;
    padding-top: 0.75rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.03);
    transition: all 0.25s ease;
}

.news-link i {
    font-size: 0.85rem;
    transform: translateX(0);
    transition: transform 0.25s ease;
}

.news-link:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card--top {
        grid-row: auto;
    }
}

@media (max-width: 600px) {
    .news-section {
        padding: 4rem 1.5rem;
    }

    .news-card {
        padding: 1.5rem;
    }

    .news-section .section-header h2 {
        font-size: 2rem;
    }
}

/* Grid layout - Dynamic based on number of items */
.news-grid {
    display: grid;
    gap: 2rem;
}

/* Default: 3 items (2fr 1fr 1fr) */
.news-grid:has(.news-card:nth-child(3)) {
    grid-template-columns: 2fr 1fr 1fr;
}

/* 2 items: equal columns */
.news-grid:has(.news-card:nth-child(2)):not(:has(.news-card:nth-child(3))) {
    grid-template-columns: 1fr 1fr;
}

/* 1 item: full width */
.news-grid:has(.news-card:only-child) {
    grid-template-columns: 1fr;
}

/* Fallback for browsers that don't support :has() */
@supports not selector(:has(*)) {
    .news-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    /* Add utility classes as fallback */
    .news-grid.news-grid--single {
        grid-template-columns: 1fr;
    }

    .news-grid.news-grid--double {
        grid-template-columns: 1fr 1fr;
    }

    .news-grid.news-grid--triple {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Adjust top news behavior based on item count */
.news-card--top {
    grid-row: span 2;
}

/* When only 1 or 2 items, don't span rows */
.news-grid:has(.news-card:only-child) .news-card--top,
.news-grid:has(.news-card:nth-child(2)):not(:has(.news-card:nth-child(3))) .news-card--top {
    grid-row: auto;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .news-grid,
    .news-grid:has(.news-card:nth-child(3)),
    .news-grid:has(.news-card:nth-child(2)):not(:has(.news-card:nth-child(3))),
    .news-grid:has(.news-card:only-child) {
        grid-template-columns: 1fr;
    }

    .news-card--top {
        grid-row: auto;
    }
}

