body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
    overflow-x: hidden;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../assets/hero/hero1.jpg");
    background-size: cover;
    background-position: center;
}

/* NAVBAR */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 10;
}



.nav-left {
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
}

.nav-right a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 1rem;
    font-weight: 500;
}

.nav-right a:hover {
    text-decoration: underline;
}

/* HERO CONTENT */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* BUTTON */


.btn {
    background: gold;
    color: black;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

/* ROOMS PAGE */
.rooms-page {
    padding: 60px 40px;
    text-align: center;
    background: #fff7f2;
}

.rooms-page h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.rooms-note {
    color: #555;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

/* ROOM GRID */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 80px;
    max-width: 1100px;
    margin: auto;
}

.room-card {
    height: 400px;
    border-radius: 10px;
    perspective: 1000px;
    transition: box-shadow 0.3s ease;
}

.room-card:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.room-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.room-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 6px;
}

.room-card .rule {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.room-card button {
    background: gold;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

/* IMAGE FLIP (SAFE UX) */
.room-image {
    width: 100%;
    height: 270px;
    margin-bottom: 15px;
    perspective: 1000px;
}

.room-image .flip-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.room-image:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front-img,
.flip-back-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    border-radius: 8px;
}

.flip-back-img {
    transform: rotateY(180deg);
}


.confirmation {
    padding: 40px;
    max-width: 400px;
    margin: auto;
}

input, button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
}

iframe {
    width: 100%;
    height: 300px;
}

/* STATIC NAVBAR FOR INNER PAGES */
.static-nav {
    position: relative;
    background: black;
}

/* PHOTOS PAGE */
/* PHOTOS PAGE */
.photos-page {
    padding: 60px 40px;
    text-align: center;
    background: #fff7f2;   /* peach light background */
}

.photos-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

/* PHOTO GRID LAYOUT */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* FORCE ALL IMAGES SAME SIZE */
.photo-grid img {
    width: 100%;
    height: 220px;          /* 🔥 SAME HEIGHT FOR ALL */
    object-fit: cover;      /* 🔥 CROPS, NOT STRETCH */
    border-radius: 10px;
    background: white;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.photo-grid img:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    z-index: 2;
}

/* FOOTER */
.footer {
    background: #111;
    color: white;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left p {
    margin: 0;
    font-size: 0.95rem;
}

.review-link {
    color: #ffd700; /* gold */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

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

@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* CONTACT PAGE */
.contact-page {
    padding: 60px 20px;
    background: #fff7f2;   /* full-width background */
}

.contact-container {
    max-width: 600px;
    margin: auto;
    text-align: center;
    background: white;
    padding: 45px;
    border-radius: 8px;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 6px 0;
    font-size: 1rem;
}

.contact-page form {
    margin-top: 30px;
}

.contact-page input,
.contact-page textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-page textarea {
    height: 120px;
    resize: none;
}

#contactStatus {
    margin-top: 15px;
    font-weight: bold;
}

/* ABOUT US PAGE */
.about-page {
    padding: 60px 40px;
    text-align: center;
    background: #fff7f2;  /* soft peach */
}

.about-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.about-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #444;
}

/* TEAM GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.team-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-card .role {
    color: #777;
    font-size: 0.95rem;
}

.team-card .phone {
    margin-top: 8px;
    font-weight: 500;
}



/* BOOKING PAGE – MODERN LOOK */
.booking {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff7f2, #fdf1e8);
}

.booking-card {
    max-width: 520px;
    margin: auto;
    background: white;
    padding: 35px 40px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.booking h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

#roomInfo {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
}

/* INPUT STYLING */
.booking input,
.booking select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.95rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.booking input:focus,
.booking select:focus {
    outline: none;
    border-color: #d4a017;
    box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}

/* SECTION SEPARATION */
.booking label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 14px;
    display: block;
    color: #444;
}

/* GUEST BLOCK */
#guestDetails {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

#guestDetails h3 {
    font-size: 1rem;
    margin: 18px 0 8px;
}

/* TOTAL AMOUNT */
#totalAmount {
    margin-top: 25px;
    padding: 14px;
    background: #fff7e0;
    border: 1px solid #f1d58a;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
}

/* SUBMIT BUTTON */
.booking .btn {
    margin-top: 25px;
    padding: 14px;
    font-size: 1rem;
    border-radius: 8px;
}

/* CHECKBOX INLINE */
.inline-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin: 10px 0;
}

.inline-checkbox input {
    width: auto;
    margin: 0;
}


.inline-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    width: auto;
}

.inline-checkbox input {
    width: auto;
    margin: 0;
}

.guest-id-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #444;
    display: block;
    margin-top: 12px;
}

.helper-text {
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 12px;
    display: block;
}

@media (max-width: 600px) {

  body {
    font-size: 14px;
  }

  /* NAVBAR */
  .navbar {
    padding: 12px 16px;
    flex-direction: column;
    gap: 10px;
  }

  .nav-left {
    font-size: 1.3rem;
  }

  .nav-right a {
    margin-left: 12px;
    font-size: 0.9rem;
  }

  /* HERO */
  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  /* ROOMS */
  .rooms-page {
    padding: 40px 20px;
  }

  .room-grid {
    gap: 40px;
  }

  .room-card {
    height: auto;
  }

  .room-image {
    height: 220px;
  }

  /* PHOTOS */
  .photos-page {
    padding: 40px 20px;
  }

  .photo-grid img {
    height: 180px;
  }

  /* ABOUT */
  .about-page {
    padding: 40px 20px;
  }

  .about-intro {
    font-size: 1rem;
  }

  /* TEAM */
  .team-card img {
    width: 100px;
    height: 100px;
  }

  /* BOOKING */
  .booking-card {
    padding: 25px 20px;
  }

  .booking h1 {
    font-size: 1.8rem;
  }

  /* CONTACT */
  .contact-container {
    padding: 30px 20px;
  }

  /* FOOTER */
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px;
  }
}

@media (max-width: 900px) {

  .hero-overlay h1 {
    font-size: 2.6rem;
  }

  .hero-overlay p {
    font-size: 1.15rem;
  }

  .room-grid {
    gap: 50px;
  }

  .booking-card {
    max-width: 90%;
  }

  .contact-container {
    max-width: 90%;
  }

  .footer {
    padding: 20px 30px;
  }
}


