/* ===========================
   أبو عبر - Classic Website
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Cairo',sans-serif;
    background:#0c0c0c;
    color:#fff;
    overflow-x:hidden;

}

/*==========================
Navigation
==========================*/

nav{

    position:fixed;
    top:0;
    right:0;
    left:0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 8%;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(212,175,55,.15);

    z-index:9999;

}

.logo{

    font-size:34px;
    font-weight:900;
    color:#d4af37;
    letter-spacing:2px;

}

nav ul{

    display:flex;
    gap:35px;
    list-style:none;

}

nav ul li a{

    text-decoration:none;
    color:white;
    transition:.3s;

}

nav ul li a:hover{

    color:#d4af37;

}

/*==========================
Hero
==========================*/

.hero{

    position:relative;

    width:100%;
    height:100vh;

    background-image:url("../images/hero.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(rgba(0,0,0,.35),
                    rgba(0,0,0,.65));

}

.hero-content{

    position:relative;
    z-index:5;

}

.hero h1{

    font-size:90px;
    color:#d4af37;

    font-weight:900;

    text-shadow:
    0 0 25px rgba(0,0,0,.7);

}

.hero p{

    margin-top:15px;

    font-size:28px;

    color:#efefef;

}

.btn{

    display:inline-block;

    margin-top:45px;

    padding:15px 45px;

    border:2px solid #d4af37;

    color:#d4af37;

    text-decoration:none;

    border-radius:40px;

    transition:.35s;

}

.btn:hover{

    background:#d4af37;

    color:#111;

}

/*==========================
Divider
==========================*/

.divider{

    display:flex;
    justify-content:center;
    align-items:center;

    gap:20px;

    margin:70px 0;

    color:#d4af37;

    font-size:34px;
    font-weight:700;

}

.divider span{

    width:120px;
    height:2px;

    background:#d4af37;

}

/*==========================
Gallery
==========================*/

.gallery{

    width:90%;
    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

    margin-bottom:80px;

}

.card{

    background:#151515;

    border-radius:18px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,.18);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:
    0 20px 40px rgba(0,0,0,.45);

}

.card img{

    width:100%;
    height:260px;

    object-fit:cover;

}

.card-text{

    padding:25px;

}

.card-text h2{

    color:#d4af37;

    margin-bottom:12px;

}

.card-text p{

    color:#ccc;

    line-height:1.8;

}

/*==========================
Club
==========================*/

.club{

    width:80%;

    margin:auto;

    text-align:center;

    padding:90px 0;

}

.club h2{

    color:#d4af37;

    font-size:46px;

    margin-bottom:30px;

}

.club p{

    font-size:20px;

    line-height:2.2;

    color:#ddd;

}

/*==========================
Contact
==========================*/

.contact{

    background:#101010;

    padding:80px 0;

    text-align:center;

}

.contact h2{

    color:#d4af37;

    margin-bottom:35px;

    font-size:38px;

}

.social{

    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;

}

.social a{

    color:white;

    text-decoration:none;

    border:1px solid rgba(212,175,55,.3);

    padding:12px 28px;

    border-radius:40px;

    transition:.3s;

}

.social a:hover{

    background:#d4af37;

    color:#111;

}

/*==========================
Footer
==========================*/

footer{

    padding:45px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    color:#999;

}

footer h3{

    color:#d4af37;

    font-size:32px;

    margin-bottom:15px;

}

/*==========================
Animations
==========================*/

.card{

    animation:fadeUp .8s ease;

}

.hero-content{

    animation:fadeIn 1.4s ease;

}

@keyframes fadeIn{

from{

opacity:0;
transform:translateY(40px);

}

to{

opacity:1;
transform:translateY(0);

}

}

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(30px);

}

to{

opacity:1;
transform:translateY(0);

}

}

/*==========================
Responsive
==========================*/

@media(max-width:992px){

.hero h1{

font-size:70px;

}

.hero p{

font-size:22px;

}

.gallery{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

nav{

flex-direction:column;
gap:15px;

}

nav ul{

gap:15px;
flex-wrap:wrap;
justify-content:center;

}

.hero h1{

font-size:52px;

}

.hero p{

font-size:18px;

}

.divider{

font-size:24px;

}

.divider span{

width:50px;

}

.club{

width:90%;

}

.club p{

font-size:18px;

}

}