/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

section {
    padding: 20px;
}

h1, h2, h3 {
    color: #2c3e50;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #3498db;
}

h2 {
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    margin-top: 40px;
}

.intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
}

/* Gallery Styles */
.gallery-containers {
    max-width: 100%;
    overflow: hidden;
    margin: 20px 0;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.slideshow {
    display: flex;
    transition: transform 0.5s ease;
    animation: slide 15s infinite;
    height: 400px;
}

.slideshow img {
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    object-fit: cover;
}

@keyframes slide {
    0%, 15% { transform: translateX(0); }
    20%, 35% { transform: translateX(-100%); }
    40%, 55% { transform: translateX(-200%); }
    60%, 75% { transform: translateX(-300%); }
    80%, 95% { transform: translateX(-400%); }
    100% { transform: translateX(-500%); }
}

/* Amenities List */
.amenities-list {
    columns: 2;
    column-gap: 40px;
    padding-left: 20px;
}

.amenities-list li {
    margin-bottom: 10px;
    break-inside: avoid;
}

/* Special Features */
.special-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.feature {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

/* Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.price-tier {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.price-tier h3 {
    margin-top: 0;
    color: #3498db;
}

.price-tier p {
    font-size: 1.5em;
    font-weight: bold;
    margin: 10px 0;
    color: #2c3e50;
}

.price-tier small {
    color: #7f8c8d;
    font-size: 0.9em;
}

.note {
    font-size: 0.9em;
    color: #7f8c8d;
    text-align: center;
    margin-top: -10px;
}

/* Nearby Attractions */
.attractions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.attraction {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.attraction h3 {
    margin-top: 0;
    color: #3498db;
}

/* Call to Action Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 20px;
}

.book-now {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
}

.book-now {
    background: #3498db;
    color: white;
}

.book-now:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(41, 128, 185, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .amenities-list {
        columns: 1;
    }
    
    .special-features, .pricing-table, .attractions {
        grid-template-columns: 1fr;
    }
    
    .slideshow {
        height: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .book-now {
        text-align: center;
        width: 50%;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .slideshow {
        height: 200px;
    }
    
    h1 {
        font-size: 1.8em;
    }
}