/* 
 * Upgame x Future Champions Golf Landing Page
 * Modern Dark Theme
 * Typography: Oswald (Titles) + Proxima Nova (Body)
 */

:root {
    --black: #000000;
    --dark-gray: #1A1A1A;
    --medium-gray: #333333;
    --light-gray: #666666;
    --white: #FFFFFF;
    --isga-red: #C8102E;
    --isga-navy: #3399FF;
    --orange: #F9A03F;
    --cyan: #00BCD4;
    --green-yellow: #C5D86D;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
}

body {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

body > * {
    flex-shrink: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(
            135deg,
            rgba(51, 153, 255, 0.12) 0%,
            transparent 30%,
            transparent 70%,
            rgba(200, 16, 46, 0.12) 100%
        ),
        radial-gradient(
            ellipse at 20% 30%,
            rgba(51, 153, 255, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 80% 70%,
            rgba(200, 16, 46, 0.15) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

/* Animated Gradient Blob */
.gradient-blob {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(51, 153, 255, 0.35) 0%,
        rgba(51, 153, 255, 0.25) 40%,
        rgba(200, 16, 46, 0.15) 60%,
        transparent 80%
    );
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    left: -200px;
    top: 0;
    will-change: transform;
    transition: transform 0.3s ease-out;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.navbar-hidden {
    transform: translateY(-100%);
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    height: 70px;
    width: auto;
}

.logo-isga {
    height: 70px;
}

.logo-upgame {
    height: 60px;
}

.logo-divider {
    font-size: 32px;
    font-weight: 300;
    color: var(--light-gray);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--isga-navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--isga-red);
    color: var(--white);
}

.cta-button.hero-cta {
    padding: 16px 48px;
    font-size: 18px;
    margin-top: 32px;
}

/* Hero Section */
.hero {
    margin-top: 91px;
    padding: 80px 0 80px;
    background: linear-gradient(180deg, rgba(51, 153, 255, 0.08) 0%, transparent 100%);
    color: var(--white);
    position: relative;
    text-align: center;
    overflow: hidden;
}



.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto 60px;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
    text-transform: none;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--isga-navy);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-text {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-visual {
    width: 100%;
    max-width: 900px;
    height: 350px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero-image-actual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.section-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    display: block;
}

.section-image-small {
    max-width: 250px;
}

.section-image-medium {
    max-width: 380px;
}

.content-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Sections */
.section {
    padding: 60px 0;
    position: relative;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Fade-in Animation for Sections */
.section-content {
    opacity: 1;
    transform: translateY(0);
}

.section-content.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-content.animate-on-scroll.fade-in {
    opacity: 1;
    transform: translateY(0);
}



.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
    letter-spacing: -0.5px;
    text-transform: none;
}

.feature-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -0.5px;
    text-transform: none;
    line-height: 1.1;
}

/* Content Layouts */
.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.split-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.split-content > * {
    flex: 1;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

/* Reduce gap when image is on the right */
.split-content:not(.reverse) {
    gap: 40px;
}



.centered {
    text-align: center;
}

.centered-text {
    max-width: 800px;
    margin: 0 auto 40px;
}

.content-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.content-text p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--white);
    font-weight: 400;
}

.content-text p strong {
    font-weight: 400;
}

.highlight {
    color: var(--isga-red);
    font-weight: 400;
}

.emphasis {
    font-size: 20px;
    font-weight: 400;
    color: var(--cyan);
    margin-top: 24px;
}

.lead-text {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--white);
}

/* Feature Badges */
.feature-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.badge {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(0, 59, 92, 0.15);
    color: var(--isga-navy);
    border: 1px solid var(--isga-navy);
    border-radius: 50px;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Flow */
.process-flow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.flow-item {
    padding: 12px 24px;
    background: var(--medium-gray);
    color: var(--white);
    border-radius: 8px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.process-flow .fa-arrow-right {
    color: var(--isga-red);
    font-size: 20px;
}

/* Image Placeholders */
.image-placeholder {
    background: var(--dark-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition-smooth);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-placeholder:hover {
    border-color: var(--isga-navy);
}

.image-placeholder i {
    font-size: 80px;
    color: var(--light-gray);
    margin-bottom: 20px;
    opacity: 0.4;
}

.image-placeholder p {
    color: var(--light-gray);
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
}

.hero-image {
    min-height: 500px;
}

.content-visual.wide .image-placeholder {
    margin-top: 40px;
}

/* ISGA About Section */
.section-about-isga {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 59, 92, 0.05) 100%);
}

.isga-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.isga-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 400;
}

.isga-content p strong {
    color: var(--isga-red);
    font-weight: 600;
}

.venues-section {
    margin: 48px 0;
    padding: 40px;
    background: rgba(200, 16, 46, 0.05);
    border-left: 4px solid var(--isga-red);
    border-radius: 8px;
}

.venues-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--isga-red);
    margin-bottom: 32px;
    text-align: center;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.venue-item {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background: rgba(0, 59, 92, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(200, 16, 46, 0.2);
    transition: var(--transition-smooth);
}

.venue-item:hover {
    background: rgba(0, 59, 92, 0.15);
    border-color: var(--isga-red);
    transform: translateY(-2px);
}

.venue-year {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: var(--isga-red);
    font-weight: 600;
    margin-bottom: 8px;
}

.venue-name {
    font-size: 16px;
    color: var(--white);
    line-height: 1.4;
}

.isga-footer-note {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(200, 16, 46, 0.2);
}

.isga-link {
    color: var(--isga-red);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.isga-link:hover {
    color: var(--isga-navy);
    text-decoration: underline;
}

/* Upgame for ISGA Section */
.section-upgame-isga {
    background: linear-gradient(180deg, rgba(0, 59, 92, 0.05) 0%, transparent 50%, rgba(200, 16, 46, 0.03) 100%);
}

.upgame-isga-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 24px;
    color: var(--isga-red);
    margin-bottom: 48px;
    font-weight: 400;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.partnership-card {
    background: rgba(0, 59, 92, 0.1);
    padding: 40px 32px;
    border-radius: 16px;
    border: 2px solid rgba(200, 16, 46, 0.2);
    transition: var(--transition-smooth);
}

.partnership-card:hover {
    border-color: var(--isga-red);
    background: rgba(0, 59, 92, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 48px;
    color: var(--white);
}

.partnership-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: var(--isga-red);
    margin-bottom: 16px;
    font-weight: 400;
}

.partnership-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    font-weight: 400;
}

.benefits-section {
    background: rgba(200, 16, 46, 0.05);
    padding: 48px 40px;
    border-radius: 16px;
    border-left: 4px solid var(--isga-red);
    margin-bottom: 48px;
}

.benefits-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: var(--isga-red);
    margin-bottom: 32px;
    font-weight: 400;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-item i {
    color: var(--isga-red);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item span {
    font-size: 18px;
    line-height: 1.6;
    color: var(--white);
    font-weight: 400;
}

.marketing-cta {
    text-align: center;
    padding-top: 32px;
    border-top: 2px solid rgba(200, 16, 46, 0.2);
}

.marketing-text {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 32px;
    font-weight: 400;
}

.marketing-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    background: transparent;
    border: 2px solid var(--isga-red);
    color: var(--isga-red);
}

.secondary-button:hover {
    background: var(--isga-red);
    color: var(--white);
    border-color: var(--isga-red);
}

/* Community Section */
.section-community {
    position: relative;
}

.section-community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 800px;
    height: 2px;
    background: var(--isga-red);
    box-shadow: 0 0 12px rgba(200, 16, 46, 0.6), 0 0 24px rgba(200, 16, 46, 0.3);
    transition: transform 1s ease-out;
}

.section-community.divider-animate::before {
    transform: translateX(-50%) scaleX(1);
}

/* Community Logo */
.community-logo {
    display: block;
    margin: 0 auto 40px;
    height: 120px;
    width: auto;
}

.community-image {
    width: 100%;
    max-width: 700px;
    height: 350px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    margin: 0 auto 40px;
    display: block;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--dark-gray);
    border-left: 4px solid var(--isga-red);
    margin: 60px 0;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-description h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--white);
}

.stat-description p {
    font-size: 18px;
    color: var(--white);
    line-height: 1.8;
}

/* Coaches Section */
.section-coaches {
    background: var(--white);
    padding: 80px 0;
}

.coaches-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coaches-upgame-logo {
    height: 60px;
    width: auto;
    margin: 0 auto 40px;
    display: block;
}

.coaches-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.3;
}

.coaches-subtitle {
    font-size: 20px;
    color: var(--medium-gray);
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
}

.coaches-logos {
    margin-top: 48px;
    padding: 20px 0;
    overflow: hidden;
    width: 100%;
}

.logos-scroll {
    display: flex;
    gap: 0;
    animation: scroll-logos 20s linear infinite;
    width: fit-content;
}

.logos-strip {
    height: 100px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 59, 92, 0.05) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--black);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

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

.footer-logos {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    height: 50px;
    width: auto;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.footer-logo:hover {
    opacity: 1;
}

.footer-text {
    color: var(--medium-gray);
    font-size: 14px;
}

/* Animations Disabled */

/* Responsive Design */
@media (max-width: 968px) {
    .logos-strip {
        height: 80px;
    }
    
    .split-content,
    .stats-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .split-content.reverse {
        flex-direction: column;
    }
    
    .feature-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .content-text h3 {
        font-size: 28px;
    }
    
    .content-visual {
        order: -1;
    }
    
    .image-placeholder {
        min-height: 300px;
        padding: 40px 30px;
    }
    
    .image-placeholder i {
        font-size: 60px;
    }
    
    .stat-number {
        font-size: 80px;
    }
}

@media (max-width: 968px) {
    .section-image {
        max-width: 320px;
    }
    
    .section-image-small {
        max-width: 230px;
    }
    
    .section-image-medium {
        max-width: 340px;
    }
    
    .hero-visual {
        height: 280px;
    }
}

@media (max-width: 640px) {
    .section-image {
        max-width: 280px;
    }
    
    .section-image-small {
        max-width: 200px;
    }
    
    .section-image-medium {
        max-width: 280px;
    }
    
    .hero-visual {
        height: 220px;
    }
    
    /* Center align text on mobile */
    .content-text {
        text-align: center;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .isga-content {
        max-width: 320px;
    }
    
    .coaches-content {
        max-width: 320px;
    }
    
    .hero-content-centered {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .centered-text {
        max-width: 320px;
    }
    
    .feature-title {
        text-align: center;
    }
    
    .feature-badges {
        justify-content: center;
    }
    
    .navbar {
        padding: 16px 0;
    }
    
    .logo {
        height: 50px;
    }
    
    .logo-fcg {
        height: 50px;
    }
    
    .logo-upgame {
        height: 42px;
    }
    
    .logo-divider {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .cta-button.hero-cta {
        padding: 14px 36px;
        font-size: 16px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    .content-text h3 {
        font-size: 26px;
    }
    
    .content-text p {
        font-size: 16px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
    
    .process-flow {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .process-flow .fa-arrow-right {
        transform: rotate(90deg);
    }
    
    .stat-number {
        font-size: 60px;
    }
    
    .community-logo {
        height: 80px;
        margin-bottom: 32px;
    }
    
    .community-image {
        max-width: 100%;
        height: 280px;
    }
    
    .venues-section {
        padding: 24px;
    }
    
    .venues-section h3 {
        font-size: 24px;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .coaches-upgame-logo {
        height: 50px;
        margin-bottom: 32px;
    }
    
    .coaches-title {
        font-size: 28px;
    }
    
    .coaches-subtitle {
        font-size: 16px;
    }
    
    .coaches-logos {
        padding: 10px 0;
    }
    
    .logos-strip {
        height: 60px;
    }
    
    .benefits-section {
        padding: 32px 24px;
    }
    
    .benefits-section h3 {
        font-size: 28px;
    }
    
    .marketing-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .secondary-button {
        width: 100%;
        max-width: 300px;
    }
    
    .coaches-upgame-logo {
        height: 50px;
        margin-bottom: 32px;
    }
    
    .coaches-title {
        font-size: 32px;
    }
    
    .coaches-subtitle {
        font-size: 18px;
    }
    
}



/* Print Styles */
@media print {
    .navbar,
    .cta-button {
        display: none;
    }
}
