.hero {
    background-image: url("images/lake-resorts-5.jpg");
    height: 100vh;
}

/* Resort Page Styles */
.resorts {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.resort-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.resort-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.resort-section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.resort-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Content Section */
.resort-main-content {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.resort-video-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.resort-video-iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resort-description {
    padding: 3rem;
    background: #fff;
}

.resort-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.resort-intro,
.resort-details {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Features Section */
.resort-features-section {
    padding: 3rem 0;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
}

.resort-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resort-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.resort-feature:hover {
    transform: translateY(-5px);
}

.resort-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    flex-shrink: 0;
}

.resort-feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.resort-gallery-section {
    padding: 3rem 0;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.resort-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.resort-gallery-item {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.resort-gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.resort-gallery-item:hover .resort-gallery-img {
    transform: scale(1.05);
}

.resort-gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* Amenities Section */
.resort-amenities {
    padding: 3rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.amenities-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.amenity-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.amenity-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.amenity-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.resort-cta {
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/lake-resorts-1.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* .btn { */
    /* padding: 1rem 2rem;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease; */
/* } */
/* 
.btn-primary {
    background: #ffd700;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #ffed4a;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
} */
/* 
.btn-outline:hover {
    background: #fff;
    color: #1a1a1a;
} */

/* Responsive Styles */
@media (max-width: 768px) {
    .resort-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .resort-video-container {
        height: 300px;
    }

    .resort-description {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* .btn {
        width: 100%;
        text-align: center;
    } */
}

@media (max-width: 480px) {
    .resort-gallery {
        grid-template-columns: 1fr;
    }

    .resort-features {
        grid-template-columns: 1fr;
    }

    .resort-name {
        font-size: 1.8rem;
    }

    .resort-intro,
    .resort-details {
        font-size: 1rem;
    }
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.resort-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.resort-card:nth-child(2) {
    animation-delay: 0.1s;
}

.resort-card:nth-child(3) {
    animation-delay: 0.2s;
}

.resort-card:nth-child(4) {
    animation-delay: 0.3s;
}