/* ========================= */
/* GLOBAL */
/* ========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#071A2E;
overflow-x:hidden;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */

.gallery-hero{

height:100vh;

position:relative;

display:flex;
justify-content:center;
align-items:center;

text-align:center;

padding:0 20px;

overflow:hidden;

background:
linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.75)
),

url('../images/gallery-hero.jpg');

background-size:cover;
background-position:center;
background-attachment:fixed;
}

.hero-overlay{

position:absolute;

inset:0;

background:
radial-gradient(
circle,
transparent,
rgba(0,0,0,.4)
);
}

.hero-content{

position:relative;

z-index:2;

max-width:900px;

opacity:0;

transform:translateY(60px);

transition:1.2s;
}

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:14px 28px;

background:
rgba(255,255,255,.08);

backdrop-filter:blur(20px);

border:
1px solid rgba(255,255,255,.1);

border-radius:50px;

color:#D4A537;

font-weight:600;

margin-bottom:30px;
}

.hero-content h1{

font-size:5rem;

font-family:'Montserrat',sans-serif;

font-weight:800;

line-height:1.1;

color:white;

margin-bottom:25px;
}

.hero-content h1 span{

display:block;

color:#D4A537;
}

.hero-content p{

max-width:700px;

margin:auto;

font-size:1.15rem;

line-height:1.9;

color:
rgba(255,255,255,.85);

margin-bottom:45px;
}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;
}

.primary-btn{

padding:18px 40px;

border-radius:50px;

text-decoration:none;

background:
linear-gradient(
135deg,
#D4A537,
#f5c85d
);

color:white;

font-weight:600;

transition:.4s;
}

.primary-btn:hover{

transform:translateY(-5px);

box-shadow:
0 15px 35px rgba(212,165,55,.3);
}

.secondary-btn{

padding:18px 40px;

border:2px solid white;

border-radius:50px;

text-decoration:none;

color:white;

font-weight:600;

transition:.4s;
}

.secondary-btn:hover{

background:white;

color:#071A2E;
}

/* ========================= */
/* SCROLL INDICATOR */
/* ========================= */

.scroll-indicator{

position:absolute;

bottom:40px;
left:50%;

transform:translateX(-50%);
}

.scroll-indicator span{

display:block;

width:30px;
height:50px;

border:2px solid white;

border-radius:50px;

position:relative;
}

.scroll-indicator span::before{

content:'';

position:absolute;

width:6px;
height:6px;

background:white;

border-radius:50%;

left:50%;

transform:translateX(-50%);

top:10px;

animation:scroll 2s infinite;
}

@keyframes scroll{

0%{
opacity:1;
top:10px;
}

100%{
opacity:0;
top:30px;
}

}

/* ========================= */
/* GLOW EFFECTS */
/* ========================= */

.hero-glow{

position:absolute;

border-radius:50%;

filter:blur(140px);

opacity:.15;
}

.glow-one{

width:350px;
height:350px;

background:#D4A537;

top:100px;
left:-100px;
}

.glow-two{

width:400px;
height:400px;

background:#00A9A5;

right:-120px;
bottom:50px;
}

.show-hero{

opacity:1;

transform:translateY(0);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:768px){

.hero-content h1{

font-size:2.8rem;
}

.hero-content p{

font-size:1rem;
}

}

/* ========================= */
/* PREMIUM NAVBAR */
/* ========================= */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
transition:.4s ease;
padding:20px 0;
}

.navbar.scrolled{
background:rgba(255,255,255,0.08);
backdrop-filter:blur(20px);
-webkit-backdrop-filter:blur(20px);
border-bottom:1px solid rgba(255,255,255,0.1);
padding:12px 0;
}

.nav-container{
width:90%;
max-width:1400px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:65px;
transition:.3s;
}

.navbar.scrolled .logo img{
height:55px;
}

.nav-links{
display:flex;
gap:35px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:white;
font-size:15px;
font-weight:500;
position:relative;
transition:.3s;
}

.nav-links a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#D4A537;
transition:.3s;
}

.nav-links a:hover::after{
width:100%;
}

.nav-links a:hover{
color:#D4A537;
}

.nav-btn{
background:linear-gradient(
135deg,
#D4A537,
#f5c85d
);
padding:13px 30px;
border-radius:50px;
text-decoration:none;
font-weight:600;
color:#fff;
transition:.4s;
}

.nav-btn:hover{
transform:translateY(-4px);
box-shadow:
0 10px 30px rgba(212,165,55,.4);
}

.menu-toggle{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

/* MOBILE */

@media(max-width:991px){

.nav-links{
position:fixed;
top:0;
right:-100%;
width:280px;
height:100vh;
background:rgba(7,26,46,0.95);
backdrop-filter:blur(20px);
flex-direction:column;
justify-content:center;
align-items:center;
gap:30px;
transition:.5s;
}

.nav-links.active{
right:0;
}

.nav-btn{
display:none;
}

.menu-toggle{
display:block;
}

.logo img{
height:55px;
}

}

/* ========================= */
/* GALLERY STATISTICS */
/* ========================= */

.gallery-stats{

padding:120px 8%;

background:
linear-gradient(
180deg,
#071A2E,
#0A2238
);

position:relative;
overflow:hidden;
}

.stats-container{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:30px;
}

.stat-card{

background:
rgba(255,255,255,.06);

backdrop-filter:blur(20px);

border:
1px solid rgba(255,255,255,.08);

border-radius:30px;

padding:45px 30px;

text-align:center;

transition:.5s;

opacity:0;

transform:translateY(50px);
}

.stat-card:hover{

transform:
translateY(-15px);

border-color:#D4A537;

box-shadow:
0 20px 40px rgba(0,0,0,.25);
}

.stat-icon{

width:85px;
height:85px;

margin:0 auto 25px;

display:flex;
justify-content:center;
align-items:center;

border-radius:50%;

background:
linear-gradient(
135deg,
#D4A537,
#f5c85d
);
}

.stat-icon i{

font-size:32px;

color:white;
}

.stat-card h3{

font-size:3rem;

font-weight:800;

color:white;

margin-bottom:10px;
}

.stat-card p{

color:
rgba(255,255,255,.8);

font-size:1rem;
}

.stat-show{

opacity:1;

transform:translateY(0);
}

/* ========================= */
/* GALLERY CATEGORIES */
/* ========================= */

.section-title h2{
    color:white;
}

.section-title p{
    color:rgba(255,255,255,.8);
}

.gallery-categories{

padding:120px 8%;

background:
linear-gradient(
180deg,
#0A2238,
#071A2E
);

position:relative;
overflow:hidden;
}

.gallery-categories{
    position:relative;
    z-index:5;
}

.gallery-filters{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:18px;

margin-top:60px;
}

.gallery-filter{

padding:15px 30px;

border:none;

border-radius:50px;

background:
rgba(255,255,255,.08);

backdrop-filter:blur(20px);

border:
1px solid rgba(255,255,255,.08);

color:white;

font-size:1rem;

font-weight:600;

cursor:pointer;

transition:.4s ease;
}

.gallery-filter:hover{

transform:translateY(-5px);

border-color:#D4A537;
}

.gallery-filter.active{

background:
linear-gradient(
135deg,
#D4A537,
#f5c85d
);

color:white;

box-shadow:
0 10px 30px rgba(212,165,55,.3);
}

/* ===================== */
/* GALLERY CATEGORIES */
/* ===================== */

.gallery-categories{

    position:relative;

    width:100%;

    padding:100px 8%;

    background:#081B2D;

    z-index:10;
}

.gallery-container{

    max-width:1400px;

    margin:auto;
}

.gallery-heading{

    text-align:center;

    margin-bottom:60px;
}

.gallery-subtitle{

    display:block;

    color:#D4A537;

    letter-spacing:3px;

    font-size:.9rem;

    margin-bottom:15px;

    font-weight:600;
}

.gallery-heading h2{

    font-size:3.5rem;

    color:#ffffff;

    margin-bottom:20px;

    font-weight:800;
}

.gallery-heading h2 span{

    color:#D4A537;
}

.gallery-heading p{

    max-width:700px;

    margin:auto;

    color:rgba(255,255,255,.75);

    line-height:1.8;
}

.gallery-filter-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;
}

.gallery-btn{

    border:none;

    cursor:pointer;

    padding:15px 28px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    color:white;

    font-size:1rem;

    font-weight:600;

    transition:.4s;
}

.gallery-btn:hover{

    transform:translateY(-5px);

    background:#D4A537;
}

.gallery-btn.active{

    background:#D4A537;

    color:white;

    box-shadow:
    0 10px 30px
    rgba(212,165,55,.35);
}