/* style.css — Modern White Theme (clean hotel look) */

/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body {
    height: 100%
}

body {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    color: #222;
    background: #f6f7f8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    width: min(1150px, 94%);
    margin: 0 auto
}

/* NAVBAR - larger */
.navbar {
    background: #ffffff;
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 1100;
    box-shadow: 0 4px 18px rgba(15, 15, 15, 0.05);
}

.navbar .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: #111
}

.nav-links {
    display: flex;
    gap: 34px;
    align-items: center;
    list-style: none
}

.nav-links a {
    font-size: 18px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    transition: color .18s
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff8c00
}

/* mobile menu icon */
.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #222
}

/* HERO (all pages) */
.home-hero,
.about-header,
.rooms-header,
.gallery-header,
.contact-header {
    min-height: 56vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    filter: brightness(1.25);
    /* brighter hero images */
}

/* subtle overlay for readability */
.page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.18));
}

/* hero text */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 28px;
}

.hero-content h1 {
    font-size: 44px;
    margin-bottom: 8px;
    line-height: 1.05;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35)
}

.hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 12px
}

/* CTA button */
.btn {
    display: inline-block;
    background: #ff8c00;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.12);
    transition: transform .18s, box-shadow .18s;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(255, 140, 0, 0.18)
}

/* MAIN LAYOUT */
main {
    margin-top: 36px
}

/* ABOUT PREVIEW (grid to avoid mixing) */
.home-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    background: #fff;
    padding: 34px;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(10, 10, 10, 0.04);
    margin-bottom: 36px;
}

.home-about .about-text h2 {
    font-size: 26px;
    margin-bottom: 12px
}

.home-about .about-text p {
    color: #555;
    margin-bottom: 14px
}

.home-about img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover
}

/* ROOMS PREVIEW */
.home-rooms {
    margin: 18px 0 40px
}

.home-rooms h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 18px
}

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

.room-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    width: 320px;
    transition: 0.3s ease;
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.room-book-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: #ff9800;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease;
}

.room-book-btn:hover {
    background: #e68900;
    transform: translateY(-2px);
}


/* GALLERY (grid) */
.gallery-preview {
    margin: 36px 0
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px
}

/* CONTACT PAGE LAYOUT */
.contact-wrapper {
    padding: 40px;
    display: flex;
    justify-content: center;
}

.contact-box {
    width: 85%;
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* LEFT SIDE INFO */
.contact-info {
    width: 35%;
    background: #ffffff;
    padding: 30px;
    color: #333;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    margin: 15px 0;
    font-size: 15px;
}

.contact-info i {
    margin-right: 10px;
}

/* Social Icons */
.contact-social a {
    font-size: 22px;
    color: #fff;
    margin-right: 14px;
}

/* RIGHT SIDE FORM */
.contact-form {
    width: 65%;
}

.contact-form h2 {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.contact-form textarea {
    height: 130px;
    resize: none;
}

.contact-form .btn {
    background: #ff9800;
    color: #fff;
    padding: 12px 26px;
    margin-top: 10px;
    border-radius: 8px;
}

.map-section iframe {
    margin-top: 40px;
    border-radius: 14px;
}

/* FOOTER */
footer {
    background: #fff;
    padding: 48px 0 18px;
    margin-top: 40px;
    border-top: 1px solid #eee
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
    text-align: left
}

.footer-grid h4 {
    margin-bottom: 12px
}

.footer-links a {
    display: block;
    color: #444;
    text-decoration: none;
    margin-bottom: 8px
}

.footer-links a:hover {
    color: #ff8c00
}

/* SOCIAL ICONS FIX — show original brand colors */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;   /* medium size */
}

.social-icons a {
    transition: 0.3s;
}

/* BRAND COLORS */
.social-icons a .fa-instagram {
    color: #E1306C;
}

.social-icons a .fa-facebook {
    color: #1877F2;
}

.social-icons a .fa-twitter {
    color: #1DA1F2;
}

.social-icons a .fa-youtube {
    color: #FF0000;
}

/* OPTIONAL: Hover effect */
.social-icons a:hover i {
    opacity: 0.7;
}


/* copyright center */
.copy {
    text-align: center;
    color: #666;
    margin-top: 18px;
    font-size: 14px
}

/* WhatsApp floating button — use inline svg to ensure it always shows */
.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.18);
    z-index: 1200
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

/* small social images fallback (if you use PNG icons) */
.social-img {
    display: none
}

.social-img img {
    width: 22px;
    height: auto
}

/* RESPONSIVE */
@media (max-width:980px) {
    .nav-links {
        gap: 20px;
        font-size: 16px
    }

    .home-about {
        grid-template-columns: 1fr
    }

    .room-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact-section {
        grid-template-columns: 1fr
    }
}

@media (max-width:640px) {
    .menu-icon {
        display: block
    }

    .nav-links {
        display: none;
        position: fixed;
        right: -100%;
        top: 0;
        height: 100%;
        width: 260px;
        flex-direction: column;
        padding: 96px 20px;
        background: #fff;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
        z-index: 1300
    }

    .nav-links.show {
        right: 0
    }

    .nav-links a {
        padding: 8px 0
    }

    .hero-content h1 {
        font-size: 28px
    }

    .room-grid {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: 1fr
    }
}

/* --------------------------- */
/* LIGHT HOTEL STYLE FOOTER   */
/* --------------------------- */

.site-footer {
    background: #f7f7f7;        /* light grey to match your blocks */
    padding: 50px 0 25px;
    color: #333;
    border-top: 2px solid #e5e5e5;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(4, 1fr); /* SIDE-BY-SIDE */
    gap: 40px;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff9800;      /* Your theme color */
}

/* SOCIAL ICONS */
.footer-social a {
    font-size: 22px;
    margin-right: 12px;
    color: #ff9800;
    transition: .3s;
}

.footer-social a:hover {
    color: #cc7a00;
}

/* COPYRIGHT */
.footer-bottom {
    margin-top: 30px;
    text-align: center;
    padding-top: 15px;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #ddd;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social a {
        margin-right: 10px;
    }
}

/* ---------------------------------------- */
/* NAVBAR BOOK NOW BUTTON */
/* ---------------------------------------- */
.book-btn-nav {
    padding: 10px 18px;
    background: #ff9800;
    color: white !important;
    border-radius: 6px;
    font-weight: 600;
    margin-left: 12px;
    transition: 0.3s ease;
}

.book-btn-nav:hover {
    background: #e58800;
}


/* ---------------------------------------- */
/* FLOATING BOOK NOW BUTTON */
/* ---------------------------------------- */
.floating-book-btn {
    position: fixed;
    bottom: 95px;
    right: 25px;
    background: #ff9800;
    color: white;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.25);
    text-decoration: none;
    z-index: 99999;
    transition: 0.3s;
}

.floating-book-btn:hover {
    background: #cc7a00;
}

/* Ensure floating button stays above WhatsApp icon */
.whatsapp-btn {
    z-index: 9999;
}

/* Facility */
.facilities-section {
    padding: 40px 0;
    text-align: center;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.facilities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

/* Facility box design */
.facility-box {
    background: #f3f3f3;
    border-radius: 10px;
    padding: 14px 25px;
    font-size: 17px;
    font-weight: 500;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

/* Hover effect */
.facility-box:hover {
    background: #ff9800;
    color: #fff;
}

/* Icon styling */
.facility-box i {
    font-size: 18px;
    color: #ff9800;
}

/* Hover icon color change */
.facility-box:hover i {
    color: #fff;
}

/* Center box on second row */
.center-box {
    width: 220px;
    margin-top: 10px;
    justify-content: center;
}

