
body {
    font-family: 'Inter', sans-serif;
}

a {
    color: navy !important;
    text-decoration: none !important;
}

.hero-section {
    background-image: url('/_content/LandingApp.Shared/assets/imgs/bg1.png'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-end; /* Align content to the bottom */
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    padding-top: 60px;

}

.FiveStarText{
    color:gold;
    padding-bottom:15px;
}

    .hero-section h1 {
        padding-top:40px;
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        text-align:center;
    }

    .hero-section p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        text-align:center;
        padding-left:20px;
        padding-right:20px;
    }


.section-title {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.room-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

    .room-card:hover {
        transform: translateY(-5px);
    }

    .room-card img {
        height: 250px;
        object-fit: cover;
        width: 100%;
    }

.room-card-body {
    padding: 20px;
    text-align: center;
}

.room-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.room-card-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

    .amenities-list li {
        font-size: 0.9rem;
        color: #333;
        padding: 5px 10px;
        background-color: #f0f0f0;
        border-radius: 15px;
    }

.testimonial-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
}

    .testimonial-card p {
        font-style: italic;
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 10px;
    }

    .testimonial-card h6 {
        font-weight: 600;
        font-size: 1rem;
        color: #333;
        text-align: right;
    }

#google-form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.whatsapp-button {
    position: fixed;
    bottom: 50px;
    right: 20px;
/*    background-color: #25d366;*/
    color: white;
/*    padding: 10px 20px;*/
    border-radius: 50%;
    font-size: 2rem;
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

    .whatsapp-button:hover {
        background-color: #128c7e;
        transform: scale(1.1);
    }

.facebook-widget {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.instagram-widget {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

#map {
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.footer {
    background-color: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #4a5568;
}

    .footer p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }



.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .gallery-item:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

@media (max-width: 600px) {
    .gallery {
        padding: 20px;
    }
}







@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
        max-width: 90%;
    }

    .room-card img {
        height: 200px;
    }

    .amenities-list li {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 0.9rem;
        max-width: 95%;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .room-card-body {
        padding: 15px;
    }

    .amenities-list li {
        font-size: 0.7rem;
        padding: 4px 6px;
    }

  
}
