/* HERO SECTION */
.hero-section {
    height: 100vh;
    background: url('/assests/Hr-upvan-inn/upavan-in.webp') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Overlay */
.hero-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #fff;
}

/* Location Badge */
.location-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Heading */
.hero-content h1 {
    font-family: "Georgia", serif;
    font-size: 70px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Subtitle */
.hero-content p {
    font-size: 16px;
    letter-spacing: 1px;
    color: #eee;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 14px;
    }
}


.about-property {
    padding: 100px 0;
    background: #fff;
    font-family: "Georgia", serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.section-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #c9a227;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 25px;
}

.about-content h2 em {
    font-style: italic;
}

.about-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 40px;
}

.check-info {
    display: flex;
    gap: 60px;
}

.check-info strong {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: #999;
}

.check-info span {
    font-size: 14px;
    color: #000;
}

/* RIGHT IMAGES */
.about-images {
    position: relative;
    height: 450px;
}

.image-box {
    position: absolute;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-box:hover img {
    transform: scale(1.08);
}

.image-one {
    width: 280px;
    height: 360px;
    top: 0;
    left: 60px;
}

.image-two {
    width: 260px;
    height: 340px;
    bottom: 0;
    right: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        height: 400px;
    }

    .image-one {
        left: 0;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 34px;
    }

    .check-info {
        gap: 30px;
    }

    .about-images {
        height: 320px;
    }

    .image-one,
    .image-two {
        width: 200px;
        height: 260px;
    }
}



.room-collection {
    padding: 70px 0;
    background: #fffaea;
    font-family: "Georgia", serif;
}

.container {
    width: 90%;
    max-width: 1200px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 400;
}

.section-header em {
    font-style: italic;
}

.section-header p {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

/* Grid */
.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.room-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Image */
.room-image {
    overflow: hidden;
    height: 50%;
}

.room-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.room-card:hover img {
    transform: scale(1.1);
}

/* Content */
.room-content {
    padding: 25px;
    text-align: center;
}

.room-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.room-content span {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Button */
.view-btn {
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 2px;
    color: #c9a227;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-btn:hover {
    color: #000;
}

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

@media (max-width: 768px) {
    .room-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 30px;
    }
}



.premium-features {
    padding: 70px 0;
    background: #f5f4f1;
    font-family: "Georgia", serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 400;
}

.section-header em {
    font-style: italic;
}

.section-header p {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

/* Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 40px;
    text-align: center;
}

/* Feature Item */
.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
}

/* Icon Circle */
.icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #ecebe7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #c6a326;
    transition: all 0.3s ease;
}

.feature-item:hover .icon {
    background: #c6a326;
    color: #fff;
}

/* Title */
.feature-item h6 {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #333;
}

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

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .icon {
        width: 75px;
        height: 75px;
        font-size: 24px;
    }
}



/* Section Background */
.why-stay-section {
    background: linear-gradient(to right, #0c0c0c 50%, rgba(0, 0, 0, 0.75)),
        url('your-image.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0;
    position: relative;
}

/* Left Content */
.left-content {
    padding-right: 50px;
}

.small-title {
    font-size: 12px;
    letter-spacing: 3px;
    color: #c8a93c;
    margin-bottom: 20px;
}

.main-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 25px;
}

.main-title span {
    color: #c8a93c;
    font-style: italic;
}

.description {
    color: #ccc;
    line-height: 1.8;
    font-size: 15px;
}

/* Right Content */
.right-content {
    padding-left: 50px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
}

.feature-box i {
    color: #c8a93c;
    font-size: 20px;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

/* Responsive */
@media (max-width: 991px) {
    .why-stay-section {
        padding: 70px 20px;
        background: linear-gradient(to bottom, #0c0c0c 50%, rgba(0, 0, 0, 0.85)),
            url('your-image.jpg') center/cover no-repeat;
    }

    .left-content,
    .right-content {
        padding: 0;
        text-align: center;
    }

    .main-title {
        font-size: 36px;
    }

    .feature-box {
        justify-content: center;
    }
}


.contact-section {
    padding: 100px 20px;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.contact-info h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 10px;
}

.contact-info h2 span {
    font-style: italic;
}

.subtitle {
    color: #777;
    margin-bottom: 40px;
    max-width: 400px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 18px;
    color: #c8a93c;
    margin-top: 5px;
}

.info-item small {
    letter-spacing: 1px;
    color: #999;
    font-size: 11px;
}

.info-item p {
    margin: 0;
    font-weight: 500;
}



/* MAP */
.map-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.map-box iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .info-item {
        justify-content: center;
        text-align: left;
    }
}



.visual-experience {
    background: #ffffff;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

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

.gallery-item.tall {
    height: 420px;
}

.gallery-item:not(.tall) {
    height: 250px;
}

#modalImage {
    max-height: 80vh;
    width: 100%;
    object-fit: contain;
}

/* Mobile Fix */
@media (max-width: 768px) {

    .gallery-item,
    .gallery-item.tall {
        height: auto;
    }
}