/* Global Styles */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#0f172a;
    color:#fff;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
    position:fixed;
    width:100%;
    background:rgba(15,23,42,0.9);
    backdrop-filter:blur(10px);
    z-index:1000;
}

header .logo-img{
    height:50px;
}

.nav-links a{
    margin-left:20px;
    color:#d4af37;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#fff;
}

.mobile-nav-toggle{
    display:none;
    font-size:2rem;
    cursor:pointer;
    color:#d4af37;
}

/* Hero / Home sections */
.hero-section{
    padding:120px 0 60px 0;
    text-align:center;
}

.hero-section h1{
    font-size:2.5rem;
    margin-bottom:20px;
}

.hero-section p{
    font-size:1.1rem;
    color:#d1d5db;
}

/* Buttons */
.btn{
    padding:10px 20px;
    background:#d4af37;
    color:#000;
    border:none;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    text-decoration:none;
    display:inline-block;
    transition:0.3s;
}

.btn:hover{
    background:#fff;
}

/* Shop / Product Grid */
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.product-card{
    background:#111827;
    border-radius:10px;
    padding:20px;
    text-align:center;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card img{
    width:100%;
    border-radius:10px;
    margin-bottom:15px;
}

.product-card h3{
    margin-bottom:10px;
}

.product-card p{
    margin-bottom:15px;
    color:#d1d5db;
}

/* Booking Section */
.booking-section{
    padding:100px 0;
    max-width:600px;
    margin:auto;
}

.booking-section h2{
    text-align:center;
    margin-bottom:20px;
}

.booking-section p{
    text-align:center;
    margin-bottom:30px;
    font-size:1rem;
    color:#d1d5db;
}

.booking-section form{
    display:flex;
    flex-direction:column;
}

.booking-section label{
    margin-bottom:5px;
    font-weight:500;
}

.booking-section input,
.booking-section select{
    padding:10px 15px;
    margin-bottom:20px;
    border-radius:8px;
    border:none;
    outline:none;
    font-size:1rem;
}

.booking-section button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:30px;
    background:#d4af37;
    color:#000;
    font-weight:600;
    font-size:1.1rem;
    cursor:pointer;
    transition:0.3s;
}

.booking-section button:hover{
    background:#fff;
}

/* Policy Sections */
.policy-section{
    padding:80px 0;
}

.policy-section h2{
    text-align:center;
    margin-bottom:20px;
}

.policy-section h3{
    margin-top:20px;
}

.policy-section ul{
    margin-left:20px;
    margin-bottom:20px;
}

/* Footer */
footer{
    background:#111827;
    color:#d1d5db;
    padding:40px 0;
}

.footer-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

.footer-section h4{
    color:#d4af37;
    margin-bottom:10px;
}

.footer-section a{
    display:block;
    color:#d1d5db;
    text-decoration:none;
    margin-bottom:5px;
}

.footer-section a:hover{
    color:#fff;
}

/* Responsive */
@media(max-width:768px){
    nav{
        display:none;
    }
    .mobile-nav-toggle{
        display:block;
    }
    .nav-links{
        display:flex;
        flex-direction:column;
        background:#0f172a;
        position:absolute;
        top:70px;
        right:0;
        width:200px;
        border-left:1px solid #d4af37;
        display:none;
    }
    .nav-links a{
        padding:15px;
        border-bottom:1px solid rgba(255,255,255,0.1);
    }
    .product-grid{
        grid-template-columns:1fr;
    }
    .booking-section{
        padding:80px 0;
    }
    .hero-section{
        padding:100px 20px 60px 20px;
    }
}