/* ===========================
   ALFAAZ OFFICIAL WEBSITE
=========================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Poppins',sans-serif;
    background:#0f0f0f;
    color:#ffffff;
    line-height:1.8;
}
/* Header */
header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#111;
    position:fixed;
    top:0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.5);
}
.logo h2{
    color:#d4af37;
    font-size:34px;
    font-weight:700;
}
nav ul{
    display:flex;
    list-style:none;
}
nav ul li{
    margin-left:30px;
}
nav ul li a{
    color:white;
    text-decoration:none;
    transition:.4s;
    font-size:17px;
}
nav ul li a:hover{
    color:#d4af37;
}
/* Hero */
.hero{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:140px 8%;
}
.hero-text{
    width:55%;
}
.hero-text h4{
    color:#d4af37;
    font-size:25px;
}
.hero-text h1{
    font-size:70px;
    margin:20px 0;
}
.hero-text p{
    font-size:19px;
    color:#ddd;
}
.hero-image{
    width:40%;
    text-align:center;
}
.hero-image img{
    width:380px;
    height:380px;
    border-radius:50%;
    object-fit:cover;
    border:8px solid #d4af37;
    box-shadow:0 0 40px rgba(212,175,55,.5);
}
/* Buttons */
.btn,
.btn2{
display:inline-block;
margin-top:35px;
padding:14px 35px;
border-radius:40px;
text-decoration:none;
font-weight:bold;
transition:.4s;
}
.btn{
background:#d4af37;
color:#111;
}
.btn:hover{
background:white;
}
.btn2{
border:2px solid #d4af37;
color:#d4af37;
margin-left:15px;
}
.btn2:hover{
background:#d4af37;
color:black;
}
/* Sections */
section{
padding:90px 8%;
}
.container{
max-width:1200px;
margin:auto;
}
section h2{
font-size:42px;
margin-bottom:30px;
color:#d4af37;
}
.about-short{
background:#181818;
}
.featured-book{
background:#111;
}
.book-box{
background:#222;
padding:40px;
border-radius:20px;
transition:.4s;
}
.book-box:hover{
transform:translateY(-8px);
box-shadow:0 0 30px rgba(212,175,55,.3);
}
/* ===========================
   STORY SECTION
=========================== */
.story-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}
.story-card{
background:#1b1b1b;
padding:30px;
border-radius:18px;
transition:.4s;
border:1px solid #333;
}
.story-card:hover{
transform:translateY(-10px);
border-color:#d4af37;
box-shadow:0 10px 30px rgba(212,175,55,.35);
}
.story-card h3{
color:#d4af37;
margin-bottom:15px;
font-size:24px;
}
.story-card p{
color:#ddd;
font-size:16px;
}
/* ===========================
   AWARDS
=========================== */
.awards{
background:#181818;
}
.awards ul{
list-style:none;
padding:0;
}
.awards ul li{
background:#202020;
padding:18px 25px;
margin-bottom:15px;
border-left:5px solid #d4af37;
border-radius:12px;
font-size:18px;
transition:.3s;
}
.awards ul li:hover{
transform:translateX(10px);
background:#2b2b2b;
}
/* ===========================
   CONTACT
=========================== */
.contact-home{
background:#101010;
text-align:center;
}
.contact-home p{
margin:12px 0;
font-size:18px;
color:#ddd;
}
/* ===========================
   FOOTER
=========================== */
footer{
background:#000;
padding:50px 8%;
text-align:center;
}
footer h2{
color:#d4af37;
margin-bottom:15px;
}
footer p{
color:#aaa;
}
/* ===========================
   MOBILE RESPONSIVE
=========================== */
@media(max-width:900px){
header{
flex-direction:column;
padding:20px;
}
nav ul{
flex-direction:column;
margin-top:20px;
text-align:center;
}
nav ul li{
margin:10px 0;
}
.hero{
flex-direction:column;
text-align:center;
padding-top:180px;
}
.hero-text{
width:100%;
}
.hero-image{
width:100%;
margin-top:40px;
}
.hero-image img{
width:280px;
height:280px;
}
.hero-text h1{
font-size:48px;
}
.hero-text p{
font-size:17px;
}
.btn2{
margin-left:0;
margin-top:15px;
display:block;
}
}
/* ===========================
SCROLL BAR
=========================== */
::-webkit-scrollbar{
width:10px;
}
::-webkit-scrollbar-thumb{
background:#d4af37;
border-radius:10px;
}
::-webkit-scrollbar-track{
background:#111;
}
/* ===========================
SMOOTH SCROLL
=========================== */
html{
scroll-behavior:smooth;
}
⸻