/* Booking */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
   
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)) no-repeat center center fixed,
                url('/assets/images/Aperture.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    height: 100vh;   
    margin: 0;
}


header {
    padding: 20px;
    color: #cb962e;
    position: relative;
}


header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #ffffff;
}


.hero-logo {
    width: 220px;
    /* Adjust the size of the logo */
    height: auto;
}

.back-to-home-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: #cb962e;
    border: 2px solid #cb962e;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.back-to-home-btn:hover {
    background: #cb962e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203, 150, 46, 0.4);
}

.back-to-home-btn i {
    font-size: 1rem;
}






.form-container {
    display: flex;
    justify-content: space-around;
    margin: 20px auto;
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.form-left, .form-right {
    width: 45%;
}

label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: 2px solid #ffcc00;
}

.chosen-package {
    margin-top: 20px;
    font-size: 1rem;
}

.chosen-package a {
    color: #ffcc00;
    text-decoration: none;
    margin-left: 5px;
}

.terms-section {
    margin-top: 20px;
    background: rgba(203, 150, 46, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 2px solid rgba(203, 150, 46, 0.3);
}

.terms-text {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #cb962e;
}

.terms-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.terms-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ffffff;
}

.submit-btn-container {
    text-align: center;
    margin: 20px auto;
}

button {
    background: #ffcc00;
    color: #000;
    border: none;
    border-radius: 5px;
    padding: 10px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #e6b800;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        flex-direction: column;
        padding: 20px;
    }

    .form-left, .form-right {
        width: 100%;
    }

    header h1 {
        font-size: 1.5rem;
    }

    header p {
        font-size: 1rem;
    }

    .hero-logo {
        width: 150px;
    }

    .back-to-home-btn {
        position: static;
        display: inline-flex;
        margin: 10px auto;
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .terms-section {
        padding: 12px;
    }

    .terms-text {
        font-size: 0.9rem;
    }

    .terms-list li {
        font-size: 0.85rem;
    }
}
