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

body {
    font-family: Arial, sans-serif;
    padding-top: 90px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background-color: #f2f2f2;
    position: fixed;
    /* ← Change this line from relative to fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Make sure it's on top */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    position: relative;
    /* add this */
    z-index: 11;
    /* higher than hero background */
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: 2px;
    margin-left: -100px;
}

@media (max-width: 768px) {
    .logo {
        margin-left: 0;
        justify-content: flex-start;
    }
}

.logo-text {
    font-size: 22px;
    color: #333;
    font-weight: bold;
}


.logo img {
    height: 50px;

}

.logo img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}


.nav-links li a:hover {
    color: #fa9703;
    /* This is a nice blue */
      transform: scale(1.1);
}

.nav-links li a {
    position: relative;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    /* distance below the text */
    left: 0;
    width: 0;
    height: 2px;
    background-color: #020202;
    /* or any color you like */
    transition: width 0.3s ease-in-out;
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}
@keyframes zoomHero {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}
.hero {
    position: relative;
    width: 100%;
    height: 900px;
    /* adjust as needed */
    background-image: url('images/hotel1.webp');
    /* Use your real image path */
    background-size: cover;
    background-position: center;
    /* background-repeat: no-repeat; */
    animation: zoomHero 10s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    animation: none;
  }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

#headline-text {
    color: white;
    font-size: 3.5vw;
    font-weight: bold;
    margin-bottom: 10px;
}

.sub {
    color: white;
    font-size: 2vw;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    #headline-text {
        font-size: 6vw;
    }

    .sub {
        font-size: 4vw;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }

    #headline-text {
        font-size: 7vw;
    }

    .sub {
        font-size: 5vw;
    }
}


/* Slide-in animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 1.5s ease forwards;
}

.slide-in-right {
    animation: slideInRight 1.5s ease forwards;
}

.booking-section {
    padding: 30px;
    background: #f9f7f2;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    min-width: 150px;
}

.form-group label {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #333;
}

/* .form-group input,
.form-group select {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: #f5f5f5;
    font-size: 14px;
} */

/* --------- SELECT DROPDOWNS: Adults & Children ----------- */
.form-group select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    background: #f8f8f8;
    color: #000;
    border: 2px solid #070707;
    /* black border */
    border-radius: 5px;
    box-sizing: border-box;
    -webkit-appearance: none;
    /* remove native arrow styling (iOS) */
    -moz-appearance: none;
    /* Firefox */
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

/* Optional: mobile-friendly padding */
@media (max-width: 480px) {
    .form-group select {
        padding: 12px 16px;
    }
}

/* ----- MOBILE-SAFE DATE INPUT STYLES ------------------- */
.form-group input[type="date"] {
    width: 100%;
    padding: 12px 14px;
    /* enough padding for thumbs */
    font-size: 15px;
    /* slightly larger on mobile */
    background: #f8f8f8;
    color: #000;
    border: 2px solid #000;
    /* black border you wanted  */
    border-radius: 5px;
    box-sizing: border-box;
    /* avoid the browser shrinking the font on iOS */
    -webkit-text-size-adjust: 100%;
}

/* keep the calendar icon dark and clickable */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0);
    cursor: pointer;
}

/* simulate faint placeholder style */
input[type="date"]::-webkit-datetime-edit {
    color: #020202;
    font-style: sans-serif;
}


@media (max-width: 480px) {
    .form-group select {
        font-size: 16px;
        padding: 14px 16px;
        border-radius: 5px;
        background-size: 18px;
    }

    input[type="date"] {
        font-size: 16px;
        padding: 14px 16px;
    }
}

/* small-screen tweaks */
@media (max-width: 480px) {
    .form-group {
        padding: 12px 16px;
    }
}

.check-btn {
    padding: 15px 25px;
    background-color: #e3a24f;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 35px;
    margin: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.check-btn:hover {
    background-color: #c68833;
}

.room-results {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 8%;
    background-color: #f9f9f9;
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

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

.room-info {
    padding: 15px;
    text-align: center;
}

.room-info h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
}

.room-info p {
    margin: 5px 0;
    color: #666;
}

/* Center booking results */
#room-results {
    display: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem;
}

/* Fade-in animation */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spinner inside button */
.button-loading {
    position: relative;
    padding-left: 2rem;
}

.button-loading::before {
    content: "";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translateY(-50%);
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}


.select-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #e3a24f;
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-btn:hover {
    background-color: #c68833;
}

.add-cart-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #e3a24f;
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-cart-btn:hover {
    background-color: #c68833;
}

.all-room-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 1rem;
}

.room-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.room-card:hover {
    transform: translateY(-5px);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-info {
    padding: 1rem;
    text-align: left;
}

.room-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-style: italic;
    margin-top: 10px;
}

.room-options p {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
    text-align: center;
    margin-top: 30px;
}

.room-options h1 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
    margin-top: 10px;
}

.room-info p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    margin-top: 10px;
}

.room-info button {
    margin-top: 1rem;
    background-color: #e3a033;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 15px auto 0;
    display: block;
}

.room-info button:hover {
    background-color: #c98a1e;
}

.all-room-cards {
    display: grid;
    gap: 20px;
    padding: 20px;
}

/* Mobile: 1 card per row by default */
.all-room-cards {
    grid-template-columns: 1fr;
}

.review-section {
    position: relative;
    padding: 100px 20px;
    background: #fff;
    overflow: hidden;
    text-align: center;
}

.review-heading-bg {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10rem;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    font-weight: 900;
    white-space: nowrap;
}

.review-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: auto;
}

.review-content {
    max-width: 600px;
    margin: 0 40px;
    text-align: center;
}

.review-content h3 {
    font-size: 1.8rem;
    font-weight: bold;
}

.review-content p {
    font-style: italic;
    font-size: 1.25rem;
    margin: 20px 0;
}

.stars {
    color: #ffba00;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.user-info img {
    width: 70px;
    border-radius: 50%;
    margin-top: 20px;
}

.user-info h4 {
    margin: 10px 0 5px;
    font-weight: bold;
}

.user-info span {
    color: #999;
    font-size: 0.9rem;
}

.nav-btn {
    background: #2c2b2b;
    color: white;
    border: none;
    padding: 20px;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: #444;
}

.review-content {
    transition: opacity 0.4s ease-in-out;
}

.review-content.fade-out {
    opacity: 0;
}

.review-content.fade-in {
    opacity: 1;
}

@media (max-width: 768px) {
    .review-heading-bg {
        font-size: 4rem;
        top: 30px;
    }

    .review-container {
        flex-direction: column;
        margin: 0 20px;
    }

    .review-content {
        margin: 20px 0;
        max-width: 100%;
        padding: 10px;
    }

    .review-content h3 {
        font-size: 1.4rem;
    }

    .review-content p {
        font-size: 1rem;
    }

    .stars {
        font-size: 1.2rem;
    }

    .user-info img {
        width: 50px;
    }

    .nav-btn {
        padding: 12px;
        font-size: 20px;
    }
}

/* Medium & Large Screens: 2 cards per row */
@media (min-width: 768px) {
    .all-room-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* (Optional) Even more cards per row on very large screens */
@media (min-width: 1200px) {
    .all-room-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}


/* Responsive */
@media (max-width: 768px) {
    .booking-form {
        flex-direction: column;
        border-radius: 20px;
    }

    .form-group {
        width: 100%;
        padding: 10px 20px;
    }

    .check-btn {
        width: 80%;
    }
}


/* Responsive tweaks for small devices */
@media (max-width: 768px) {
    #headline-text {
        font-size: 6vw;
    }

    .sub {
        font-size: 3.5vw;
    }
}

@media (max-width: 480px) {
    #headline-text {
        font-size: 7vw;
    }

    .sub {
        font-size: 4vw;
    }
}

/* For smaller screens */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 8%;
        flex-direction: column;
        background: #f2f2f2;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 11;
        /* Add this line here as well */
    }


    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

.success-message {
    font-size: 20px;
    padding: 20px;
    background-color: #d4edda;
    color: #155724;
    text-align: center;
    border-radius: 8px;
}

.explore-section {
    position: relative;
    background: url('images/geometric1.png') center center no-repeat;
    background-size: contain;
    padding: 4rem 1rem;
    text-align: center;
    overflow: hidden;
}

.explore-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.897);
    /* or rgba(255,255,255,0.3) if you want light feel */
    z-index: 1;
    padding: 40px;
}


.explore-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem 0;

}

.explore-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.explore-button {
    display: inline-block;
    background-color: #e3a033;
    color: white;
    padding: 0.9rem 2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.explore-button:hover {
    background-color: #c98a1e;
}

.hotel-features {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid #ddd;
}

.feature:last-child {
    border-right: none;
}

.feature img {
    height: 40px;
    margin-bottom: 15px;
    filter: sepia(1) hue-rotate(20deg) saturate(5);
    /* Optional: Makes icon orange-like */
}

.feature h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.feature p {
    font-size: 15px;
    color: #555;
}

.Contact {
    font-size: 20px;
    padding: 20px;
    background-color: #f5f5f5;
    text-align: center;
    border-radius: 8px;
}

.footer-section {
    background-color: #0b172a;
    color: #ddd;
    border-top: 2px solid #e3a033;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-box {
    flex: 1;
    min-width: 220px;
}

.footer-box h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.footer-box .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.social-icons a {
    margin-right: 15px;
}

.social-icons img.icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icons img.icon:hover {
    transform: scale(1.2);
}

.footer-section hr {
    margin: 30px 0;
    border: 0.5px solid #444;
}

.footer-note {
    color: #ddd;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

.footer-link {
    color: #ffa500;
    text-decoration: none;
    font-weight: bold;
}

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

.footer-section .copyright {
    text-align: center;
    font-size: 13px;
    color: #888;
}

.footer-note .footer-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-note .footer-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

html {
    scroll-behavior: smooth;
}