/* ==========================================
   BRIGHT MOON INTERNATIONAL
   Premium Black & Gold Theme
========================================== */

:root{

--gold:#FFD700;
--gold2:#d4af37;
--gold3:#8d6a00;
--bg:#050505;
--bg2:#0b0b0b;
--card:rgba(255,255,255,.06);
--text:#ffffff;
--muted:#bdbdbd;

}

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

body{

background:
linear-gradient(rgba(0,0,0,.90),
rgba(0,0,0,.93)),
url("images/background.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;

color:white;

}

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

.container{
width:90%;
max-width:1250px;
margin:auto;
}

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

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(0,0,0,.65);
backdrop-filter:blur(20px);
border-bottom:1px solid rgba(255,215,0,.15);

}

.nav{

display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;

}

.logo{

display:flex;
align-items:center;
gap:15px;

}

.logo img{

width:60px;
height:60px;
border-radius:50%;

}

.logo h2{

font-family:'Cinzel',serif;
color:var(--gold);

}

.logo span{

color:#ccc;
font-size:14px;

}

.nav ul{

display:flex;
gap:35px;
list-style:none;

}

.nav a{

color:white;
text-decoration:none;
font-weight:500;
transition:.4s;

}

.nav a:hover{

color:var(--gold);

}

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

.hero{

padding-top:140px;
padding-bottom:100px;
min-height:100vh;
display:flex;
align-items:center;

}

.hero-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;

}

.tag{

display:inline-block;
padding:10px 22px;
background:rgba(255,215,0,.12);
border:1px solid rgba(255,215,0,.3);
border-radius:40px;
margin-bottom:25px;
color:var(--gold);

}

.hero h1{

font-family:'Cinzel',serif;
font-size:64px;
line-height:1.2;

}

.hero h1 span{

color:var(--gold);

}

.hero p{

margin-top:25px;
color:#cccccc;
font-size:18px;
line-height:1.9;

}

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

.hero-buttons{

margin-top:40px;
display:flex;
gap:20px;

}

.btn{

display:inline-block;
padding:15px 34px;

background:
linear-gradient(
135deg,
#ffe766,
#d6a800,
#8d6800);

color:black;
font-weight:700;
text-decoration:none;
border-radius:60px;

box-shadow:
0 0 25px rgba(255,215,0,.35);

transition:.4s;

}

.btn:hover{

transform:translateY(-5px);

box-shadow:
0 0 45px rgba(255,215,0,.7);

}

.btn-outline{

padding:15px 34px;
border-radius:60px;
border:2px solid var(--gold);
color:var(--gold);
text-decoration:none;
transition:.4s;

}

.btn-outline:hover{

background:var(--gold);
color:black;

}

/*==============================
ROTATING COIN
==============================*/

.coin-circle{

width:470px;
height:470px;
margin:auto;
border-radius:50%;
overflow:hidden;
border:8px solid rgba(255,215,0,.4);

box-shadow:

0 0 80px rgba(255,215,0,.35),
0 0 150px rgba(255,215,0,.15);

animation:rotateCoin 18s linear infinite;

}

.coin-circle img{

width:100%;
height:100%;
object-fit:cover;

}

@keyframes rotateCoin{

from{

transform:rotateY(0deg);

}

to{

transform:rotateY(360deg);

}

}

/*==============================
GOLD GLOW
==============================*/

.gold-glow{

position:fixed;
width:550px;
height:550px;
border-radius:50%;
filter:blur(180px);
z-index:-2;

}

.glow1{

top:-250px;
right:-200px;
background:#FFD70022;

}

.glow2{

bottom:-250px;
left:-200px;
background:#cfa60022;

}

/*==============================
FLOATING COINS
==============================*/

.floating{

position:fixed;
width:90px;
border-radius:50%;
opacity:.15;
z-index:-1;

animation:float 9s ease-in-out infinite;

}

.coin1{

top:20%;
left:3%;

}

.coin2{

bottom:10%;
right:5%;
animation-delay:3s;

}

@keyframes float{

0%{transform:translateY(0px);}
50%{transform:translateY(-35px);}
100%{transform:translateY(0px);}

}

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

.stats{

padding:90px 0;

}

.stat-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;

}

.stat-card{

background:var(--card);
backdrop-filter:blur(15px);

border:1px solid rgba(255,215,0,.15);

padding:40px;
border-radius:18px;
text-align:center;

transition:.4s;

}

.stat-card:hover{

transform:translateY(-8px);
border-color:var(--gold);

}

.stat-card h2{

font-size:42px;
color:var(--gold);

}

.stat-card p{

margin-top:12px;
color:#ccc;

}

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

.about{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
padding:120px 0;
align-items:center;
  
  /* Mouse Glow */
.mouse-glow{
position:fixed;
width:180px;
height:180px;
background:radial-gradient(circle,rgba(255,215,0,.18),transparent 70%);
pointer-events:none;
transform:translate(-50%,-50%);
filter:blur(25px);
z-index:0;
transition:left .05s linear, top .05s linear;
}

/* Scroll Progress Bar */
.progress-bar{
position:fixed;
top:0;
left:0;
height:4px;
width:0;
background:linear-gradient(90deg,#FFD700,#ffea75,#FFD700);
z-index:99999;
box-shadow:0 0 12px #FFD700;
}

/* Active Navigation */
header ul li a.active{
color:#FFD700;
}

/* Ripple Effect */
.btn{
position:relative;
overflow:hidden;
}

.ripple{
position:absolute;
border-radius:50%;
transform:scale(0);
background:rgba(255,255,255,.5);
animation:ripple .7s linear;
pointer-events:none;
}

@keyframes ripple{
to{
transform:scale(4);
opacity:0;
}
}

}

.about-image img{

border-radius:20px;

box-shadow:
0 0 50px rgba(255,215,0,.25);

}

.about-content h2{

font-size:46px;
font-family:'Cinzel',serif;

}

.about-content h2 span{

color:var(--gold);

}

.about-content p{

margin:25px 0;
line-height:1.9;
color:#cfcfcf;

}

/*==============================
TITLE
==============================*/

.title{

text-align:center;
margin-bottom:70px;

}

.title span{

color:var(--gold);
letter-spacing:3px;

}

.title h2{

font-family:'Cinzel',serif;
font-size:46px;
margin-top:10px;

}

/*==============================
COLLECTION
==============================*/

.collection{

padding:120px 0;

}

.cards{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.coin-card{

background:var(--card);
backdrop-filter:blur(20px);

border:1px solid rgba(255,215,0,.15);

border-radius:20px;
overflow:hidden;
transition:.4s;

}

.coin-card:hover{

transform:translateY(-10px);
box-shadow:0 0 40px rgba(255,215,0,.25);

}

.coin-card img{

height:260px;
width:100%;
object-fit:cover;

}

.content{

padding:25px;

}

.content h3{

color:var(--gold);

}

.content p{

margin-top:12px;
color:#ccc;
line-height:1.8;

}

/*==============================
WHY
==============================*/

.why{

padding:120px 0;

}

.why-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.glass{

background:var(--card);
backdrop-filter:blur(15px);

padding:40px;
text-align:center;
border-radius:18px;

border:1px solid rgba(255,215,0,.15);

transition:.4s;

}

.glass:hover{

transform:translateY(-8px);

}

.glass i{

font-size:50px;
color:var(--gold);
margin-bottom:20px;

}

.glass h3{

margin-bottom:15px;

}

/*==============================
CONTACT
==============================*/

.contact{

padding:120px 0;

}

.contact-box{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

background:var(--card);

padding:50px;

border-radius:20px;

border:1px solid rgba(255,215,0,.2);

}

.contact h2{

font-family:'Cinzel',serif;
color:var(--gold);

}

.contact p{

margin-top:20px;
line-height:1.9;
color:#ddd;

}

.contact iframe{

width:100%;
height:350px;
border:0;
border-radius:15px;

}

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

footer{

padding:35px;
text-align:center;
border-top:1px solid rgba(255,215,0,.15);
color:#aaa;

}

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

@media(max-width:991px){

.hero-grid,
.about,
.contact-box{

grid-template-columns:1fr;

}

.cards,
.stat-grid,
.why-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:42px;

}

.coin-circle{

width:320px;
height:320px;

}

.nav ul{

display:none;

}

.hero-buttons{

flex-direction:column;

}

}