body {
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    padding: 0;
    box-sizing: border-box;
    font-family: "Georgia", serif;
    overflow-x: hidden;
}

.container {
    width: 1170px;
    margin: 0 auto;
}
/* HEADER LOGO */
.logo-header {
    position: absolute;
    top: 10px;
    width: 100%;
    z-index: 10;
    text-align: left;
}

    .logo-header img {
        height: 150px;
        padding-left: 0px;
    }

/* WRAP logo + text together */
.logo-wrap {
    display: inline-block;
    padding-left: 5px; /* SAME as image earlier */
}

    /* Logo image */
    .logo-wrap img {
        height: 150px;
        display: block;
    }

/* Text below logo */
.logo-text {
    display: block;
    margin-top: -20px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #d4af37; /* GOLD */
    font-family: "Georgia", serif;
    padding-left: 15px;
}

.logo-header p {
    color: #eb9a0a;
    font-size: 14px;
    font-weight: 500;
}
/* Banner */
.banner-img {
    height: 100vh;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.2));
}

.banner-content {
    bottom: 50%;
    transform: translateY(50%);
    max-width: 550px;
}

    .banner-content h1 {
        font-size: 3rem;
        font-weight: 700;
        font-family: "Georgia", serif;
    }

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    font-family: "Georgia", serif;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
}

/* Mobile */
@media(max-width:768px) {

    .banner-img {
        height: 70vh;
    }

    .banner-content h1 {
        font-size: 2rem;
    }
}

.about-section {
    padding: 80px 70px;
    background: #f8f6f3;
}

.about-wrapper {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Text */
.about-content {
    flex: 0.9;
}

    .about-content h2 {
        font-size: 38px;
        margin-bottom: 24px;
        color: #5a4a3a;
        font-family: "Georgia", serif;
    }

    .about-content p {
        font-size: 17px;
        line-height: 1.9;
        color: #555;
        font-family: "Georgia", serif;
    }

/* Image */
.about-image {
    flex: 1.4; /* makes image wider */
}

    .about-image img {
        width: 100%;
        height: auto; /* FULL image */
        display: block;
        border-radius: 20px;
        object-fit: contain; /* NO crop */
        box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    }

        .about-image img:hover {
            transform: scale(1.02);
            transition: 0.4s ease;
        }

/* Responsive */
@media (max-width: 900px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        flex: 1;
    }

    .about-image {
        flex: 1;
    }

    .about-section {
        padding: 70px 25px;
    }
}

.why-us {
    background: linear-gradient(135deg, #ffffff, #f5f7fa);
    padding: 80px 70px;
}

.why-wraper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: auto;
    max-width: 1400px;
}

.why-text {
    flex: 0.9;
    color: #1f2933;
}

    .why-text h2 {
        font-size: 38px;
        margin-bottom: 20px;
        color: #5a4a3a;
        letter-spacing: 0.5px;
        font-family: "Georgia", serif;
    }

    .why-text p {
        font-size: 17px;
        line-height: 1.8;
        color: #4a5568;
        max-width: 540px;
        font-family: "Georgia", serif;
    }

    .why-text .website {
        display: inline-block;
        margin-top: 22px;
        font-size: 14px;
        color: #8b6f3d; /* soft gold */
        font-weight: 500;
    }

.why-image {
    flex: 1.4;
}

    .why-image img {
        width: 100%;
        height: auto; /* FULL image */
        display: block;
        border-radius: 20px;
        object-fit: contain; /* NO crop */
        box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    }

        /* Hover effect */
        .why-image img:hover {
            transform: scale(1.02);
            transition: 0.4s ease;
        }

/* Responsive */
@media (max-width: 900px) {
    .why-wraper {
        flex-direction: column;
        text-align: center;
    }

    .why-text p {
        margin: auto;
    }

    .why-image {
        flex: 1;
    }

    .why-us {
        padding: 70px 25x;
    }
}

/* Section */
.amenities-section {
    padding: 40px 80px;
    background: #f6f1ed;
    text-align: center;
}

/* Title */
.amenities-title {
    font-size: 38px;
    color: #5a4a3a;
    margin-bottom: 20px;
    font-family: "Georgia", serif;
}

.amenities-section p {
    margin-bottom: 40px;
    font-size: 15px;
    font-family: "Georgia", serif;
}

/* Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px 30px;
}

/* Card */
.amenity-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20PX;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(6px);
}
    /* ZOOM ANIMATION */
    .amenity-card:hover {
        transform: scale(1.08);
        filter: brightness(1.15);
    }


/* Icon circle */
.icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #c9a24d;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 38PX;
}


.icon {
    font-size: 26px;
}

/* Text */
.amenity-card h3 {
    margin: 0;
    font-size: 15px;
    color: #5a4a3a;
    line-height: 1.3;
    padding: 0;
}


/* Responsive */
@media (max-width: 768px) {
    .amenities-section {
        padding: 70px 25px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .amenities-title {
        font-size: 34px;
    }
}
/* Base animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade + slide animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Amenities card entrance */
.amenity-card {
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
}

    /* Staggered appearance */
    .amenity-card:nth-child(1) {
        animation-delay: 0.15s;
    }

    .amenity-card:nth-child(2) {
        animation-delay: 0.35s;
    }

    .amenity-card:nth-child(3) {
        animation-delay: 0.55s;
    }

    .amenity-card:nth-child(4) {
        animation-delay: 0.75s;
    }

/* Hover lift + soft glow */
.amenity-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .amenity-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    }


/* Gentle icon pulse */
@keyframes iconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.icon-wrap {
    animation: iconPulse 3s ease-in-out infinite;
}

.rooms {
    background: #f2f4fb;
    padding: 40px 60px;
    text-align: center;
}

.rooms-title {
    font-size: 38px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #5a4a3a;
    font-family: "Georgia", serif;
}

.rooms-subtitle {
    font-size: 15px;
    margin-bottom: 50px;
    color: #666;
    font-family: "Georgia", serif;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.room-img {
    overflow: hidden;
    border-radius: 14px;
}

    .room-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: transform 0.8s ease, filter 0.8s ease;
    }

    /* ZOOM ANIMATION */
    .room-img:hover img {
        transform: scale(1.08);
        filter: brightness(1.05);
    }

.room-text {
    padding: 20px;
}

    .room-text h3 {
        font-size: 24px;
        margin-bottom: 10px;
        color: #5a4a3a;
        font-family: "Georgia", serif;
    }

    .room-text p {
        font-size: 15px;
        color: #555;
        line-height: 1.6;
        font-family: "Georgia", serif;
    }

/* Responsive */
@media (max-width: 900px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}
/* View Section */
.view-section {
    text-align: center;
    padding: 30px 10%;
    background: #fff;
}

    .view-section h2 {
        font-size: 38px;
        margin-bottom: 10px;
        color: #5a4a3a;
        font-family: "Georgia", serif;
    }

    .view-section p {
        max-width: 700px;
        margin: 0 auto 40px;
        font-size: 15px;
        color: #555;
        font-family: "Georgia", serif;
    }

.view-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.view-card img {
    width: 100%;
    border-radius: 6px;
    transition: transform 0.4s ease;
}

.view-card:hover img {
    transform: scale(1.05);
}

.view-card h5 {
    margin-top: 10px;
    font-weight: normal;
}

.view-card {
    overflow: hidden;
    border-radius: 8px;
}

    .view-card img {
        width: 100%;
        transition: transform 0.6s ease, filter 0.6s ease;
    }

    .view-card:hover img {
        transform: scale(1.08);
        filter: brightness(1.05);
    }

.event-section {
    padding: 68px 70px;
    background: #f8f6f3;
}

.event-wrapper {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Text */
.event-content {
    flex: 0.9;
}

    .event-content h2 {
        font-size: 38px;
        margin-bottom: 24px;
        color: #5a4a3a;
        font-family: "Georgia", serif;
    }

    .event-content p {
        font-size: 17px;
        line-height: 1.9;
        color: #555;
        font-family: "Georgia", serif;
    }

/* Image */
.event-image {
    flex: 1.4; /* makes image wider */
}

    .event-image img {
        width: 100%;
        height: auto; /* FULL image */
        display: block;
        border-radius: 20px;
        object-fit: contain; /* NO crop */
        box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    }

        .event-image img:hover {
            transform: scale(1.02);
            transition: 0.4s ease;
        }
/* Responsive */
@media (max-width: 900px) {
    .event-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .event-content {
        flex: 1;
    }

    .event-image {
        flex: 1;
    }

    .event-section {
        padding: 70px 25px;
    }
}

/* Gallery */
.gallery-section {
    padding: 60px 80px;
    text-align: center;
    font-family: "Georgia", serif;
}

    .gallery-section h2 {
        padding-bottom: 20px;
        color: #5a4a3a;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: none;
    box-shadow: none; /* optional */
}

    /* Image */
    .gallery-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    /* Text below image */
    .gallery-card h5 {
        margin: 12px;
        text-align: center;
        font-size: 16px;
        color: #444;
        font-weight: 600;
        text-transform: capitalize;
        background: transparent;
    }

.review-section {
    background: linear-gradient(to bottom, #f6f1e8, #eee7db);
    font-family: "Georgia", serif;
}

    .review-section h2 {
        color: #5a4a3a;
    }

.review-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    height: 100%;
    transition: .4s;
    min-height: 220px;
}

    .review-box:hover {
        transform: translateY(-6px);
    }



.review-tag {
    font-size: 13px;
    color: #777;
    margin-top: 10px;
}



/* Location Section */
.location-section {
    background: url(../images/37f2d544-e595-4023-b6b0-b1a152b85db4.png) center / cover no-repeat;
    min-height: 50vh;
    padding: 120px 10%;
    position: relative;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    color: #fff;
}

    .location-section .overlay {
        background: rgba(0, 0, 0, 0.55);
        color: #fff;
        padding-top: 60px;
        text-align: center;
        position: absolute;
        inset: 0;
    }

    .location-section h2 {
        margin-bottom: 25px;
        font-size: 28px;
        font-family: "Georgia", serif;
    }

    .location-section ul {
        list-style: none;
        line-height: 2;
        font-size: 16px;
        text-decoration: none;
        padding-bottom: 20px;
    }

/* Responsive */
@media (max-width: 600px) {
    .view-section h2,
    .gallery-section h2,
    .distance-content h2 {
        font-size: 24px;
    }
}
/* Layout */
.map-section {
    padding: 40px 10px;
    box-sizing: border-box;
}

.map-layout {
    max-width: 1200px;
    margin: auto;
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f0e9e9;
}

/* LEFT FORM */
.map-form {
    flex: 1;
    padding: 20px;
    position: relative;
    min-height: 480px;
}

.location-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #1f3c88;
    outline: none;
}

.middle-area {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    margin-left: 60px;
}

.search-btn {
    border: 2px solid #1f3c88;
    background: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
}

.result-box {
    border: 2px solid #1f3c88;
    padding: 8px;
    text-align: center;
}

/* Path */
.path {
    position: absolute;
    left: 20px;
    top: 80px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin {
    width: 16px;
    height: 16px;
    border: 3px solid #1f3c88;
    border-radius: 50%;
}

.line {
    flex: 1;
    border-left: 3px dashed #1f3c88;
    margin: 6px 0;
}

/* Hotel */
.hotel-box {
    position: absolute;
    bottom: 40px;
    left: 15%;
    transform: translateX(-50%);
    border: 2px solid #1f3c88;
    padding: 10px 22px;
    font-weight: bold;
    text-align: left;
}

/* RIGHT MAP */
.map-box {
    flex: 1;
}

    .map-box iframe {
        width: 100%;
        height: 100%;
        min-height: 480px;
        border: none;
    }

/* Responsive */
@media (max-width: 768px) {
    .map-layout {
        flex-direction: column;
    }

    .map-box iframe {
        min-height: 300px;
    }
}

.hotel-footer {
    background: #faf8f4;
    border-top: 3px solid #c9a24d;
}

.footer-box {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    padding: 0 30px;
    text-align: center;
}

    .footer-col:not(:last-child) {
        border-right: 1.5px solid #c9a24d;
    }

.logo {
    width: 200px;
    height: 150px;
}

.footer-col h3 {
    color: #b18a2e;
    font-size: 26px;
    margin: 4px 0;
}

.footer-col h4 {
    color: #b18a2e;
    margin-bottom: 15px;
}

.company {
    font-weight: 600;
}

.footer-col p {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin: 4px 0;
}

    .footer-col p:hover {
        font-weight: 600;
        font-size: 20px;
        color: #8b6f3d;
    }

.footer-col i {
    color: #c9a24d;
    margin-right: 6px;
}

/* Social */

.social-icons a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    background-color: #4a5568;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #c9a24d;
    margin: 8px;
    transition: .3s;
    padding-left: 5px;
}

    .social-icons a:hover {
        background-color: #eef2f3;
    }


/* Bottom */

.tagline {
    margin-top: 20px;
    text-align: center;
    font-size: 17px;
    color: #444;
}

.gold-line {
    width: 50%;
    height: 2px;
    background: #c9a24d;
    margin: 5px auto;
}

.copy {
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* 📱 Responsive */

@media (max-width: 900px) {

    .footer-box {
        flex-direction: column;
    }

    .footer-col {
        padding: 25px 10px;
    }

        .footer-col:not(:last-child) {
            border-right: none;
            border-bottom: 1.5px solid #c9a24d;
        }
}
/* Layout */
.map-layout {
    display: flex;
    height: 520px;
    width: 100%;
}

/* LEFT 25% */
.search-panel {
    width: 30%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    /* Blur background */
    .search-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        background: rgba(255, 255, 255, 0.55);
    }

/* Card */
.search-card {
    position: relative;
    z-index: 2;
    width: 85%;
    padding: 30px 26px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
    text-align: center;
}

/* Entrance animation */
.animate-card {
    animation: slideFade 0.7s ease forwards;
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MAK HOTEL badge */
.hotel-badge {
    display: inline-block;
    background: linear-gradient(135deg, #b88a44, #e7c27d);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Heading */
.search-card h3 {
    margin: 8px 0 4px;
    font-size: 22px;
    font-weight: 700;
}

.search-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/* Input */
.input-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
}

    .input-group input:focus {
        border-color: #b88a44;
        box-shadow: 0 0 0 3px rgba(184, 138, 68, 0.15);
    }

/* Button */
.search-btn {
    margin-top: 18px;
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #b88a44, #e7c27d);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .search-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(184, 138, 68, 0.35);
    }

/* Result box */
.result-box {
    margin-top: 22px;
    padding: 18px 10px;
    font-size: 24px;
    font-weight: 800;
    color: #b88a44;
    border-radius: 14px;
    background: #fff;
    border: 2px dashed rgba(184, 138, 68, 0.4);
    animation: pulseSoft 2s infinite;
}

/* Soft pulse */
@keyframes pulseSoft {
    0% {
        box-shadow: 0 0 0 0 rgba(184,138,68,0.35);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(184,138,68,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(184,138,68,0);
    }
}

/* Error */
.error-box {
    margin-top: 10px;
    color: #d32f2f;
    font-size: 12px;
}

/* RIGHT 75% */
.map-box {
    width: 70%;
}

    .map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
/* ===========================
   RESPONSIVE MAP SECTION
=========================== */

/* Tablet */
@media (max-width: 992px) {

    .map-layout {
        height: auto;
        flex-direction: column;
    }

    .search-panel,
    .map-box {
        width: 100%;
    }

    .search-panel {
        padding: 40px 0;
    }

    .search-card {
        width: 90%;
        max-width: 420px;
    }

    .map-box {
        height: 400px;
    }
}


/* Mobile */
@media (max-width: 600px) {

    .search-card {
        padding: 24px 18px;
    }

        .search-card h3 {
            font-size: 20px;
        }

    .result-box {
        font-size: 20px;
        padding: 14px;
    }

    .map-box {
        height: 320px;
    }
}


/* Large screens */
@media (min-width: 1400px) {
    .map-layout {
        max-width: 1400px;
        margin: auto;
    }
}
