/* Homepage specific styles - Cleaned and optimized */

/* Hero Banner Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.home-banner {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.home-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    font-size: 0.9rem;
    background-color: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 50px;
    border-left: 3px solid #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-text {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: backwards;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.hero-feature {
    margin-bottom: 10px;
    animation: fadeInRight 1s ease-out 0.6s;
    animation-fill-mode: backwards;
}

.hero-feature .icon-box {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.join-overlay {
    border-radius: 14px;
}

/* Experience Tiles */
.exp-tile {
    position: relative;
}

.exp-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
}

.btn-join-lg {
    background: linear-gradient(90deg,#9ad34a 0%, #00b2d8 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 700;
}

/* Destination Cards */
.destination-card .destination-overlay,
.new-resort-card .destination-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    padding: 18px;
}

.destination-overlay h4 {
    color: #fff;
    font-size: 1.25rem;
}

/* Benefit Tiles */
.benefit-tile h3 {
    color: #fff;
    font-size: 1.4rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .home-banner {
        height: auto;
        min-height: 550px;
    }

    .hero-title {
        font-size: 2rem;
    }
}
/* Resort Homepage Custom Styles - Cleaned */

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.text-primary {
    color: #0d6efd !important;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #198754;
    border-color: #198754;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary {
    border-color: #0d6efd;
    color: #0d6efd;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.section-title h2 {
    position: relative;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #0d6efd, #0dcaf0);
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin: 20px auto 0;
}

/* Hero Banner Section */
.hero-section {
    position: relative;
}

.home-banner {
    height: 85vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.home-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.banner-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.banner-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Experience Tiles */
.exp-tile {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.exp-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.exp-tile .card-img-top {
    height: 220px;
    object-fit: cover;
}

.exp-tile .card-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.exp-tile .card-body {
    padding: 20px;
}

.exp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exp-tile:hover .exp-overlay {
    opacity: 1;
}

/* Destination Cards */
.destination-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.destination-card .category-img {
    height: 250px;
    overflow: hidden;
}

.destination-card .category-img img {
    transition: transform 0.5s ease;
}

.destination-card:hover .category-img img {
    transform: scale(1.05);
}

.destination-overlay {
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.destination-card .category-content {
    padding: 20px;
}

/* New Resort Cards */
.new-resort-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.new-resort-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.new-resort-card .resort-badge .badge {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 15px;
}

/* Benefit Tiles */
.benefit-tile {
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-tile:hover {
    border-color: #0d6efd;
    background-color: #f8f9fa;
    transform: translateY(-5px);
}

.benefit-tile .benefit-icon {
    transition: all 0.3s ease;
}

.benefit-tile:hover .benefit-icon {
    transform: scale(1.1);
    color: #0d6efd;
}

/* Large Join Button */
.btn-join-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-in forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar Sticky */
.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .home-banner {
        height: 70vh;
        min-height: 500px;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .home-banner {
        height: 60vh;
        min-height: 450px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .home-banner {
        height: 50vh;
        min-height: 400px;
    }

    .banner-content h1 {
        font-size: 1.8rem;
    }
}

/* Additional styles from homepage.php inline CSS */
.exp-tile { position: relative; }
.exp-overlay { position: absolute; inset:0; display:flex; align-items:center; justify-content:center; background: rgba(0,0,0,0.35); }
.btn-join-lg { background: linear-gradient(90deg,#9ad34a 0%, #00b2d8 100%); color:#fff; padding:10px 24px; border-radius:40px; font-weight:700; }
.destination-card .destination-overlay, .new-resort-card .destination-overlay { position:absolute; left:0; bottom:0; right:0; background: linear-gradient(transparent, rgba(0,0,0,0.65)); padding:18px; }
.destination-overlay h4 { color:#fff; font-size:1.25rem; }
.benefit-tile h3 { color:#fff; font-size:1.4rem; }
.experiences-section .img-fluid { display:block; }

/* Membership card styles */
.membership-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border-color: #ffc107;
}
.popular-badge {
    z-index: 10;
    font-size: 0.8rem;
    font-weight: 600;
}
.plan-icon {
    opacity: 0.8;
}
.plan-price .price-amount {
    font-size: 2.2rem;
    line-height: 1;
}
.plan-features li {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Location cards */
.location-card {
    transition: all 0.3s ease;
}
.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mission cards */
.mission-card {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.mission-card:hover {
    transform: translateX(5px);
}

/* Hero features */
.hero-feature {
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}
.hero-feature:hover {
    transform: scale(1.05);
}

@media (max-width:767.98px){
    .exp-overlay h3 { font-size:1.25rem; padding:0 10px; }
    .destination-card img, .new-resort-card img { height:220px; }
    .membership-card { margin-bottom: 2rem; }
    .plan-price .price-amount { font-size: 1.8rem; }
}

/* Mobile scroll functionality */
.mobile-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.mobile-scroll::-webkit-scrollbar {
    display: none;
}
.mobile-scroll-item {
    flex: 0 0 auto;
    width: 280px;
    margin-right: 1rem;
}
.mobile-scroll-item:last-child {
    margin-right: 0;
}

/* Testimonial carousel improvements */
.carousel-control-prev, .carousel-control-next {
    width: 5%;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 10px;
}

/* Hero Section Mobile Responsiveness */
@media (max-width: 991.98px) {
    .hero-section .home-banner {
        min-height: 80vh !important;
        padding: 60px 0;
    }

    .hero-section .banner-content {
        text-align: center;
        padding: 20px 0;
    }

    .hero-section .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .hero-section .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .hero-section .hero-text {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-section .mission-cards {
        margin-bottom: 1.5rem !important;
    }

    .hero-section .mission-card {
        padding: 0.75rem 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-section .mission-card .fs-4 {
        font-size: 1.5rem !important;
    }

    .hero-section .mission-card h6 {
        font-size: 0.9rem !important;
        margin-bottom: 0.25rem !important;
    }

    .hero-section .mission-card small {
        font-size: 0.75rem !important;
    }

    .hero-section .hero-buttons {
        margin-bottom: 1.5rem !important;
    }

    .hero-section .btn-lg {
        padding: 0.5rem 1.5rem !important;
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-section .hero-features {
        justify-content: center !important;
    }

    .hero-section .hero-feature {
        margin-bottom: 0.5rem !important;
    }

    .hero-section .hero-feature .icon-box {
        width: 28px !important;
        height: 28px !important;
    }

    .hero-section .hero-feature .icon-box i {
        font-size: 12px !important;
    }

    .hero-section .hero-feature span {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section .home-banner {
        min-height: 70vh !important;
        padding: 40px 0;
    }

    .hero-section .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .hero-section .hero-title {
        font-size: 1.75rem !important;
    }

    .hero-section .hero-text {
        font-size: 0.9rem !important;
    }

    .hero-section .mission-cards .row {
        --bs-gutter-x: 0.5rem !important;
    }

    .hero-section .mission-card {
        padding: 0.5rem 0.75rem !important;
    }

    .hero-section .mission-card .fs-4 {
        font-size: 1.25rem !important;
    }

    .hero-section .mission-card h6 {
        font-size: 0.8rem !important;
    }

    .hero-section .mission-card small {
        font-size: 0.7rem !important;
    }

    .hero-section .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
    }

    .hero-section .hero-features .col-auto {
        flex: 0 0 auto !important;
        width: auto !important;
        margin-right: 0.5rem !important;
        margin-bottom: 0.25rem !important;
    }

    .hero-section .hero-feature {
        padding: 0.25rem 0.5rem !important;
    }

    .hero-section .hero-feature .icon-box {
        width: 24px !important;
        height: 24px !important;
        margin-right: 0.25rem !important;
    }

    .hero-section .hero-feature .icon-box i {
        font-size: 10px !important;
    }

    .hero-section .hero-feature span {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 575.98px) {
    .hero-section .home-banner {
        min-height: 60vh !important;
        padding: 30px 0;
    }

    .hero-section .hero-title {
        font-size: 1.5rem !important;
    }

    .hero-section .hero-subtitle {
        font-size: 0.9rem !important;
    }

    .hero-section .hero-text {
        font-size: 0.85rem !important;
    }

    .hero-section .mission-cards .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .hero-section .mission-card {
        max-width: 100% !important;
    }

    .hero-section .btn {
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-section .hero-features {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .hero-section .hero-feature {
        flex: 0 0 auto !important;
        margin-right: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
}

/* Additional Mobile Responsiveness for Other Sections */
@media (max-width: 991.98px) {
    /* Experience tiles */
    .exp-tile {
        min-height: 180px !important;
    }

    .exp-overlay h3 {
        font-size: 1.1rem !important;
    }

    .exp-overlay p {
        font-size: 0.85rem !important;
    }

    .exp-overlay .icon-circle i {
        font-size: 1.8rem !important;
    }

    /* Destination cards */
    .destination-card img,
    .new-resort-card img {
        height: 250px !important;
    }

    .destination-overlay h4 {
        font-size: 1.1rem !important;
    }

    .destination-overlay .small {
        font-size: 0.8rem !important;
    }

    /* Statistics section */
    .display-4 {
        font-size: 2rem !important;
    }

    /* Benefit tiles */
    .benefit-tile {
        min-height: 200px !important;
        padding: 1rem !important;
    }

    .benefit-tile h3 {
        font-size: 1.2rem !important;
    }

    .benefit-tile p {
        font-size: 0.85rem !important;
    }

    .benefit-tile i {
        font-size: 1.5rem !important;
    }

    /* Section titles */
    .section-title h2 {
        font-size: 1.75rem !important;
    }

    .section-title .lead {
        font-size: 1rem !important;
    }

    /* CTA section */
    .display-5 {
        font-size: 2rem !important;
    }
}

@media (max-width: 767.98px) {
    /* Experience tiles */
    .exp-tile {
        min-height: 160px !important;
    }

    .exp-overlay h3 {
        font-size: 1rem !important;
    }

    .exp-overlay p {
        font-size: 0.8rem !important;
    }

    .exp-overlay .icon-circle i {
        font-size: 1.5rem !important;
    }

    /* Destination cards */
    .destination-card img,
    .new-resort-card img {
        height: 200px !important;
    }

    .destination-overlay {
        padding: 1rem !important;
    }

    .destination-overlay h4 {
        font-size: 1rem !important;
    }

    /* Statistics */
    .display-4 {
        font-size: 1.75rem !important;
    }

    .stat-icon i {
        font-size: 2rem !important;
    }

    /* Benefit tiles */
    .benefit-tile {
        min-height: 180px !important;
        padding: 0.75rem !important;
    }

    .benefit-tile h3 {
        font-size: 1.1rem !important;
    }

    .benefit-tile p {
        font-size: 0.8rem !important;
    }

    .benefit-tile i {
        font-size: 1.25rem !important;
    }

    /* Section titles */
    .section-title h2 {
        font-size: 1.5rem !important;
    }

    .section-title .lead {
        font-size: 0.9rem !important;
    }

    /* CTA section */
    .display-5 {
        font-size: 1.75rem !important;
    }

    .lead {
        font-size: 0.95rem !important;
    }

    /* Location cards */
    .location-card {
        padding: 1rem !important;
    }

    .location-card h6 {
        font-size: 0.9rem !important;
    }

    .location-card small {
        font-size: 0.75rem !important;
    }

    .location-card i {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 575.98px) {
    /* Experience tiles */
    .exp-tile {
        min-height: 140px !important;
    }

    .exp-overlay h3 {
        font-size: 0.95rem !important;
    }

    .exp-overlay p {
        font-size: 0.75rem !important;
    }

    .exp-overlay .icon-circle i {
        font-size: 1.25rem !important;
    }

    /* Destination cards */
    .destination-card img,
    .new-resort-card img {
        height: 180px !important;
    }

    .destination-overlay h4 {
        font-size: 0.9rem !important;
    }

    /* Statistics */
    .display-4 {
        font-size: 1.5rem !important;
    }

    .stat-icon i {
        font-size: 1.5rem !important;
    }

    /* Benefit tiles */
    .benefit-tile {
        min-height: 160px !important;
        padding: 0.5rem !important;
    }

    .benefit-tile h3 {
        font-size: 1rem !important;
    }

    .benefit-tile p {
        font-size: 0.75rem !important;
    }

    .benefit-tile i {
        font-size: 1rem !important;
    }

    /* Section titles */
    .section-title h2 {
        font-size: 1.25rem !important;
    }

    .section-title .lead {
        font-size: 0.85rem !important;
    }

    /* CTA section */
    .display-5 {
        font-size: 1.5rem !important;
    }

    .lead {
        font-size: 0.9rem !important;
    }

    /* Location cards */
    .location-card {
        padding: 0.75rem !important;
    }

    .location-card h6 {
        font-size: 0.8rem !important;
    }

    .location-card small {
        font-size: 0.7rem !important;
    }

    .location-card i {
        font-size: 1rem !important;
    }

    /* Mobile scroll items */
    .mobile-scroll-item {
        width: 250px !important;
    }
}

/* Join Form Overlay Mobile Improvements */
@media (max-width: 991.98px) {
    .join-overlay {
        position: static !important;
        margin-top: 2rem !important;
    }

    .join-overlay .card {
        border-radius: 15px !important;
    }
}

/* General Mobile Improvements */
@media (max-width: 767.98px) {
    /* Container padding */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Section padding */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Card improvements */
    .card {
        border-radius: 10px !important;
    }

    .card-body {
        padding: 1rem !important;
    }

    /* Button improvements */
    .btn {
        border-radius: 8px !important;
        font-weight: 600 !important;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
    }

    /* Text improvements */
    h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .lead {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }

    /* Icon improvements */
    .bi {
        vertical-align: -0.125em !important;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px !important;
        padding: 0.75rem 1rem !important;
    }

    .nav-link {
        min-height: 44px !important;
        padding: 0.75rem 1rem !important;
    }

    .card {
        margin-bottom: 1rem !important;
    }
}

/* Hero Background Mobile Optimization */
@media (max-width: 767.98px) {
    .hero-section .home-banner {
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
    }

    .hero-section .banner-content {
        background: rgba(0, 0, 0, 0.4) !important;
        border-radius: 15px !important;
        padding: 1.5rem !important;
        margin: 1rem !important;
        backdrop-filter: blur(5px) !important;
    }

    /* Hide mission cards and hero features on mobile */
    .hero-section .mission-cards {
        display: none !important;
    }

    .hero-section .hero-features {
        display: none !important;
    }
}

/* Improved Mobile Typography */
@media (max-width: 575.98px) {
    .hero-section .hero-title {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    }

    .hero-section .hero-text {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
    }

    .hero-section .mission-card {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    }
}

/* Resort Showcase Section */
.resort-showcase-image {
    position: relative;
}

.resort-showcase-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.resort-showcase-image img:hover {
    transform: scale(1.02);
}
