/* ===============================
   RESET & BASE
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url("../images/bg.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    overflow-x: hidden;
}

/* ===============================
   HEADER / NAV
================================= */
header {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: gold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

header nav ul li a,
header nav ul li button {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

header nav ul li a:hover,
header nav ul li button:hover {
    color: gold;
}

header nav ul li a.active {
    color: gold;
    font-weight: bold;
    border-bottom: 2px solid gold;
}

/* Responsive nav */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 10px;
    }

    header nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ===============================
   HERO SECTION
================================= */
.hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
                url('../images/hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 0 20px;
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn {
    background: gold;
    padding: 12px 25px;
    text-decoration: none;
    color: black;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #fff;
    color: gold;
    transform: scale(1.05);
}

/* ===============================
   SECTIONS
================================= */
section {
    padding: 70px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    margin: 30px auto;
    max-width: 1100px;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: gold;
    display: block;
    margin: 10px auto;
    border-radius: 2px;
}

section p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #333;
}

/* ===============================
   FOOTER
================================= */
footer {
    background: rgba(0, 0, 0, 0.7);
    color: #bbb;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.95rem;
}

footer a {
    color: gold;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

footer a:hover {
    color: #fff;
    transform: scale(1.2);
}

/* ===============================
   ANIMATIONS
================================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===============================
   CONTACT FORM
================================= */
.contact-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 80px 20px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 900px;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-card h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 25px;
    text-align: center;
}

.contact-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
    border-color: #8a2be2;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
}

.contact-card textarea {
    resize: none;
    min-height: 150px;
}

.contact-card button {
    width: 100%;
    padding: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    color: black;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    background: linear-gradient(to right, #8a2be2, #4b0082);
    transition: all 0.3s ease;
}

.contact-card button:hover {
    background: linear-gradient(to right, #4b0082, #8a2be2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ===============================
   BOOKING FORM
================================= */
.booking-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: #333;
}

.booking-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #4b0082;
}

.booking-form div {
    margin-bottom: 1rem;
}

.booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.booking-form textarea {
    min-height: 120px;
    resize: none;
}

.booking-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #8a2be2, #4b0082);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.booking-form .success {
    text-align: center;
    color: green;
    margin-bottom: 1rem;
}

.booking-form .errors {
    color: red;
    background: #ffe6e6;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* ===============================
   MC / ADMIN DASHBOARD
================================= */
.dashboard {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 1rem;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    color: #333;
}

.dashboard h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #4b0082;
}

.dashboard table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.dashboard table th,
.dashboard table td {
    padding: 0.8rem;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 0.95rem;
}

.dashboard table th {
    background-color: #f0f0f0;
}

.dashboard table tr:nth-child(even) {
    background-color: #fafafa;
}

.dashboard table select {
    padding: 0.3rem;
    border-radius: 6px;
    cursor: pointer;
}

.dashboard .success {
    text-align: center;
    color: green;
    margin-bottom: 1rem;
}

/* Pagination */
.dashboard .pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 1rem;
}

.dashboard .pagination a,
.dashboard .pagination span {
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    color: #4b0082;
}

.dashboard .pagination a:hover {
    background-color: #4b0082;
    color: #fff;
}
.btn {
    background: linear-gradient(to right, #8a2be2, #4b0082);
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.services h3 {
    color: black !important; /* force solid black */
}
.services h2 {
    color: gold
}



