.hero-section {
    background: url('/assests/out1.jpeg') center/cover no-repeat;
    min-height: 80vh;
    position: relative;
}

/* Dark Overlay */
.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35));
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: #c49a2c;
    color: #fff;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 20px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Heading */
.hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    font-style: italic;
    color: #f5d27a;
}

/* Text */
.hero-text {
    font-size: 18px;
    max-width: 620px;
    margin-bottom: 30px;
    color: #ddd;
}

/* Buttons */
.hero-buttons .hero-btn {
    background: #f39c12;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    margin-right: 12px;
}

.hero-buttons .hero-btn:hover {
    background: #d98200;
}

.hero-btn-outline {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons .btn {
        display: block;
        width: fit-content;
        margin-bottom: 12px;
    }
}



.info-card {
    background: white;
    border-radius: 20px;
    padding: 22px 25px;
}

/* Icon Box */
.icon-box {
    width: 46px;
    height: 46px;
    background: #fff7cc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 18px;
    color: #f39c12;
}

/* Text */
.info-item small {
    font-size: 12px;
    font-weight: 600;
    color: #777;
    letter-spacing: 1px;
}

.info-item h6 {
    font-size: 15px;
    font-weight: 700;
    margin-top: 2px;
}

/* Button */
.book-btn {
    background: #0b0b2d;
    color: white;
    border-radius: 30px;
    padding: 12px 26px;
    font-weight: 600;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: #f39c12;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .info-card {
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }

    .icon-box {
        margin-right: 10px;
    }
}


.rooms-section {
    background: #f9fbfd;
}

/* Title */
.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-subtitle {
    max-width: 720px;
    margin: auto;
    font-size: 15px;
    color: #777;
}

/* Room Card */
.room-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* Image */
.room-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Body */
.room-body {
    padding: 20px;
}

.room-title {
    font-weight: 700;
    font-size: 18px;
}

.price {
    color: #f39c12;
    font-weight: 700;
    font-size: 15px;
}

/* Text */
.room-text {
    font-size: 14px;
    color: #666;
    margin: 10px 0 14px;
}

/* Features Pills */
.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.room-features span {
    font-size: 12px;
    background: #f3f6fb;
    padding: 6px 12px;
    border-radius: 20px;
    color: #555;
}

/* View Link */
.view-link {
    color: #f39c12;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.view-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .room-img {
        height: 220px;
    }
}



.priority-section {
    background: radial-gradient(circle at top right, #1c1b35, #090916);
    padding: 80px 0;
    position: relative;
    margin-top: 5%;
    overflow: hidden;
}

/* Star Decoration */
.priority-section::after {
    content: "★";
    position: absolute;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.05);
    top: 40px;
    right: 80px;
}

/* Title */
.priority-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.priority-title span {
    color: #f39c12;
    font-style: italic;
}

/* Text */
.priority-text {
    font-size: 15px;
    color: #ccc;
    margin-top: 15px;
    max-width: 520px;
}

/* Feature */
.feature-item {
    gap: 14px;
    margin-top: 20px;
}

.feature-item h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13px;
    color: #aaa;
}

/* Icon */
.icon-circle {
    width: 48px;
    height: 48px;
    background: #f39c12;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

/* Image Card */
.image-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(8px);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .priority-title {
        font-size: 30px;
    }

    .image-card {
        margin-top: 30px;
        width: 95vw;
        height: 50vh;
    }

    .priority-section {
        padding: 70px 0;
    }
}