/* =====================================
D NEWDAWN - MAIN STYLESHEET
===================================== */

:root{
--gold:#d4af37;
--gold-light:#f5d76e;
--black:#080808;
--dark:#111111;
--light:#f8f6ef;
--gray:#999999;
--transition:0.4s ease;
}

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Montserrat',sans-serif;
background:var(--black);
color:white;
overflow-x:hidden;
line-height:1.7;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
color:white;
}

ul{
list-style:none;
}

/* =====================================
HEADER
===================================== */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,0.75);
backdrop-filter:blur(10px);
z-index:1000;
}

.logo{
font-size:32px;
font-weight:800;
color:var(--gold);
letter-spacing:2px;
}

nav ul{
display:flex;
gap:30px;
}

nav a{
font-size:15px;
font-weight:500;
transition:var(--transition);
}

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

/* =====================================
HERO VIDEO
===================================== */

.hero-video{
position:relative;
height:100vh;
overflow:hidden;
}

.hero-video video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.hero-video::before{
content:'';
position:absolute;
width:100%;
height:100%;
background:
linear-gradient(
rgba(0,0,0,0.45),
rgba(0,0,0,0.75));
z-index:1;
}

.hero-overlay{
position:relative;
z-index:2;
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:0 20px;
}

.hero-overlay h1{
font-size:90px;
font-weight:800;
color:white;
letter-spacing:4px;
margin-bottom:20px;
}

.hero-overlay h2{
color:var(--gold);
margin-bottom:25px;
font-size:50px;
font-weight:600;
}

.hero-overlay p{
max-width:800px;
font-size:22px;
margin-bottom:35px;
}

/* =====================================
BUTTONS
===================================== */

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn-primary{
background:var(--gold);
color:rgb(241, 222, 7);
padding:15px 35px;
border-radius:50px;
font-weight:700;
transition:var(--transition);
}

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

.btn-secondary{
border:2px solid var(--gold);
padding:15px 35px;
border-radius:50px;
font-weight:700;
transition:var(--transition);
}

.btn-secondary:hover{
background:var(--gold);
color:black;
}

/* =====================================
SECTIONS
===================================== */

section{
padding:100px 8%;
}

.section-title{
text-align:center;
font-size:50px;
color:var(--gold);
margin-bottom:60px;
}

/* =====================================
STATS
===================================== */

.stats-section{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
background:#111;
}

.stat-box{
text-align:center;
padding:40px 20px;
background:#181818;
border-radius:20px;
}

.stat-box h3{
font-size:55px;
color:var(--gold);
margin-bottom:10px;
}

.stat-box p{
color:#ccc;
}

/* =====================================
ABOUT
===================================== */

.about-preview{
text-align:center;
}

.about-content{
max-width:900px;
margin:auto;
}

.about-content h2{
font-size:50px;
margin-bottom:25px;
color:var(--gold);
}

.about-content p{
font-size:20px;
margin-bottom:30px;
}

.about-content a{
color:var(--gold);
font-weight:700;
}

/* =====================================
CARD SECTIONS
===================================== */

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

.card{
background:#151515;
padding:35px;
border-radius:20px;
transition:var(--transition);
}

.card:hover{
transform:translateY(-10px);
}

.card h3{
color:var(--gold);
margin-bottom:15px;
}

.card p{
color:#cccccc;
}

/* =====================================
DANCE STYLES
===================================== */

.styles-section{
background:#101010;
}

/* =====================================
MASONRY GALLERY
===================================== */

.masonry-gallery{
columns:3;
column-gap:20px;
}

.masonry-gallery img{
width:100%;
margin-bottom:20px;
border-radius:15px;
transition:var(--transition);
cursor:pointer;
}

.masonry-gallery img:hover{
transform:scale(1.03);
}

.center-btn{
text-align:center;
margin-top:40px;
}

/* =====================================
ACADEMY
===================================== */

.academy-section{
background:
linear-gradient(
rgba(0,0,0,.8),
rgba(0,0,0,.8)),
url('../images/academy-bg.jpg');
background-size:cover;
background-position:center;
}

.academy-content{
max-width:700px;
}

.academy-content h2{
color:var(--gold);
font-size:55px;
margin-bottom:25px;
}

.academy-content p{
font-size:20px;
margin-bottom:30px;
}

/* =====================================
EVENTS
===================================== */

.events-section{
background:#111;
}

.events-section > a{
display:block;
text-align:center;
color:var(--gold);
margin-top:40px;
font-weight:700;
}

/* =====================================
TESTIMONIAL
===================================== */

.testimonial-section{
text-align:center;
}

.testimonial{
max-width:900px;
margin:auto;
background:#151515;
padding:60px;
border-radius:20px;
}

.testimonial p{
font-size:24px;
font-style:italic;
margin-bottom:20px;
}

.testimonial h4{
color:var(--gold);
}

/* =====================================
CTA
===================================== */

.cta{
text-align:center;
background:
linear-gradient(
135deg,
var(--gold),
#b88900);
}

.cta h2{
color:black;
font-size:55px;
margin-bottom:20px;
}

.cta p{
color:#111;
max-width:800px;
margin:auto;
margin-bottom:30px;
font-size:20px;
}

.cta a{
background:black;
color:white;
padding:16px 40px;
border-radius:50px;
display:inline-block;
font-weight:700;
}

/* =====================================
FOOTER
===================================== */

footer{
background:#050505;
padding:70px 8%;
text-align:center;
}

.footer-logo{
color:var(--gold);
font-size:36px;
font-weight:800;
margin-bottom:15px;
}

footer p{
color:#aaa;
}

footer ul{
margin:30px 0;
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:25px;
}

footer ul a:hover{
color:var(--gold);
}

/* =====================================
SCROLLBAR
===================================== */

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

::-webkit-scrollbar-thumb{
background:var(--gold);
}

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

/* =====================================
RESPONSIVE
===================================== */

@media(max-width:1200px){

.hero-overlay h1{
font-size:70px;
}

.stats-section{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:991px){

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

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

.hero-overlay h1{
font-size:55px;
}

.hero-overlay h2{
font-size:22px;
}

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

.section-title{
font-size:40px;
}

.masonry-gallery{
columns:2;
}

}

@media(max-width:768px){

.hero-buttons{
flex-direction:column;
}

.stats-section{
grid-template-columns:1fr;
}

.masonry-gallery{
columns:1;
}

.testimonial{
padding:30px;
}

.cta h2{
font-size:38px;
}

.about-content h2,
.academy-content h2{
font-size:40px;
}

}

@media(max-width:576px){

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

.hero-overlay h2{
font-size:18px;
}

.hero-overlay p{
font-size:16px;
}

.logo{
font-size:24px;
}

nav ul{
gap:15px;
}

nav a{
font-size:14px;
}

}
