﻿/* ============================================================
   Dandelion System — golf-tournament.css
   Product page: Golf Tournament Scoring System + Live TV Scoreboard
   Prefix: gt-
   Accent: emerald green (golf) + cyan/purple gradient
   ============================================================ */

/* Local accent — green for the golf identity */
:root {
    --gt-green: #4ADE80;
    --gt-green-deep: #16A34A;
}

/* ---------- Shared section primitives ---------- */
.gt-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gt-section-eyebrow {
    display: inline-block;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.gt-section-h2 {
    color: var(--text-light);
    font-size: 34px;
    font-weight: 300;
    line-height: 1.25;
    margin: 0 0 18px;
    letter-spacing: 0.3px;
}

.gt-section-h2 strong {
    font-weight: 700;
    background: linear-gradient(135deg, var(--gt-green), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gt-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gt-green), var(--primary-color));
    border-radius: 2px;
    margin: 18px auto 0;
}

/* ---------- Buttons ---------- */
.gt-btn-glow,
.gt-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.6px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.gt-btn-glow {
    background: linear-gradient(135deg, var(--gt-green), var(--primary-color));
    color: #07201a;
    box-shadow: 0 0 22px rgba(74, 222, 128, 0.35);
}

.gt-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(74, 222, 128, 0.55);
}

.gt-btn-ghost {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.gt-btn-ghost:hover {
    border-color: var(--gt-green);
    color: var(--gt-green);
}

/* ============================================================
   SECTION 1 · HERO
   ============================================================ */
.gt-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 80px 24px 100px;
}

.gt-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.32) saturate(1.05);
    z-index: 0;
}

.gt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 30, 22, 0.85) 0%, rgba(15, 35, 50, 0.75) 100%);
    z-index: 1;
}

.gt-hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(74, 222, 128, 0.22), transparent 60%);
}

.gt-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 940px;
}

.gt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(74, 222, 128, 0.12);
    color: var(--gt-green);
    border: 1px solid rgba(74, 222, 128, 0.35);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.gt-product-name {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 22px;
    padding-bottom: 18px;
    position: relative;
    display: inline-block;
}

.gt-product-name::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gt-green), var(--primary-color));
    border-radius: 2px;
}

.gt-hero h1 {
    color: white;
    font-size: 46px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 22px;
    letter-spacing: 0.3px;
}

.gt-hero h1 strong {
    font-weight: 700;
    background: linear-gradient(135deg, #7CFFC0, #6FE3FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gt-hero-sub {
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.65;
    margin: 0 auto 36px;
    max-width: 760px;
}

.gt-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.gt-scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: gt-bounce 2s infinite;
}

@keyframes gt-bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -8px); }
}

/* ============================================================
   SECTION 3 · KEY BENEFITS
   ============================================================ */
.gt-benefits {
    background: var(--darker-bg);
    padding: 80px 0;
}

.gt-benefits-header {
    text-align: center;
    margin-bottom: 50px;
}

.gt-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gt-benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gray);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.gt-benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--gt-green);
    box-shadow: 0 14px 35px rgba(74, 222, 128, 0.15);
}

.gt-benefit-card.highlight {
    background: linear-gradient(160deg, rgba(74, 222, 128, 0.10), rgba(0, 174, 239, 0.10)), var(--card-bg);
    border-color: rgba(74, 222, 128, 0.45);
    box-shadow: 0 10px 32px rgba(74, 222, 128, 0.18);
}

.gt-benefit-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFC76A, #FF8A3D);
    color: #2a1a00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 5px 14px;
    border-radius: 14px;
    text-transform: uppercase;
}

.gt-benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gt-green), var(--primary-color));
    color: #07201a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.25);
}

.gt-benefit-card h3 {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
}

.gt-benefit-card p {
    color: var(--text-gray);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   SECTION 4 · TABBED FEATURE EXPLORER
   ============================================================ */
.gt-features {
    background: var(--dark-bg);
    padding: 80px 0;
}

.gt-features-header {
    text-align: center;
    margin-bottom: 40px;
}

.gt-tab-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 35px;
    background: var(--card-bg);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid var(--border-gray);
    max-width: 950px;
}

.gt-tab {
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.gt-tab:hover {
    color: var(--text-light);
}

.gt-tab.active {
    background: linear-gradient(135deg, var(--gt-green), var(--primary-color));
    color: #07201a;
    box-shadow: 0 4px 14px rgba(74, 222, 128, 0.3);
}

.gt-tab-panels {
    max-width: 1100px;
    margin: 0 auto;
}

.gt-tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 45px;
    animation: gt-fadeIn 0.35s ease;
}

.gt-tab-panel.active {
    display: grid;
}

@keyframes gt-fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.gt-panel-text .label {
    color: var(--gt-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gt-panel-text h3 {
    color: var(--text-light);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 16px;
}

.gt-panel-text p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 18px;
}

.gt-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gt-checklist li {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.55;
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.gt-checklist li i {
    color: var(--gt-green);
    font-size: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

.gt-panel-visual {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    background: var(--darker-bg);
    position: relative;
    aspect-ratio: 4 / 3;
}

.gt-panel-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.gt-panel-visual-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 22px 18px 14px;
    text-align: center;
}

/* ============================================================
   SECTION 5 · SCREENSHOTS — See It in Action
   ============================================================ */
.gt-shots {
    background: var(--darker-bg);
    padding: 80px 0;
}

.gt-shots-header {
    text-align: center;
    margin-bottom: 50px;
}

.gt-shot-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-bottom: 30px;
}

.gt-shot-solo {
    display: flex;
    justify-content: center;
}

.gt-shot-solo .gt-shot {
    width: auto;
    max-width: 100%;
}

.gt-shot {
    margin: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.gt-shot:hover {
    transform: translateY(-3px);
    border-color: var(--gt-green);
    box-shadow: 0 14px 35px rgba(74, 222, 128, 0.12);
}

.gt-shot-frame {
    background: #0a0f15;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.gt-shot-duo .gt-shot-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.gt-shot-solo .gt-shot-frame {
    aspect-ratio: auto;
    display: block;
}

.gt-shot-solo .gt-shot-frame img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.gt-shot figcaption {
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 14px 16px;
    border-top: 1px solid var(--border-gray);
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 760px) {
    .gt-shot-duo { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 6 · PROCESS TIMELINE
   ============================================================ */
.gt-process {
    background: var(--dark-bg);
    padding: 80px 24px;
}

.gt-process-header {
    text-align: center;
    margin-bottom: 50px;
}

.gt-process-track {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}

.gt-process-track::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--gt-green), var(--primary-color));
    opacity: 0.3;
    z-index: 0;
}

.gt-process-step {
    background: var(--card-bg);
    border: 1px solid var(--border-gray);
    border-radius: 14px;
    padding: 28px 22px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.25s ease;
}

.gt-process-step:hover {
    transform: translateY(-4px);
    border-color: var(--gt-green);
}

.gt-process-num {
    width: 36px;
    height: 36px;
    margin: 0 auto 6px;
    background: linear-gradient(135deg, var(--gt-green), var(--primary-color));
    color: #07201a;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px var(--dark-bg);
}

.gt-process-icon {
    font-size: 28px;
    color: var(--gt-green);
    margin: 14px 0 12px;
}

.gt-process-step h4 {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.35;
}

.gt-process-step p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   SECTION 7 · AUDIENCE
   ============================================================ */
.gt-audience {
    background: var(--darker-bg);
    padding: 80px 0;
}

.gt-audience-header {
    text-align: center;
    margin-bottom: 45px;
}

.gt-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.gt-audience-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gray);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.25s ease;
}

.gt-audience-card:hover {
    transform: translateY(-4px);
    border-color: var(--gt-green);
    box-shadow: 0 10px 28px rgba(74, 222, 128, 0.12);
}

.gt-audience-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: var(--gt-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.gt-audience-card h4 {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
}

.gt-audience-card p {
    color: var(--text-gray);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   SECTION 8 · WHY
   ============================================================ */
.gt-why {
    background: var(--dark-bg);
    padding: 80px 0;
}

.gt-why-header {
    text-align: center;
    margin-bottom: 50px;
}

.gt-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.gt-why-item {
    background: var(--card-bg);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.gt-why-item:hover {
    transform: translateY(-3px);
    border-color: var(--gt-green);
}

.gt-why-item i {
    font-size: 22px;
    color: var(--gt-green);
    margin-bottom: 12px;
}

.gt-why-item h5 {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px;
}

.gt-why-item p {
    color: var(--text-gray);
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   SECTION 9 · FINAL CTA
   ============================================================ */
.gt-final-cta {
    background: linear-gradient(135deg, #0d2a1e 0%, #122e3a 60%, #1a2a4e 100%);
    padding: 90px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gt-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(74, 222, 128, 0.18), transparent 60%),
                radial-gradient(circle at 75% 40%, rgba(0, 174, 239, 0.16), transparent 55%);
    pointer-events: none;
}

.gt-final-cta-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gt-final-tag {
    display: inline-block;
    color: var(--gt-green);
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.gt-final-cta h2 {
    color: white;
    font-size: 38px;
    font-weight: 300;
    line-height: 1.25;
    margin: 0 0 18px;
}

.gt-final-cta h2 strong {
    font-weight: 700;
    background: linear-gradient(135deg, #7CFFC0, #6FE3FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gt-final-cta p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    margin: 0 auto 32px;
    max-width: 680px;
}

.gt-final-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .gt-hero h1 { font-size: 34px; }
    .gt-hero-sub { font-size: 16px; }
    .gt-section-h2 { font-size: 26px; }

    .gt-tab-panel { grid-template-columns: 1fr; padding: 30px; gap: 30px; }

    .gt-process-track { grid-template-columns: repeat(2, 1fr); }
    .gt-process-track::before { display: none; }

    .gt-final-cta h2 { font-size: 28px; }
}

@media (max-width: 560px) {
    .gt-hero { min-height: 540px; padding: 60px 18px 80px; }
    .gt-hero h1 { font-size: 28px; }
    .gt-eyebrow { font-size: 11px; padding: 6px 14px; }

    .gt-tab-bar { border-radius: 14px; }
    .gt-tab { font-size: 12.5px; padding: 9px 14px; }

    .gt-process-track { grid-template-columns: 1fr; }
    .gt-panel-text h3 { font-size: 22px; }
}
