:root{

--ttg-gold:#D4AF37;
--ttg-black:#111111;
--ttg-white:#FFFFFF;
--ttg-light:#F8F8F8;
--ttg-grey:#666666;

--radius:12px;

--shadow:0 10px 30px rgba(0,0,0,.08);

}

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

body{
    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background:var(--ttg-light);
    color:var(--ttg-black);
    line-height:1.6;
}

nav{
    background:rgba(17,24,39,.95);
    backdrop-filter:blur(10px);

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 50px;

    position:sticky;
    top:0;

    z-index:1000;
}

.logo{

    font-size:30px;

    font-weight:800;

    color:#ffffff;

    letter-spacing:1px;

    cursor:pointer;

}

.menu a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    transition:.3s;
}

.menu a:hover{
    color:#F59E0B;
}

header{
    background:linear-gradient(135deg,#0F172A,#2563EB);
    color:white;
    text-align:center;
    padding:120px 20px;
}

header h1{
    font-size:56px;
    margin-bottom:20px;
}

header p{
    font-size:22px;
    max-width:750px;
    margin:auto;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:#F59E0B;
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:all .3s ease;
    box-shadow:0 8px 20px rgba(245,158,11,.35);
}

.btn:hover{
    background:#D97706;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(245,158,11,.45);
}

.btn:hover{
    background:#d97706;
}

section{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}
.card{
    background:white;
    padding:30px;
    border-radius:var(--radius);
    margin-bottom:25px;
    box-shadow:var(--shadow);
    transition:all .35s ease;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.card h2{
    margin-bottom:15px;
}

.card h2{
    margin-bottom:15px;
}

footer{
    background:#111827;
    color:white;
    text-align:center;
    padding:40px;
}
/* ================= HERO ================= */

.hero{
    background:
        linear-gradient(rgba(15,23,42,.88), rgba(37,99,235,.88)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80");

    background-size:cover;
    background-position:center;

    color:white;
    text-align:center;
    padding:140px 20px;
}

.hero-content{

    max-width:900px;

    margin:auto;

}

.hero h1{

    font-size:60px;

    margin-bottom:10px;

}

.hero h2{

    color:#F59E0B;

    margin-bottom:20px;

    font-size:34px;

}

.hero p{

    font-size:22px;

}

.hero-text{

    max-width:750px;

    margin:auto;

    line-height:1.8;

    margin-top:20px;

}

.hero-buttons{

    margin-top:40px;

}

.hero-buttons .btn{

    margin:10px;

}
/* ===== Statistics ===== */

.stats{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));

    gap:25px;

    padding:60px 20px;

    background:#0F172A;

    color:white;

    text-align:center;

}

.stat-box{

    padding:30px;

}

.stat-box h2{

    font-size:48px;

    color:#F59E0B;

    margin-bottom:10px;

}

.stat-box p{

    font-size:20px;

}
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 20px;
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
}

.hero-content{
    max-width:900px;
}

.hero-tag{
    color:#f59e0b;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero h1{
    font-size:4rem;
    margin:25px 0;
    line-height:1.1;
}

.hero p{
    font-size:1.3rem;
    color:#cbd5e1;
    max-width:700px;
    margin:auto;
}

.hero-buttons{
    margin-top:40px;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    margin:10px;
    transition:.3s;
}

.btn-primary{
    background:#f59e0b;
    color:#000;
    font-weight:bold;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid white;
    color:white;
}

.btn-secondary:hover{
    background:white;
    color:#0f172a;
}
.search-box{
display:flex;
justify-content:center;
align-items:center;
gap:10px;
margin:30px 0;
flex-wrap:wrap;
}

.search-box input{
width:320px;
padding:15px;
border-radius:10px;
border:none;
font-size:16px;
outline:none;
}

.search-box button{
padding:15px 25px;
border:none;
border-radius:10px;
cursor:pointer;
background:#f4b400;
color:#000;
font-weight:bold;
transition:.3s;
}

.search-box button:hover{
transform:translateY(-2px);
opacity:.9;
}
.theme-toggle{
display:flex;
justify-content:flex-end;
padding:20px 40px;
}

.theme-toggle button{
background:var(--ttg-black);
color:var(--ttg-white);
border:none;
padding:12px 20px;
border-radius:var(--radius);
cursor:pointer;
font-weight:bold;
box-shadow:var(--shadow);
transition:var(--transition);
}

.theme-toggle button:hover{
transform:translateY(-2px);
background:var(--ttg-gold);
color:var(--ttg-black);
}
.dark-mode{
background:#121212;
color:#f5f5f5;
}

.dark-mode nav{
background:#1b1b1b;
}

.dark-mode .card{
background:#1f1f1f;
color:#f5f5f5;
}

.dark-mode .hero{
background:#181818;
}

.dark-mode a{
color:var(--ttg-gold);
}
#loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:var(--ttg-black);
color:var(--ttg-white);
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
z-index:9999;
text-align:center;
transition:opacity .8s ease, visibility .8s ease;
}

#loader h1{
font-size:3rem;
color:var(--ttg-gold);
margin-bottom:20px;
}

#loader p{
font-size:1.2rem;
margin:6px 0;
}

#loader.hidden{
opacity:0;
visibility:hidden;
}