
/*
Theme Name: Tahoon Final Premium
Author: OpenAI
Version: 10.0
*/

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&display=swap');

:root{
--dark:#0f172a;
--gold:#f59e0b;
--white:#ffffff;
--text:#334155;
--bg:#f8fafc;
}

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

body{
font-family:'Cairo',sans-serif;
direction:rtl;
background:var(--bg);
color:var(--text);
line-height:1.9;
}

.container{
width:92%;
max-width:1400px;
margin:auto;
}

header{
position:fixed;
top:0;
width:100%;
background:rgba(15,23,42,.95);
z-index:9999;
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
color:#fff;
font-size:34px;
font-weight:900;
text-decoration:none;
}

.menu ul{
display:flex;
gap:35px;
list-style:none;
}

.menu a{
color:#fff;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.menu a:hover{
color:var(--gold);
}

.hero{
height:100vh;
background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd');
background-size:cover;
display:flex;
align-items:center;
}

.hero-content{
max-width:760px;
color:#fff;
}

.hero h1{
font-size:82px;
line-height:1.1;
margin-bottom:25px;
font-weight:900;
}

.hero p{
font-size:24px;
margin-bottom:35px;
}

.btn{
display:inline-block;
padding:16px 34px;
background:var(--gold);
border-radius:12px;
text-decoration:none;
color:#fff;
font-weight:800;
}

.section{
padding:110px 0;
}

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

.title h2{
font-size:52px;
color:var(--dark);
margin-bottom:15px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.card{
background:#fff;
padding:40px;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.card h3{
font-size:28px;
margin-bottom:15px;
color:var(--dark);
}

.stats{
background:var(--dark);
color:#fff;
}

.stat{
text-align:center;
padding:40px;
background:#1e293b;
border-radius:24px;
}

.stat h3{
font-size:58px;
color:var(--gold);
}

footer{
background:#020617;
color:#fff;
padding:80px 0;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

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

.footer-grid a{
color:#cbd5e1;
text-decoration:none;
}

.mobile-btn{
display:none;
font-size:32px;
color:#fff;
cursor:pointer;
}

.mobile-menu{
display:none;
background:#111827;
padding:20px;
}

.mobile-menu.active{
display:block;
}

.mobile-menu ul{
list-style:none;
}

.mobile-menu li{
margin-bottom:15px;
}

.mobile-menu a{
color:#fff;
text-decoration:none;
font-size:18px;
}

@media(max-width:991px){

.menu{
display:none;
}

.mobile-btn{
display:block;
}

.hero h1{
font-size:46px;
}

.hero p{
font-size:18px;
}

}
