/* ============================= */
/* RESET */
/* ============================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
color:white;
background:linear-gradient(-45deg,#ff0080,#7928ca,#2afadf,#ffcc00);
background-size:400% 400%;
animation:bgmove 15s ease infinite;
min-height:100vh;
}

@keyframes bgmove{
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}

/* ============================= */
/* NAVIGATION */
/* ============================= */

nav{
background:rgba(0,0,0,0.6);
backdrop-filter:blur(10px);
padding:18px;
text-align:center;
position:sticky;
top:0;
z-index:999;
}

nav a{
color:white;
margin:0 18px;
text-decoration:none;
font-weight:600;
font-size:18px;
transition:0.3s;
}

nav a:hover{
color:#00fff7;
text-shadow:0 0 10px #00fff7;
}

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

header{
padding:140px 20px;
text-align:center;
background:linear-gradient(180deg,rgba(0,0,0,0.5),rgba(0,0,0,0.9));
}

h1{
font-size:70px;
color:#ff2bd6;
text-shadow:
0 0 10px #ff2bd6,
0 0 25px #ff2bd6,
0 0 50px #ff2bd6;
}

header p{
font-size:22px;
margin-top:15px;
}

/* ============================= */
/* BUTTON */
/* ============================= */

button{
background:linear-gradient(45deg,#ff2bd6,#ffcc00);
border:none;
padding:18px 45px;
font-size:20px;
border-radius:50px;
margin-top:25px;
cursor:pointer;
font-weight:700;
transition:0.3s;
}

button:hover{
transform:scale(1.1);
box-shadow:
0 0 20px #ff2bd6,
0 0 40px #ffcc00;
}

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

section{
padding:90px 10%;
text-align:center;
}

h2{
font-size:45px;
margin-bottom:50px;
color:#00fff7;
text-shadow:0 0 10px #00fff7;
}

/* ============================= */
/* CARDS */
/* ============================= */

.card{
background:rgba(0,0,0,0.6);
backdrop-filter:blur(8px);
padding:40px;
border-radius:20px;
margin:20px;
display:inline-block;
width:280px;
transition:0.4s;
box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

.card:hover{
transform:translateY(-12px) scale(1.05);
box-shadow:
0 0 20px #ff2bd6,
0 0 40px #00fff7;
}

.card h3{
color:#ffcc00;
margin-bottom:10px;
}

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

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

.gallery img{
width:100%;
border-radius:15px;
transition:0.4s;
}

.gallery img:hover{
transform:scale(1.08);
box-shadow:0 0 25px #ff2bd6;
}

/* ============================= */
/* REVIEWS */
/* ============================= */

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

.review{
background:rgba(0,0,0,0.6);
padding:30px;
border-radius:15px;
}

.review strong{
color:#ffcc00;
}

/* ============================= */
/* DEAL BANNER */
/* ============================= */

.deal{
background:linear-gradient(45deg,#ff2bd6,#ffcc00);
color:black;
padding:60px;
border-radius:25px;
font-weight:bold;
}

.deal h3{
font-size:50px;
}

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

footer{
background:rgba(0,0,0,0.85);
padding:50px 20px;
text-align:center;
margin-top:80px;
}

footer p{
margin:10px 0;
color:#ccc;
}

footer a{
color:#00fff7;
text-decoration:none;
}

footer a:hover{
text-shadow:0 0 10px #00fff7;
}

/* ============================= */
/* ADMIN PANEL */
/* ============================= */

.admin-hero{
padding:120px 20px 80px;
text-align:center;
background:linear-gradient(180deg,rgba(0,0,0,0.55),rgba(0,0,0,0.88));
}

.admin-badge{
display:inline-block;
padding:10px 18px;
border-radius:999px;
background:rgba(255,255,255,0.12);
margin-bottom:20px;
font-size:14px;
text-transform:uppercase;
backdrop-filter:blur(8px);
}

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

.admin-card{
background:rgba(0,0,0,0.55);
backdrop-filter:blur(10px);
border-radius:22px;
padding:28px;
text-align:left;
box-shadow:0 12px 40px rgba(0,0,0,0.35);
transition:0.35s ease;
}

.admin-card:hover{
transform:translateY(-8px);
box-shadow:
0 0 20px #ff2bd6,
0 0 35px #00fff7;
}

.admin-card h3{
margin-bottom:14px;
color:#ffcc00;
}

.admin-stat{
font-size:42px;
font-weight:800;
margin-bottom:10px;
}

.admin-muted{
opacity:0.8;
font-size:15px;
}

/* ============================= */
/* TABLE */
/* ============================= */

.admin-table-wrap{
overflow-x:auto;
margin-top:25px;
border-radius:20px;
background:rgba(0,0,0,0.45);
padding:14px;
}

.admin-table{
width:100%;
border-collapse:collapse;
}

.admin-table th,
.admin-table td{
padding:16px;
text-align:left;
border-bottom:1px solid rgba(255,255,255,0.08);
}

.admin-table th{
color:#00fff7;
font-size:14px;
text-transform:uppercase;
}

.status{
display:inline-block;
padding:6px 12px;
border-radius:20px;
font-size:13px;
font-weight:bold;
}

.status.confirmed{
background:#2afadf;
color:black;
}

.status.pending{
background:#ffcc00;
color:black;
}

.status.closed{
background:#ff2bd6;
}

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

@media(max-width:768px){

h1{
font-size:45px;
}

section{
padding:60px 6%;
}

.card{
width:100%;
}

nav a{
display:inline-block;
margin:8px;
}

button{
width:100%;
}

}
