/* Core Styling Variables & Resets */
:root {
    --bg-dark: #0a0a0c;
    --bg-card: #141419;
    --bg-card-hover: #1c1c24;
    --accent-orange: #ff6900;
    --accent-orange-glow: rgba(255, 105, 0, 0.35);
    --accent-red: #f20000;
    --accent-red-glow: rgba(242, 0, 0, 0.35);
    --text-main: #ffffff;
    --text-muted: #cccccc;
    --text-subtle: #888888;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}


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

body {
    background-color: #141414; /* Deep Black Base */
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    background-image: radial-gradient(circle at 50% 0%, #1f1f1f 0%, #141414 70%);
}

/* Headings and Brand Typography */
h1, h2, h3, .nav-logo {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Clear Brand Theme Colors */
.orange-text { color: #ff6900; }
.red-text { color: #f20000; }

/* Navigation Bar Layout */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 105, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #ff6900 !important;
}

/* Hero Branding Layout (Home Page) */
/* Hero Section with Image Background and Dark Transition Gradient */
/* Hero Section with Image Background and Dark Transition Gradient */
.hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.8) 60%, var(--bg-dark) 100%), 
                url('hero-section.jpg') center/cover no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}   

.hero-content {
    max-width: 850px;
    z-index: 2;
}
.season-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(255, 106, 0, 0.14);
    color: var(--accent-orange);
    border: 1px solid var(--accent-orange);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.1);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 650px;
    margin: 0 auto 40px auto;
}
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.cta-btn {
     padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.primary-btn {
    background-color: #ff6900;
    color: #ffffff;
}

.primary-btn:hover {
    background-color: #e05c00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 105, 0, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #f20000;
}

.secondary-btn:hover {
   background-color: rgba(242, 0, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 0, 0, 0.2);
}

/* Universal Section Structuring */
.content-section {
    padding: 100px 8%;
}

.grey-bg {
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.lightgrey-bg {
    background-color: #1e1e1e;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}


.section-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.content-section h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #999999;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

/* Split About Us Section */
.split-about {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.about-text-side {
    flex: 1.2;
}

.about-text-side p {
    color: #b3b3b3;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.about-image-side {
    flex: 0.8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.about-image-side:hover {
    transform: scale(1.02);
}

.about-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Translucent Hero Header with Dark Overlay */
.outreach-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.8) 60%, var(--bg-dark) 100%), 
                url('outreach-picture.jpg') center/cover no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Resources Grid Cards */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.resource-box {
    background-color: #1c1c1c;
    padding: 35px;
    border-radius: 14px;
    border: 1px solid #2a2a2a;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.resource-box:hover {
    transform: translateY(-4px);
    border-color: #ff6900;
    box-shadow: 0 15px 35px rgba(255, 105, 0, 0.08);
}

.resource-box h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.resource-list {
    list-style: none;
}

.resource-list li {
    margin-bottom: 12px;
}

.resource-list a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.resource-list a:hover {
    color: #ff6900;
    text-decoration: underline;
}

/* Dual Team Organization Split */
.organization-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.org-card {
    background-color: #1c1c1c;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: left;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: 1px solid rgba(34, 34, 34, 0.98);
}

.org-card h3 {
    font-size: 1.8rem;
    margin-top: 15px;
    margin-bottom: 12px;
}

.org-card p {
    color: #cccccc;
    font-size: 1rem;
}

.orange-glow:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 105, 0, 0.08);
    border-color: rgba(255, 105, 0, 0.3);
}

.red-glow:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(242, 0, 0, 0.08);
    border-color: rgba(242, 0, 0, 0.3);
}

.team-label-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: rgba(218, 76, 15, 0.692);
    color: #d12a17;
    border: 1px solid rgba(255, 105, 0, 0.3);
}

.orange-bg { background-color: #ff6900; color: #ffffff; }
.red-bg { background-color: #f20000; color: #ffffff; }

/* Team Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.team-sect {
    background-color: #141414;
    padding: 35px 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 105, 0, 0.1);
}

.profile-pic-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #2b2b2b;
    border: 3px solid rgba(255, 255, 255, 0.05);
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.role-bubble {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.orange-bubble {
    background-color: rgba(255, 105, 0, 0.12);
    color: #ff6900;
    border: 1px solid rgba(255, 105, 0, 0.25);
}

.red-bubble {
    background-color: rgba(242, 0, 0, 0.12);
    color: #f20000;
    border: 1px solid rgba(242, 0, 0, 0.25);
}

.member-goal {
    font-size: 0.9rem;
    color: #a0a0a0;
    font-style: italic;
    line-height: 1.5;
}

.orange-border { border-top: 4px solid #ff6900; }
.red-border { border-top: 4px solid #f20000; }
.white-border { border-top: 4px solid #ffffff; }


 .sponsor-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.8) 60%, var(--bg-dark) 100%), 
                url('sponsorship-hero.jpg') center/cover no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Contact Page Layout */
.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.contact-socials-card, 
.contact-form-card {
    background-color: #1c1c1c;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.contact-socials-card h3, 
.contact-form-card h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.socials-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 20px;
    background-color: #141414;
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.social-link-item:hover {
    border-color: #ff6900;
    color: #ff6900;
    transform: translateX(6px);
}

.social-icon {
    font-size: 1.3rem;
}

.interactive-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group textarea {
    background-color: #141414;
    border: 1px solid #2d2d2d;
    padding: 16px 18px;
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #f20000;
    box-shadow: 0 0 12px rgba(242, 0, 0, 0.15);
}

.email-btn {
    display: inline-block;
    padding: 16px 35px;
    background-color: #f20000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.email-btn:hover {
    background-color: #e38f8f;
    transform: translateY(-2px);
}

/* Visibility Engine */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/* Universal Site Footer */
.site-footer {
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
    color: #555555;
    font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 850px) {
    .split-about {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}