/* Global styles */
* {
    scroll-padding-top: 90px;
    scroll-behavior: smooth;
    padding: 0;
    margin: 0; 
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0C0C1A;
    color: #B3B3B3;
    overflow-x: hidden;
}

h1, h2 {
    text-align: center; 
    font-size: 3.5rem;
    max-width: 100%;
}
h1{
      background: -webkit-linear-gradient(#41b1e6, #424683);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2{    
    color: #FFFFFF;
    font-size: 2rem;}

#about {
    padding-top: 90px;
    padding-bottom: 0%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
    background-color: #0C0C1A;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    transition: all 0.3s ease-in-out;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: #00D4FF;
}

nav ul li a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #00D4FF;
    transition: all 0.3s ease;
}

.menu-icon {
    display: none;
}

.menu-icon img {
    width: 30px;
    cursor: pointer;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    background-color: #171329;
    margin-top: 100px;
    border-radius: 12px;
    min-height: calc(100vh - 140px);
}

.iframe-container {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    background-color: #2E2E4F;
    height: 100%;
    overflow: hidden;
}

iframe {
    width: 100%;
    flex-grow: 1;
    border-radius: 12px;
    border: none;
    min-height: 300px;
}

.availability-check-form {
    flex: 1 1 50%;
    max-width: 100%;
    background-color: #1A1A2E;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    color: #EAEAEA;
}

.availability-check-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.availability-check-form label {
    font-size: 14px;
    color: #e9e9e9a9;
}

.availability-check-form input,
.availability-check-form select {
    padding: 10px;
    font-size: 14px;
    background-color: #2E2E4F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #FFFFFF;
}

.availability-check-form button {
    background-color: #00BFFF;
    color: #FFFFFF;
    padding: 12px 0;
    grid-column: span 2;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.availability-check-form button:hover {
    background-color: #009ACD;
}

.container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #EAEAEA;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    user-select: none;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #B0B0B0;
    border-radius: 4px;
}

.container input:checked ~ .checkmark {
    background-color: #00BFFF;
    animation: pulse 0.4s ease-in-out;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #1A1A2E;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 191, 255, 0);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 191, 255, 0);
        transform: scale(1);
    }
}

.availability-check-form .full-width {
    grid-column: span 2;
}
.services-grid, .amenities-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
}
.service-item, .amenity-item {
    text-align: center;
    flex: 0 0 auto;
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover, .amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(131, 141, 143, 0.555);
    animation: fadeIn 1s ease;
}
.service-item img, .amenity-item img {
    max-width: 50px;
    margin-bottom: 10px;
}
.service-item p, .amenity-item p {
    color: #FFFFFF;
    font-size: 1em;
}
.amenities-grid::-webkit-scrollbar, .services-grid::-webkit-scrollbar {
    height: 8px;
}
.amenities-grid::-webkit-scrollbar-thumb, .services-grid::-webkit-scrollbar-thumb {
    background: #00D4FF;
    border-radius: 4px;
}
.amenities-grid::-webkit-scrollbar-track, .services-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}
.services-section, .amenities-section {
    position: relative;
    padding: 0 40px;
}
.reviews-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 251, 251, 0.308);
}
.rating-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.rating-header h2 {
    font-size: 2em;
    margin-right: 15px;
}
.star-rating {
    color: #8A2BE2;
    display: flex;
    align-items: center;
}
.star-rating span {
    font-size: 1.2em;
    margin-left: 10px;
    color: #ffffff;
}
.rating-bars {
    margin-bottom: 20px;
}
.bar-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.bar-label {
    width: 50px;
    font-weight: bold;
}
.bar-container {
    flex-grow: 1;
    background-color: #e0e0e0;
    height: 8px;
    border-radius: 5px;
    margin-right: 10px;
}
.bar-fill {
    height: 100%;
    background-color: #8A2BE2;
    border-radius: 5px;
}
.bar-value {
    width: 40px;
    text-align: right;
    font-size: 0.9em;
    color: #e6e6e6;
}
.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
.tag {
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    color: #ffffff;
}
.review {
    margin-bottom: 30px;
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.reviews-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 251, 251, 0.308);
    overflow-x: hidden;
}
.review-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.review-body {
    font-size: 0.95em;
    color: #d1c8c8;
    word-wrap: break-word; 
}
.review-images {
    display: flex;
    margin-top: 10px;
    gap: 5px;
    flex-wrap: wrap;
}
.review-images img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
}
.view-all {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #8A2BE2;
    font-weight: bold;
}
.view-all:hover {
    text-decoration: underline;
}
footer {
    text-align: center;
    padding: 20px;
}

@media only screen and (max-width: 768px) {
    header {
        padding: 0 10px;
        height: 60px;
    }
    .menu-icon {
        display: block;
        cursor: pointer;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #0C0C1A;
        border-top: 1px solid #00D4FF;
    }
    nav.active ul {
        display: flex;
    }
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    .content-wrapper {
        flex-direction: column;
        padding: 20px;
    }
    .iframe-container, .availability-check-form {
        flex: 1 1 100%;
    }
    .menu-icon {
        display: block;
        cursor: pointer;
    }
    nav ul {
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        background-color: #0C0C1A;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    nav ul.active {
        display: flex;
    }
    .reviews-container {
        padding: 20px;
    }
    .review-header h4 {
        font-size: 1.1em;
    }
    .star-rating span {
        font-size: 1em;
    }
    .review {
        margin-bottom: 20px;
    }
    .reviews-container {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .availability-check-form {
        flex: 1;
        padding: 30px;
    }
    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form input[type="date"],
    form input[type="number"],
    form select {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    form button.check-btn {
        width: 100%;
        padding: 15px;
        font-size: 18px;
    }
}

