/* ===============================
   HOME - Central Adrogue
   Colors: #dc2626 (red), #eab308 (yellow), #0f0f0f/#1a1a1a (darks)
================================ */

/* ===============================
   HERO SECTION
================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #0f0f0f;
    padding: 6rem 0 4rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(220, 38, 38, 0.15);
    top: -150px;
    left: -100px;
    animation: float 10s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(234, 179, 8, 0.08);
    bottom: -100px;
    right: -100px;
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.logo-container {
    position: relative;
    display: inline-block;
}

.logo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.35), transparent 70%);
    filter: blur(25px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.gym-logo {
    position: relative;
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.4));
    transition: transform 0.3s ease;
}

.gym-logo:hover {
    transform: scale(1.05);
}

/* Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.gradient-text {
    background: linear-gradient(135deg, #dc2626, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 480px;
    margin: 0;
}

/* Welcome */
.hero-welcome {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.welcome-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #dc2626, #eab308);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: #fff;
    flex-shrink: 0;
}

.welcome-text {
    display: flex;
    flex-direction: column;
}

.welcome-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.welcome-name {
    font-size: 1rem;
    color: #ffffff;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.btn-hero-primary,
.btn-hero-outline,
.btn-hero-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-hero-primary {
    background: #dc2626;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.35);
}

.btn-hero-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.45);
    color: #ffffff;
}

.btn-hero-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-hero-accent {
    background: #eab308;
    color: #0f0f0f;
    border: none;
    box-shadow: 0 4px 20px rgba(234, 179, 8, 0.25);
}

.btn-hero-accent:hover {
    background: #ca8a04;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.35);
    color: #0f0f0f;
}

/* ===============================
   STATS SECTION
================================ */
.stats-section {
    background: #0f0f0f;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* ===============================
   SECTION HEADERS
================================ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 50px;
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 0.75rem;
}

.section-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===============================
   FEATURES SECTION
================================ */
.features-section {
    background: linear-gradient(180deg, #0f0f0f 0%, #141414 100%);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    border-color: rgba(220, 38, 38, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: rgba(220, 38, 38, 0.12);
    color: #ef4444;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #dc2626;
    color: #ffffff;
    transform: scale(1.08);
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.625rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.55;
    margin: 0;
}

/* ===============================
   GALLERY SECTION
================================ */
.gallery-section {
    background: #141414;
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 4/3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    color: #ffffff;
}

.gallery-badge {
    align-self: flex-start;
    padding: 0.3rem 0.75rem;
    background: #dc2626;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gallery-info {
    transform: translateY(8px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.85;
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.gallery-info p {
    font-size: 0.8rem;
    opacity: 0.65;
    margin: 0;
    line-height: 1.4;
}

/* ===============================
   CTA SECTION
================================ */
.cta-section {
    background: #0f0f0f;
    padding: 5rem 0;
}

.cta-card {
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 20px;
    padding: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}

.cta-desc strong {
    color: #eab308;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #0f0f0f;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
    color: #0f0f0f;
}

/* ===============================
   FOOTER INFO
================================ */
.footer-info {
    background: #141414;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateY(-4px);
}

.info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ef4444;
}

.info-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.375rem;
}

.info-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    .hero-section {
        padding: 4rem 0 3rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .gym-logo {
        width: 110px;
    }

    .stats-row {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        aspect-ratio: 16/10;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .btn-hero-primary,
    .btn-hero-outline,
    .btn-hero-accent {
        justify-content: center;
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 2rem 1.25rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}
