﻿
:root {
    --green-hotel: #4a7c64;
    --gold-hotel: #4b0612f3;
    --bg-light: #fbfcf9;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    font-family: var(--font-sans);

}

.hotel-text-green {
    color: var(--green-hotel) !important;
}

.hotel-text-gold {
    color: var(--gold-hotel) !important;
}


.about-section {
    background: #fdfcf9;
    background-image: radial-gradient( circle, rgba(196, 154, 108, 0.05) 46%, /* inner edge of ring */
    transparent 50% /* outer edge of ring */
    );
    background-repeat: repeat;
    background-size: 300px 300px;
}


/*.................*/
.service-line {
    border-bottom: 2px solid var(--green-hotel);
    width: 100%;
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
}

.services-section {
    background: url("../image/service-bg.png") repeat, #2a2a2a;
    color: #fff;
    padding: 80px 0;
}



    .services-section h2 {
        color: #eb7e0a; /* Elegant Gold */
    }

    .services-section p {
        color: #211818; /* Soft gray text for readability */
    }


/* Gallery styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(160, 129, 85, 0.4);
    }

    .gallery-item img {
        transition: transform 0.5s ease-in-out;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-content {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 0.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
    opacity: 1;
}

.gallery-title {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.gallery-link {
    display: inline-block;
    background-color: var(--gold-hotel);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out;
}

    .gallery-link:hover {
        background-color: var(--green-hotel);
    }

/* Attractions styles */
.attraction-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .attraction-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

.attraction-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold-hotel);
    margin-bottom: 0.5rem;
}

/* Hero styles */
.hero-section {
    position: relative;
    background-image: url('../image/img1.JPG');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
    animation: pan 20s infinite linear alternate;
}

@keyframes pan {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
}
/* ✅ Check-in floating card */
.check-in-section-wrapper {
    position: relative;
    margin-top: -80px; /* overlap Hero */
    z-index: 20;
    width: 90%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
/*..........................*/
.check-in-section {
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 2rem;
}




/* Gallery transitions */
.hg-title {
    font-family: var(--font-serif);
    background: linear-gradient(to right, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hg-wrapper {
    transition: all 0.6s ease-in-out;
}

.hg-faded {
    opacity: 0.5;
    transform: scale(0.9);
}

.hg-main img {
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.hg-fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.hg-fade-in {
    opacity: 1;
    transform: scale(1);
}



















