/* -----------------------------------------
   ORIGINAL PREMIUM THEME (Kept same)
------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #f8db74;
    --dark: #000000;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(212,175,55,0.3);
    --shadow-gold: 0 0 20px rgba(212,175,55,0.5);
    --radius: 18px;
}

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

body {
    background:var(--dark);
    color:var(--gold);
    overflow-x:hidden;
}

/* -----------------------------------------
   HEADER (Previous Look + Responsive)
------------------------------------------*/

header {
    width:100%;
    padding:20px 50px;
    background:rgba(10,10,10,0.7);
    border-bottom:1px solid var(--border-gold);
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
}

header h1 {
    font-size:26px;
    color:var(--gold);
    text-shadow:var(--shadow-gold);
}

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

nav a {
    color:var(--gold);
    text-decoration:none;
    font-size:17px;
    transition:0.3s;
}
nav a:hover {
    color:white;
}

/* HAMBURGER (MOBILE ONLY) */
.menu-btn {
    display:none;
    font-size:32px;
    color:var(--gold);
    cursor:pointer;
}

/* -----------------------------------------
   HERO SECTION (Original kept)
------------------------------------------*/

.hero {
    width:100%;
    height:400px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding-left:60px;
    background-size:cover;
    background-position:center;
}

.hero h2 {
    font-size:40px;
    font-weight:700;
    color:var(--gold-light);
}
.hero p {
    font-size:18px;
    width:60%;
    opacity:0.9;
}

/* -----------------------------------------
   SERVICE CARDS (Original Design Kept)
------------------------------------------*/

.services-section {
    padding:60px 80px;
}

.services-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.service-card {
    background:var(--glass-bg);
    border:1px solid var(--border-gold);
    border-radius:var(--radius);
    padding:25px;
    backdrop-filter:blur(10px);
    box-shadow:var(--shadow-gold);
    transition:0.3s;
}
.service-card:hover {
    transform:translateY(-8px);
}

/* -----------------------------------------
   FORMS (Original Design Kept)
------------------------------------------*/

form {
    width:450px;
    max-width:100%;
    margin:auto;
    padding:25px;
    background:var(--glass-bg);
    border:1px solid var(--border-gold);
    border-radius:var(--radius);
}

input, select, textarea {
    width:100%;
    padding:12px;
    margin-bottom:15px;
    background:black;
    border:1px solid var(--gold);
    color:var(--gold);
    border-radius:var(--radius);
}

button {
    width:100%;
    padding:12px;
    border:2px solid var(--gold);
    background:transparent;
    color:var(--gold);
    border-radius:var(--radius);
}

/* -----------------------------------------
   FOOTER (Original Look Kept)
------------------------------------------*/

footer {
    text-align:center;
    padding:25px;
    border-top:1px solid var(--border-gold);
    margin-top:50px;
}

/* ==========================================================
   ⭐⭐⭐ FULL RESPONSIVE FIXES START HERE ⭐⭐⭐
   (Nothing changes visually on desktop)
===========================================================*/

/* MOBILE HEADER FIX */
@media (max-width: 768px){

    header {
        padding:15px 20px;
    }

    nav {
        display:none;
        flex-direction:column;
        background:#111;
        width:100%;
        margin-top:15px;
        padding:15px 0;
        text-align:center;
        border-top:1px solid var(--border-gold);
    }

    nav.show {
        display:flex;
    }

    nav a {
        padding:12px 0;
        font-size:18px;
    }

    .menu-btn {
        display:block;
    }
}

/* HERO RESPONSIVE */
@media (max-width:768px){
    .hero {
        padding:20px;
        height:auto;
    }
    .hero h2 {
        font-size:28px;
    }
    .hero p {
        width:100%;
        font-size:15px;
    }
}

/* SERVICE GRID RESPONSIVE */
@media (max-width:1024px){
    .services-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:600px){
    .services-grid {
        grid-template-columns:1fr;
    }
}

/* FORM RESPONSIVE */
@media (max-width:600px){
    form {
        width:90%;
    }
}

/* ADMIN PANEL RESPONSIVE */
.admin-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:20px;
}

/* BOOKING PAGE RESPONSIVE */
@media (max-width:600px){
    .service-card {
        padding:18px;
    }
}
/* HEADER WRAPPER */
.header {
    width: 100%;
    padding: 15px 25px;
    background: rgba(10,10,10,0.75);
    border-bottom: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LEFT TITLE */
.header-title {
    font-size: 24px;
    color: var(--gold);
    font-weight: 600;
}

/* NAV MENU */
.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gold);
    font-size: 16px;
}

.nav-menu a:hover {
    color: white;
}

/* RIGHT-SIDE LOGO */
.header-right-logo {
    width: 70px;
    height: auto;
    margin-left: 15px;
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.6));
}

/* HAMBURGER BUTTON (MOBILE) */
.menu-toggle {
    display: none;
    font-size: 32px;
    color: var(--gold);
    cursor: pointer;
}

/* ------------------------
   MOBILE RESPONSIVE
------------------------- */

@media (max-width: 768px) {

    .menu-toggle {
        display:block;
        position:absolute;
        right:20px;
    }

    .header {
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 10px;
    }

    .nav-menu {
        display:none;
        flex-direction:column;
        width:100%;
        background:#111;
        text-align:center;
        padding:10px 0;
        border-top:1px solid var(--border-gold);
    }

    .nav-menu.show {
        display:flex;
    }

    .header-right-logo {
        width: 55px;
        margin-top: 10px;
    }
}
