
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:
linear-gradient(135deg,
rgba(0,35,149,0.15),
rgba(2,6,23,1),
rgba(239,65,53,0.15));
color:white;
overflow-x:hidden;
min-height:100vh;
}

/* ===================================== */
/* BACKGROUND */
/* ===================================== */

.background-glow{
position:fixed;
width:600px;
height:600px;
background:radial-gradient(circle,
rgba(255,255,255,0.15),
transparent 70%);
filter:blur(120px);
top:-200px;
right:-200px;
z-index:-1;
}

/* ===================================== */
/* HERO */
/* ===================================== */

.hero{
min-height:100vh;
background:
linear-gradient(
rgba(2,6,23,0.8),
rgba(2,6,23,0.95)
),
url('../images/poker-bg.jpg');
background-size:cover;
background-position:center;
position:relative;
}

.small-hero{
min-height:40vh;
}

.small-content{
height:30vh !important;
}

/* ===================================== */
/* NAVBAR */
/* ===================================== */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
backdrop-filter:blur(12px);
position:sticky;
top:0;
z-index:100;
background:rgba(0,0,0,0.2);
border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo-container{
display:flex;
align-items:center;
gap:15px;
}

.logo-img{
width:80px;
height:80px;
border-radius:50%;
border:3px solid white;
padding:8px;
background:rgba(255,255,255,0.08);
}

.logo-container h2{
font-size:2rem;
color:white;
}

.logo-container span{
font-size:0.9rem;
opacity:0.8;
}

nav ul{
display:flex;
gap:25px;
list-style:none;
}

nav a{
color:white;
text-decoration:none;
transition:0.3s;
font-weight:600;
}

nav a:hover{
color:#EF4135;
}

/* ===================================== */
/* HERO CONTENT */
/* ===================================== */

.hero-content{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
height:80vh;
padding:20px;
}

.floating-title{
font-size:5rem;
background:linear-gradient(
90deg,
#0055A4,
#ffffff,
#EF4135
);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
margin-bottom:20px;
}

.hero-content p{
font-size:1.2rem;
max-width:700px;
line-height:1.8;
}

/* ===================================== */
/* BUTTON */
/* ===================================== */

.btn{
display:inline-block;
margin-top:25px;
padding:15px 35px;
border:none;
border-radius:50px;
background:linear-gradient(
90deg,
#0055A4,
#ffffff,
#EF4135
);
color:#111827;
font-weight:700;
cursor:pointer;
text-decoration:none;
transition:0.4s;
}

.btn:hover{
transform:translateY(-5px);
}

/* ===================================== */
/* SECTIONS */
/* ===================================== */

.section{
padding:100px 10%;
}

.section h2{
font-size:3rem;
margin-bottom:40px;
}

.dark{
background:#0f172a;
}

/* ===================================== */
/* GLASS CARD */
/* ===================================== */

.glass-card{
background:rgba(255,255,255,0.05);
backdrop-filter:blur(10px);
padding:40px;
border-radius:25px;
border:1px solid rgba(255,255,255,0.1);
}

/* ===================================== */
/* OFFICE MEMBERS */
/* ===================================== */

.office-members{
display:flex;
gap:30px;
margin-top:40px;
flex-wrap:wrap;
}

.member-card{
width:250px;
background:rgba(255,255,255,0.05);
padding:25px;
border-radius:20px;
text-align:center;
}

.member-card img{
width:140px;
height:140px;
object-fit:cover;
border-radius:50%;
margin-bottom:20px;
border:3px solid white;
}

.member-card h3{
margin-bottom:10px;
}

/* ===================================== */
/* GALLERY */
/* ===================================== */

.gallery{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.photo-card{
overflow:hidden;
border-radius:25px;
background:rgba(255,255,255,0.05);
}

.photo-card img{
width:100%;
height:350px;
object-fit:cover;
transition:0.4s;
}

.photo-card img:hover{
transform:scale(1.05);
}

/* ===================================== */
/* CARDS */
/* ===================================== */

.cards{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card3d{
background:rgba(255,255,255,0.05);
padding:35px;
border-radius:25px;
transition:0.4s;
}

.card3d:hover{
transform:translateY(-10px);
}

.card3d h3{
margin-bottom:15px;
}

/* ===================================== */
/* CONTACT */
/* ===================================== */

.contact-form{
display:flex;
flex-direction:column;
gap:20px;
max-width:700px;
}

.contact-form input,
.contact-form textarea{
padding:15px;
border:none;
border-radius:15px;
background:#1e293b;
color:white;
font-family:'Poppins',sans-serif;
}

.contact-form textarea{
min-height:180px;
resize:none;
}



/* ====================================== */
/* FOOTER */
/* ====================================== */

.footer{
background:#01040d;
padding:70px 10% 30px;
margin-top:100px;
border-top:
1px solid rgba(255,255,255,0.08);
}

.footer-container{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:40px;
margin-bottom:50px;
}

.footer-col h3,
.footer-col h4{
margin-bottom:20px;
color:white;
}

.footer-col p{
line-height:1.8;
opacity:0.8;
}

.footer-col ul{
list-style:none;
display:flex;
flex-direction:column;
gap:12px;
}

.footer-col a{
color:white;
text-decoration:none;
opacity:0.8;
transition:0.3s;
}

.footer-col a:hover{
opacity:1;
color:#EF4135;
}

.footer-bottom{
padding-top:30px;
border-top:
1px solid rgba(255,255,255,0.08);
text-align:center;
opacity:0.7;
}

/* ===================================== */
/* IFRAME */
/* ===================================== */

iframe{
border:none;
border-radius:25px;
background:white;
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:768px){

nav{
flex-direction:column;
gap:20px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
}

.floating-title{
font-size:3rem;
}

.section{
padding:80px 5%;
}

.office-members{
justify-content:center;
}

}





/* ====================================== */
/* LIGHTBOX */
/* ====================================== */

.lightbox{
display:none;
position:fixed;
z-index:9999;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.95);
justify-content:center;
align-items:center;
overflow:hidden;
}

.lightbox-image{
max-width:90%;
max-height:85%;
border-radius:20px;
box-shadow:
0 0 40px rgba(255,255,255,0.15);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next{
position:absolute;
background:rgba(255,255,255,0.1);
border:none;
color:white;
font-size:2rem;
width:60px;
height:60px;
border-radius:50%;
cursor:pointer;
backdrop-filter:blur(10px);
transition:0.3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{
background:rgba(255,255,255,0.2);
}

.lightbox-close{
top:30px;
right:30px;
}

.lightbox-prev{
left:30px;
top:50%;
transform:translateY(-50%);
}

.lightbox-next{
right:30px;
top:50%;
transform:translateY(-50%);
}

/* ====================================== */
/* MOBILE */
/* ====================================== */

@media(max-width:768px){

.lightbox-image{
max-width:95%;
max-height:70%;
}

.lightbox-prev,
.lightbox-next{
width:50px;
height:50px;
font-size:1.5rem;
}

}



/* ====================================== */
/* GALLERY DESCRIPTION */
/* ====================================== */

.gallery-description{
position:absolute;
bottom:40px;
left:50%;
transform:translateX(-50%);
background:rgba(0,0,0,0.6);
padding:15px 25px;
border-radius:15px;
backdrop-filter:blur(10px);
font-size:1rem;
max-width:80%;
text-align:center;
}



/* ====================================== */
/* MODAL */
/* ====================================== */

.modal-overlay{
display:none;
position:fixed;
z-index:99999;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
backdrop-filter:blur(8px);
justify-content:center;
align-items:center;
padding:20px;
}

.modal-content{
position:relative;
background:#0f172a;
padding:50px;
border-radius:30px;
max-width:700px;
width:100%;
border:
1px solid rgba(255,255,255,0.1);
box-shadow:
0 0 40px rgba(255,255,255,0.08);
animation:modalOpen 0.3s ease;
}

.modal-content h2{
margin-bottom:30px;
font-size:2rem;
}

.modal-content p{
line-height:1.8;
opacity:0.9;
}

.modal-close{
position:absolute;
top:20px;
right:20px;
width:45px;
height:45px;
border:none;
border-radius:50%;
background:rgba(255,255,255,0.1);
color:white;
font-size:1.2rem;
cursor:pointer;
transition:0.3s;
}

.modal-close:hover{
background:rgba(255,255,255,0.2);
}

@keyframes modalOpen{

from{
opacity:0;
transform:scale(0.9);
}

to{
opacity:1;
transform:scale(1);
}

}




/* ====================================== */
/* CLASSEMENT MODAL */
/* ====================================== */

.classement-modal{
max-width:1200px;
width:100%;
height:90vh;
display:flex;
flex-direction:column;
}

.classement-frame{
flex:1;
width:100%;
border:none;
border-radius:20px;
background:white;
margin-top:20px;
}
