/* Additional custom styles for mobile view */
@media (max-width: 768px) {
    .table-responsive td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        text-transform: uppercase;
    }
    .table-responsive td {
        padding-left: 50%;
        position: relative;
    }
    .table-responsive td, .table-responsive th {
        display: block;
        width: 100%;
    }
}

.h-50rem {
    height: 40rem;
}

.carousel-itm {
    height: 100vh; 
    background-size: cover;
    background-position: center;
}
  
@media (max-width: 768px) {
    .carousel-itm {
        height: 80vh; 
        background-size: contain; 
        background-position: center;
    }
}

.contact-header {
    position: relative;
    background-image: url('/img/contact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* Overlay for background image */
.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/* Header text styling */
.contact-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    z-index: 2;
    margin-bottom: 0.5rem;
    color: white;
}
.contact-header p {
    font-size: 1.25rem;
    z-index: 2;
    margin-bottom: 0;
}
/* Responsive text */
@media (max-width: 1024px) {
    .contact-header {
        height: 60vh;
    }
    .contact-header h1 {
        font-size: 2rem;
    }
    .contact-header p {
        font-size: 1rem;
    }
}

.about-contact-header {
    position: relative;
    background-image: url('/img/about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* Overlay for background image */
.about-contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/* Header text styling */
.about-contact-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    z-index: 2;
    margin-bottom: 0.5rem;
    color: white;
}
.about-contact-header p {
    font-size: 1.25rem;
    z-index: 2;
    margin-bottom: 0;
}
/* Responsive text */
@media (max-width: 1024px) {
    .about-contact-header {
        height: 60vh;
    }
    .about-contact-header h1 {
        font-size: 2rem;
    }
    .about-contact-header p {
        font-size: 1rem;
    }
}

.contact-text {
    font-size: 1.5rem;
    font-weight: 500;
}

.fs-1_2 {
    font-size: 1.2rem;
}

.fs-1 {
    font-size: 1rem;
}

.amenities-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.amenity {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
    background: #f0f0f0;
}

.amenity:hover {
    background: #e0e0e0;
}

.amenity-icon {
    font-size: 24px;
    color: #007BFF;
    margin-right: 15px;
}

.amenity-text {
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 600px) {
    .amenity {
        flex: 1 1 100%;
    }
}

.tent-camping-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tent-image {
    flex: 1;
    min-width: 300px;
    height: 100%;
}

.tent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tent-description {
    flex: 2;
    padding: 20px;
}

.tent-description h2 {
    font-size: 32px;
    margin-bottom: 10px;
    padding: 0 15px;
}

.tent-description p {
    line-height: 1.6;
    color: #555;
    padding: 0 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tent-camping-section {
        flex-direction: column;
    }

    .tent-description {
        text-align: center;
        padding: 15px;
    }
}
