/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0f0f0f;
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px; 
}

h1, h2, h3, h4 { color: #d4af37; }
p { line-height: 1.6; color: #ccc; }
a { text-decoration: none; color: white; transition: 0.3s; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid #333;
}

.logo { font-size: 24px; font-weight: bold; }
.logo span { color: #d4af37; }

.nav-links { list-style: none; display: flex; gap: 20px; align-items: center; margin: 0; }
.btn-nav { background: #d4af37; padding: 10px 20px; border-radius: 5px; color: #000; font-weight: bold; }
.btn-nav:hover { background: #fff; }
.menu-icon { display: none; color: #d4af37; font-size: 28px; cursor: pointer; }

/* Hero Section */
.hero {
    height: 60vh;        
    min-height: 450px;   
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=1470&auto=format&fit=crop');
    background-size: cover;
    background-position: center 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px;
}

.hero h1 { font-size: 48px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.hero p { font-size: 18px; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }

.btn-gold { background: #d4af37; color: #000; padding: 12px 30px; border-radius: 5px; font-weight: bold; border: none; cursor: pointer; font-size: 16px; display: inline-block; }
.btn-gold:hover { background: #fff; transform: translateY(-2px); }
.btn-transparent { border: 2px solid #fff; padding: 10px 30px; border-radius: 5px; margin-left: 10px; display: inline-block; }
.btn-transparent:hover { background: #fff; color: #000; }

/* --- PACKAGES SECTION (2x2 Grid) --- */
.packages-section {
    padding: 80px 20px;
    background: #111;
    text-align: center;
}

.package-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 10px;
    width: 45%; 
    min-width: 300px;
    padding: 30px 20px;
    text-align: left;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    box-sizing: border-box;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}

.package-card.featured {
    border: 2px solid #d4af37;
    background: #252525;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #d4af37;
    color: #000;
    font-size: 10px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
}

.package-card h3 {
    color: #d4af37;
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 5px;
}

.sub-text {
    color: #888;
    font-size: 13px;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.price-list li {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.price-list li strong { color: #fff; }

.btn-package {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s;
}

.btn-package:hover { background: #d4af37; color: #000; }

/* Sections */
.booking, .reviews { padding: 80px 20px; background: #1a1a1a; text-align: center; }
.booking { background: #0f0f0f; }

/* Booking Form */
form { max-width: 600px; margin: 40px auto; background: #252525; padding: 30px; border-radius: 10px; text-align: left; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; color: #d4af37; font-size: 14px; }
.form-group input, .form-group select { width: 100%; padding: 12px; background: #333; border: 1px solid #444; color: #fff; border-radius: 5px; box-sizing: border-box; font-size: 16px; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: #d4af37; }
.form-row { display: flex; gap: 10px; }
.form-row .form-group { flex: 1; }
.full-width { width: 100%; margin-top: 10px; padding: 15px; font-size: 18px; }

/* Reviews Section */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.review-box {
    background: #252525;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: left;
}

.user-profile {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: #333;
    color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    border: 1px solid #d4af37;
}

.user-info h4 { margin: 0; color: #fff; font-size: 16px; }
.star-rating { color: #d4af37; font-size: 14px; margin-bottom: 10px; }
.review-text { color: #ccc; font-style: italic; font-size: 14px; }

/* Review Form */
.add-review-section {
    max-width: 600px;
    margin: 40px auto 0 auto;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    text-align: center;
}

.rating-input {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}
.rating-input i { font-size: 28px; color: #444; cursor: pointer; transition: 0.3s; }
.rating-input i.active, .rating-input i:hover { color: #d4af37; }

/* Loader */
.loader {
    border: 4px solid #333;
    border-top: 4px solid #d4af37;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
    display: none;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Social Media Section */
.social-section {
    padding: 80px 20px;
    background-color: #1a1a1a;
    text-align: center;
    border-top: 1px solid #333;
}

.social-section h2 { font-size: 32px; margin-bottom: 10px; }
.social-section p { margin-bottom: 40px; color: #aaa; }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-card {
    background: #252525;
    width: 200px;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-card i { font-size: 36px; color: #d4af37; margin-bottom: 15px; transition: 0.3s; }
.social-card span { color: #fff; font-size: 16px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }

.social-card:hover { transform: translateY(-10px); background: #333; box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2); }
.social-card:hover i { transform: scale(1.1); color: #fff; }

/* Footer */
footer { padding: 30px 20px; text-align: center; background: #000; color: #777; font-size: 14px; border-top: 1px solid #222; }


/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    
    /* 1. Navbar */
    .navbar { padding: 10px 5px; flex-direction: column; gap: 5px; }
    .logo { font-size: 20px; margin-bottom: 5px; }
    .menu-icon { display: none; } 
    .nav-links { display: flex !important; flex-direction: row; width: 100%; justify-content: center; gap: 12px; padding: 0; margin-top: 5px; }
    .nav-links li { margin: 0; }
    .nav-links a { font-size: 11px; color: #ddd; text-transform: uppercase; }
    .btn-nav { padding: 4px 10px; font-size: 11px; border-radius: 3px; }

    /* 2. Hero Section */
    .hero { margin-top: 100px; height: 50vh; min-height: 400px; padding: 0 15px; }
    .hero h1 { font-size: 30px; line-height: 1.2; }
    .hero p { font-size: 14px; }

    /* 3. Package Grid (Mobile: 2 per row) */
    .package-grid { gap: 10px; }
    .package-card {
        width: 45%; 
        min-width: 150px;
        padding: 15px 10px;
    }
    .package-card h3 { font-size: 14px; }
    .price-list li { font-size: 10px; flex-direction: column; margin-bottom: 6px; }
    .btn-package { padding: 5px; font-size: 12px; }

    /* 4. REVIEWS SECTION (Desktop Style - 2 Columns) */
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    .review-box { padding: 10px; }
    .user-avatar { width: 30px; height: 30px; font-size: 14px; margin-right: 8px; }
    .user-info h4 { font-size: 12px; }
    .star-rating { font-size: 10px; margin-bottom: 5px; }
    .review-text { font-size: 10px; line-height: 1.3; }

    /* 5. SOCIAL MEDIA (Compact Grid - 2 per row) */
    .social-icons { gap: 10px; }
    .social-card { width: 45%; padding: 15px 5px; }
    .social-card i { font-size: 22px; margin-bottom: 5px; }
    .social-card span { font-size: 10px; letter-spacing: 0.5px; }

    /* Forms */
    form, .add-review-section { width: 95%; padding: 15px; box-sizing: border-box; }
    .form-row { flex-direction: column; }
                     }
/* --- LOGIN & SIGNUP MODAL STYLES --- */

/* Login Button in Navbar */
.login-btn {
    padding: 10px 20px;
    background: #007bff; /* Bright Blue */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 15px;
    transition: 0.3s;
}

.login-btn:hover {
    background: #0056b3;
}

/* Modal Background (The black overlay) */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.6); 
}

/* Modal Content Box */
.modal-content {
    background-color: #fff;
    margin: 10% auto; 
    width: 380px;
    padding: 20px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    overflow: hidden;
    height: 480px; /* Fixed height for animation */
}

/* Close Button (x) */
.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

/* Form Container */
.form-box {
    width: 100%;
    position: relative;
}

/* Toggle Buttons Box */
.button-box {
    width: 220px;
    margin: 35px auto;
    position: relative;
    box-shadow: 0 0 20px 9px #ff61241f;
    border-radius: 30px;
}

/* Buttons (Login / Sign Up) */
.toggle-btn {
    padding: 10px 30px;
    cursor: pointer;
    background: transparent;
    border: 0;
    outline: none;
    position: relative;
    font-weight: bold;
    color: #333;
}

/* The Sliding Color Background for Buttons */
#btn {
    top: 0;
    left: 0;
    position: absolute;
    width: 110px;
    height: 100%;
    background: linear-gradient(to right, #007bff, #00d4ff);
    border-radius: 30px;
    transition: .5s;
}

/* Input Fields Area */
.input-group {
    top: 150px;
    position: absolute;
    width: 280px;
    transition: .5s;
}

.input-field {
    width: 100%;
    padding: 10px 0;
    margin: 5px 0;
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #999;
    outline: none;
    background: transparent;
    color: #333;
}

/* Submit Button */
.submit-btn {
    width: 85%;
    padding: 10px 30px;
    cursor: pointer;
    display: block;
    margin: auto;
    background: linear-gradient(to right, #007bff, #00d4ff);
    border: 0;
    outline: none;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
}

/* Positioning Forms */
#login { left: 50px; }
#register { left: 450px; }
