.hero_area {
    margin-bottom: 3rem;
}

.main-title {
    margin-top: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.main-title h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #8b4513;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.description-text strong {
    color: black;
    font-weight: 600;
}

.amenities-section {
    margin: 4rem 0;
}

.amenity-card {
    background: linear-gradient(135deg, #f8f6f0, #ffffff);
    border: 2px solid #deb887;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(222, 184, 135, 0.3);
    border-color: #cd853f;
}

.amenity-card h3 {
    color: #8b4513;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.amenity-card .read-more-btn {
    background: linear-gradient(135deg, #deb887, #cd853f);
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.amenity-card .read-more-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(222, 184, 135, 0.4);
}

.amenity-content {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #deb887;
}

.amenity-content.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.amenity-content ul {
    list-style: none;
    padding: 0;
}

.amenity-content li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.amenity-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #deb887;
    font-weight: bold;
    font-size: 1.2rem;
}

.close-btn {
    background: transparent;
    border: 2px solid #deb887;
    color: #8b4513;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.close-btn:hover {
    background: #deb887;
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-section {
    text-align: center;
    margin: 3rem 0;
}

.image-section img {
    max-width: 60%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-section img:hover {
    transform: scale(1.02);
}

.checkin-section {
    background: linear-gradient(135deg, rgba(222, 184, 135, 0.1), rgba(255, 255, 255, 0.9));
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 1px solid rgba(222, 184, 135, 0.3);
}

.checkin-section h2 {
    color: #8b4513;
    text-align: center;
    margin-bottom: 1.5rem;
}

.checkin-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.checkin-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.checkin-item strong {
    color: #8b4513;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .main-title h1 {
        font-size: 2rem;
    }
    
    .amenity-card {
        margin: 1rem 0;
    }
    
    .checkin-info {
        gap: 1rem;
    }
    
    .image-section img {
        max-width: 90%;
    }
}