/* ==========================================================================
   TheAbiodunAb Homepage Styles
   Loaded only on the front page via functions.php
   ========================================================================== */

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

html.taa-home-lock,
body.taa-home {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body.taa-home {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100vh;
}

/* Subtle orange glow overlay on black */
body.taa-home::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 80% 15%, rgba(255, 140, 66, 0.10) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(255, 107, 53, 0.07) 0%, transparent 45%);
    z-index: -2;
    pointer-events: none;
}

/* Navigation */
.taa-home .taa-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 50;
}

.taa-home .taa-logo {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #FF8C42, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.taa-home .taa-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.taa-home .taa-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.taa-home .taa-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF8C42, #FF6B35);
    transition: width 0.3s ease;
}

.taa-home .taa-nav a:hover::after {
    width: 100%;
}

.taa-home .taa-nav a:hover {
    color: #FF8C42;
}

/* Main Container */
.taa-home .main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    overflow: hidden;
    position: relative;
}

/* Animated Background Blobs */
.taa-home .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.14;
    animation: taa-blob 8s infinite;
    z-index: -1;
}

.taa-home .blob-1 {
    width: 380px;
    height: 380px;
    background: #FF8C42;
    top: -120px;
    right: -100px;
    animation-delay: 0s;
}

.taa-home .blob-2 {
    width: 300px;
    height: 300px;
    background: #FF6B35;
    bottom: -80px;
    left: -60px;
    animation-delay: 3s;
}

@keyframes taa-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Hero Content */
.taa-home .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.taa-home .content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.taa-home .content-left h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    color: #FFFFFF;
}

.taa-home .content-left h1 .accent {
    background: linear-gradient(135deg, #FF8C42, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.taa-home .content-left .label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #FF8C42;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    font-weight: 700;
    background: rgba(255, 140, 66, 0.12);
    padding: 5px 12px;
    border-radius: 20px;
    width: fit-content;
}

.taa-home .content-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.taa-home .cta-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

.taa-home .btn {
    padding: 11px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.taa-home .btn-primary {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

.taa-home .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.5);
}

.taa-home .btn-secondary {
    background: rgba(255, 140, 66, 0.08);
    color: #FF8C42;
    border: 1.5px solid #FF8C42;
}

.taa-home .btn-secondary:hover {
    background: rgba(255, 140, 66, 0.16);
    border-color: #FF6B35;
    transform: translateY(-3px);
}

/* Dimension Cards Grid */
.taa-home .cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    perspective: 1000px;
}

.taa-home .dimension-card {
    height: 150px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.taa-home .dimension-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.18), rgba(255, 107, 53, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.taa-home .dimension-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 140, 66, 0.5);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    transform: translateY(-8px) rotateX(5deg);
}

.taa-home .dimension-card:hover::before {
    opacity: 1;
}

.taa-home .card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.taa-home .card-icon {
    font-size: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.16), rgba(255, 107, 53, 0.08));
    color: #FF8C42;
    transition: all 0.4s ease;
}

.taa-home .dimension-card:hover .card-icon {
    transform: scale(1.12) rotate(8deg);
    background: linear-gradient(135deg, #FF8C42, #FF6B35);
    color: #FFFFFF;
}

.taa-home .card-title {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0.5rem 0 0.3rem 0;
    transition: color 0.3s ease;
}

.taa-home .dimension-card:hover .card-title {
    color: #FF8C42;
}

.taa-home .card-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.taa-home .dimension-card:hover .card-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Bar */
.taa-home .stats-bar {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem 1rem;
    position: relative;
    z-index: 10;
}

.taa-home .stat-item {
    text-align: center;
    min-width: 110px;
}

.taa-home .stat-number {
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF8C42, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.taa-home .stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.taa-home .stat-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 140, 66, 0.35), transparent);
    align-self: stretch;
}

/* Footer CTA */
.taa-home .footer-cta {
    padding: 1.1rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    position: relative;
    z-index: 50;
}

.taa-home .footer-cta > p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0.7rem;
}

.taa-home .footer-cta .footer-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.7rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .taa-home .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .taa-home .content-left h1 {
        font-size: 36px;
    }

    .taa-home .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html.taa-home-lock,
    body.taa-home {
        overflow: auto;
        height: auto;
    }

    .taa-home .taa-nav {
        padding: 1rem 1rem;
    }

    .taa-home .taa-nav ul {
        gap: 1rem;
    }

    .taa-home .taa-nav a {
        font-size: 12px;
    }

    .taa-home .main-container {
        padding: 1.5rem 1rem;
    }

    .taa-home .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .taa-home .content-left h1 {
        font-size: 30px;
    }

    .taa-home .content-left p {
        font-size: 13px;
    }

    .taa-home .cards-grid {
        grid-template-columns: 1fr;
    }

    .taa-home .dimension-card {
        height: 130px;
        padding: 1rem;
    }

    .taa-home .stats-bar {
        gap: 1.25rem;
    }

    .taa-home .stat-divider {
        display: none;
    }

    .taa-home .cta-buttons {
        flex-wrap: wrap;
    }

    .taa-home .btn {
        font-size: 11px;
        padding: 9px 18px;
    }
}
