/* ===========================
   Shakeel Rudaulivi Website
   =========================== */

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

body{
font-family:'Poppins',sans-serif;
background:#0d0d0d;
color:#f5f5f5;
line-height:1.8;
}

/* Header */

header{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:rgba(0,0,0,.85);
backdrop-filter:blur(12px);
z-index:1000;
border-bottom:1px solid #b8860b;
}

.logo{
font-family:'Cinzel',serif;
font-size:28px;
color:#d4af37;
font-weight:bold;
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:white;
font-size:16px;
transition:.3s;
}

nav a:hover{
color:#d4af37;
}

/* Hero */

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:120px 8%;
background:linear-gradient(to right,#0b0b0b,#1b1b1b);
}

.hero-text{
max-width:600px;
}

.hero h1{
font-family:'Cinzel',serif;
font-size:60px;
color:#d4af37;
margin-bottom:15px;
}

.hero h2{
font-size:30px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
color:#ccc;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:14px 35px;
background:#d4af37;
color:#111;
font-weight:bold;
text-decoration:none;
border-radius:40px;
transition:.3s;
}

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

.hero-image img{
width:360px;
border-radius:18px;
box-shadow:0 0 40px rgba(212,175,55,.45);
}

/* Sections */

section{
padding:90px 8%;
}

section h2{
font-size:40px;
color:#d4af37;
margin-bottom:20px;
font-family:'Cinzel',serif;
}

section p{
font-size:18px;
color:#ddd;
}

/* Contact */

#contact p{
margin:12px 0;
}

/* Footer */

footer{
text-align:center;
padding:30px;
background:#000;
border-top:1px solid #d4af37;
color:#aaa;
}

/* Scrollbar */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-thumb{
background:#d4af37;
border-radius:20px;
}

::-webkit-scrollbar-track{
background:#111;
}

/* Responsive */

@media(max-width:900px){

header{
flex-direction:column;
gap:15px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.hero{
flex-direction:column;
text-align:center;
}

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

.hero h2{
font-size:24px;
}

.hero-image img{
width:260px;
margin-top:40px;
}

section h2{
font-size:30px;
}

}
.about-container{
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
margin-top:40px;
}

.author-photo{
width:280px;
border-radius:20px;
box-shadow:0 0 30px rgba(212,175,55,.5);
}

.about-text{
flex:1;
}

.about-text h3{
color:#d4af37;
font-size:32px;
margin-bottom:15px;
}

.about-text p{
font-size:18px;
line-height:1.8;
}

@media(max-width:900px){

.about-container{
flex-direction:column;
text-align:center;
}

.author-photo{
width:220px;
}

}
.gallery{

display:grid;

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

gap:25px;

margin-top:40px;

}

.gallery img{

width:100%;

border-radius:18px;

cursor:pointer;

transition:.4s;

box-shadow:0 0 25px rgba(212,175,55,.25);

}

.gallery img:hover{

transform:scale(1.05);

box-shadow:0 0 35px rgba(212,175,55,.6);

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

.contact-card{
background:#181818;
padding:25px;
border-radius:18px;
text-decoration:none;
color:white;
border:1px solid #d4af37;
transition:.4s;
}

.contact-card:hover{
transform:translateY(-8px);
box-shadow:0 0 30px rgba(212,175,55,.5);
}

.contact-card h3{
color:#d4af37;
margin-bottom:10px;
}
#quote{

text-align:center;

background:#111;

padding:70px 10%;

}

#quote blockquote{

font-size:30px;

font-style:italic;

color:#D4AF37;

line-height:1.8;

margin-bottom:20px;

}

#quote p{

font-size:20px;

color:#ccc;

}
/* ===== Poetry Section ===== */

#poetry{
padding:80px 8%;
background:#101010;
}

#poetry h2{
text-align:center;
font-size:42px;
color:#D4AF37;
margin-bottom:40px;
}

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

.poetry-card{
background:#1a1a1a;
padding:25px;
border-radius:15px;
border:1px solid rgba(212,175,55,.4);
transition:.3s;
box-shadow:0 10px 25px rgba(0,0,0,.3);
}

.poetry-card:hover{
transform:translateY(-8px);
border-color:#D4AF37;
box-shadow:0 15px 35px rgba(212,175,55,.25);
}

.poetry-card h3{
font-size:28px;
color:#D4AF37;
margin-bottom:15px;
text-align:right;
}

.poetry-card p{
font-size:16px;
line-height:1.8;
color:#ddd;
margin-bottom:20px;
}

.poetry-card a{
display:inline-block;
padding:10px 20px;
background:#D4AF37;
color:#111;
text-decoration:none;
border-radius:30px;
font-weight:bold;
transition:.3s;
}

.poetry-card a:hover{
background:white;
}

@media(max-width:768px){

#poetry h2{
font-size:32px;
}

.poetry-card{
padding:20px;
}

.poetry-card h3{
font-size:24px;
}

}
/* ===== Video Section ===== */

#videos{
padding:80px 8%;
text-align:center;
}

#videos h2{
color:#D4AF37;
margin-bottom:35px;
}

.video-box{
display:flex;
justify-content:center;
}

.video-box iframe{
max-width:100%;
border:none;
border-radius:18px;
box-shadow:0 0 25px rgba(212,175,55,.4);
}
/* ===== Book Details ===== */

#book-details{
padding:80px 8%;
}

.details-card{
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
background:#151515;
padding:30px;
border-radius:20px;
border:1px solid #D4AF37;
}

.details-card img{
width:220px;
border-radius:15px;
box-shadow:0 0 20px rgba(212,175,55,.4);
}

.details-text{
flex:1;
}

.details-text h3{
font-size:32px;
color:#D4AF37;
margin-bottom:20px;
}

.details-text p{
margin-bottom:12px;
line-height:1.8;
}

@media(max-width:768px){

.details-card{
flex-direction:column;
text-align:center;
}

.details-card img{
width:180px;
}

}
#topBtn{
position:fixed;
bottom:20px;
right:20px;
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#D4AF37;
color:#000;
font-size:24px;
cursor:pointer;
box-shadow:0 0 15px rgba(212,175,55,.5);
transition:.3s;
}

#topBtn:hover{
transform:scale(1.1);
}
