/* 
   AURORA PUBLIC DESIGN SYSTEM 2026
   TAYO HOLDINGS OFFICIAL STYLE
*/

:root {
    /* Aurora Primary Palette */
    --gold: #B08A4A;
    --gold-bright: #D4AF37;
    --charcoal: #0F0F0F;
    --dark-grey: #1A1A1A;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    
    /* Transitions */
    --transit: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --gold-gradient: linear-gradient(135deg, #B08A4A, #D4AF37, #B08A4A);
    --glass-text: rgba(255, 255, 255, 0.95);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--charcoal);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .outfit-bold {
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    letter-spacing: -1px;
}

h2 {
    font-size: 3rem;
    font-weight: 800;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navbar Aurora Style */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transit);
    background: transparent;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo img {
    height: 35px;
    transition: var(--transit);
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    transition: var(--transit);
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--gold);
}

/* Aurora Buttons */
.btn-aurora {
    padding: 16px 35px;
    border-radius: 50px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transit);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-aurora:hover {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 10px 30px rgba(176, 138, 74, 0.3);
    transform: translateY(-3px);
}

.btn-aurora.fill {
    background: var(--gold);
    color: #fff;
}

/* Hero Section */
.aurora-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(176, 138, 74, 0.15), transparent 60%);
}

.hero-visual {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 60%;
    height: 80%;
    background: linear-gradient(135deg, rgba(176,138,74,0.1), transparent);
    border-radius: 100px;
    transform: rotate(-15deg);
    z-index: 0;
    border: 1px solid rgba(176, 138, 74, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 25px;
    display: block;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transit);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
    font-weight: 300;
}

/* Sub-Hero Cinematic Styling */
.aurora-sub-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(176, 138, 74, 0.08), transparent 50%);
    padding-top: 120px;
}

.aurora-sub-hero .hero-visual {
    width: 35%;
    height: 60%;
    right: -5%;
    top: 10%;
    opacity: 0.4;
    transform: rotate(-10deg);
}

.sub-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
}

.sub-hero-content h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin: 15px 0;
    font-weight: 800;
    letter-spacing: -2px;
    font-family: 'Outfit', sans-serif;
}

.sub-hero-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 650px;
    font-weight: 300;
    margin-bottom: 20px;
}

.sub-hero-content span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    display: block;
}
.section {
    padding: 150px 0;
}

.section-title {
    margin-bottom: 80px;
    text-align: center;
}

.section-title span {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    margin-bottom: 15px;
    display: block;
}

.section-title h2 {
    font-size: 4rem;
    letter-spacing: -2px;
    line-height: 1;
    font-weight: 800;
}

/* Aurora Cards */
.aurora-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px;
    transition: var(--transit);
    position: relative;
    overflow: hidden;
}

.aurora-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(176, 138, 74, 0.3);
    transform: translateY(-15px);
}

/* Grid Card Utility */
.card-grid-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    padding: 0 !important;
    overflow: hidden;
}

.card-grid-layout .card-image {
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.card-grid-layout .card-body {
    padding: 60px;
}

@media (max-width: 992px) {
    .card-grid-layout {
        grid-template-columns: 1fr !important;
    }
    .card-grid-layout .card-image {
        min-height: 300px;
    }
    .card-grid-layout .card-body {
        padding: 40px;
    }
    .card-grid-layout .order-first {
        order: -1 !important;
    }
}
.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.sector-card .icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.sector-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.sector-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Aurora Footer - Ultra Premium */
.aurora-footer {
    padding: 120px 0 60px;
    background: #080808;
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.aurora-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    margin-bottom: 35px;
    font-weight: 800;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 18px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transit);
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transit);
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(176,138,74,0.05);
    transform: translateY(-5px);
}

/* Narrative & Stats Components */
.narrative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stats-container {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    color: var(--gold);
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 700;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transition: all 1s ease-out;
}

.reveal.visible {
    opacity: 1;
    animation: fadeInUp 1s forwards;
}

/* Responsive Adjustments & Mobile Menu */
.mobile-toggle {
    display: none;
    width: 45px;
    height: 45px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transit);
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.mobile-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .navbar { padding: 15px 0; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    
    .narrative-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .stats-container {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .sector-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .navbar { padding: 20px 0; }
    .mobile-toggle { display: flex; order: 3; }
    .nav-actions { display: none; } /* Hide heavy buttons on mobile nav */
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: var(--transit);
        z-index: 999;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
        box-shadow: -20px 0 60px rgba(0,0,0,0.8);
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero-content h1 { line-height: 1.1; margin-bottom: 20px; }
    .aurora-sub-hero { padding-top: 100px; min-height: 50vh; }
    .sub-hero-content h1 { line-height: 1.1; margin-bottom: 15px; }

    .sector-grid { grid-template-columns: 1fr; }
    .container { padding: 0 25px; }
    .section { padding: 70px 0; }
    .section-title h2 { font-size: 2.5rem; letter-spacing: -1px; }
    
    .aurora-card { padding: 35px 25px; }
    
    /* Partners Layout Fix */
    .aurora-card[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }
    .aurora-card[style*="order: 1"] div {
        order: unset !important;
    }
    
    /* Story Page Numbers */
    div[style*="display: flex; gap: 30px"] {
        flex-direction: column;
        gap: 20px !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.5rem; }
    .section-title h2 { font-size: 2rem; }
    .hero-tagline { font-size: 0.75rem; letter-spacing: 3px; }
    .btn-aurora { width: 100%; justify-content: center; }
}