/* Reset */
* {
    margin: 0; padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }
  
  /* Prevent horizontal overflow on all containers */
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Navbar inside hero */
  .navbar.overlay {
    background: transparent;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    color: white;
    z-index: 1000;
  }
  .navbar .logo { font-weight: bold; font-size: 1.2rem; }
  
  /* Desktop Navigation Menu */
  .navbar .nav-menu {
    display: flex;
    align-items: center;
  }
  
  .navbar .nav-menu a {
    margin: 0 0.8rem; text-decoration: none; color: white;
  }
  
  /* Desktop Book Now button styling */
  .navbar .nav-menu .book-btn {
    background: rgba(230,126,34,0.9);
    padding: 0.5rem 1rem; 
    border-radius: 4px;
    margin-left: 1rem;
  }
  
  .navbar .nav-menu .book-btn:hover {
    background: rgba(230,126,34,1);
  }
  
  /* Hamburger Menu - Hidden on Desktop */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
  }
  
  /* Hero */
  .hero {
    background: url('images/3.jpg') no-repeat center/cover;
    color: white; text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 0;
  }
  .hero-text {
    position: relative;
    z-index: 1;
    max-width: 700px;
  }
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  .hero h1 span {
    color: #f39c12;
  }
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .hero-buttons .btn,
  .hero-buttons .btn-outline {
    margin: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
  }
  .btn { background: #e67e22; color: white; }
  .btn-outline { border: 2px solid white; color: white; }
  
  /* Highlights */
  .highlights {
    padding: 3rem 2rem; text-align: center;
  }
  .highlight-stats {
    display: flex; justify-content: space-around;
    margin-top: 2rem; flex-wrap: wrap;
  }
  .highlight-stats div { margin: 1rem; }
  
  /* Amenities */
  .amenities { background: #f4f4f4; padding: 3rem 2rem; text-align: center; }
  .amenity-cards {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  }
  .amenity-cards .card {
    background: #fff; padding: 1rem; border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width: 300px;
  }
  .amenity-cards img { width: 100%; border-radius: 6px; }
  .amenities img {
    width: 80px;          /* consistent icon size */
    height: 80px;
    object-fit: contain;  /* icons shouldn't crop */
    margin-bottom: 1rem;
  }
  
  
  /* Gallery */
  .gallery { padding: 3rem 2rem; text-align: center; }
  .gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem; margin-top: 2rem;
  }
  .gallery img {
    width: 100%;
    height: 250px;        /* enforce fixed height */
    object-fit: cover;    /* crops nicely */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery img:hover {
    transform: scale(1.05);
  }
  
  /* Testimonials */
  .testimonials {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .testimonials .subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
  }
  
  .testimonial-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* Base card */
  .testimonial-card {
    flex: 1 1 300px;
    background: #faeee6; /* beige like screenshot */
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
  }
  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }
  
  /* Middle card highlighted */
  .testimonial-card.highlight {
    background: #e67e22;
    color: white;
  }
  .testimonial-card.highlight .stars {
    color: #fff;
  }
  .testimonial-card.highlight h4,
  .testimonial-card.highlight span {
    color: white;
  }
  
  /* Stars */
  .stars {
    font-size: 1.2rem;
    color: #e67e22;
    margin-bottom: 1rem;
  }
  
  /* Text */
  .testimonial-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: #333;
  }
  .testimonial-card.highlight p {
    color: #fff;
  }
  
  /* Guest name */
  .testimonial-card h4 {
    margin: 0;
    font-weight: bold;
    font-size: 1.1rem;
    color: #111;
  }
  
  /* Guest role */
  .testimonial-card span {
    font-size: 0.9rem;
    color: #555;
  }
  
  
  /* Rooms */
  .rooms {
    padding: 5rem 2rem;
    text-align: center;
    background: #fff;
  }
  
  .room-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* Base card style */
  .room-card {
    flex: 1 1 300px;
    background: #faeee6; /* soft beige */
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }
  
  .room-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #111;
  }
  .room-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.4;
  }
  .room-card hr {
    width: 70%;
    margin: 1.5rem auto;
    border: 0.5px solid rgba(0,0,0,0.2);
  }
  .room-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #111;
  }
  
  /* Highlight middle card */
  .room-card.highlight {
    background: #e67e22; /* orange */
    color: white;
  }
  .room-card.highlight h3,
  .room-card.highlight p,
  .room-card.highlight h4 {
    color: white;
  }
  
  /* Buttons */
  .room-card .btn {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  .room-card .btn:hover {
    background: #cf6714;
  }
  
  /* White button inside highlighted card */
  .room-card.highlight .btn-outline {
    display: inline-block;
    background: white;
    color: #333;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  .room-card.highlight .btn-outline:hover {
    background: #f5f5f5;
  }
  
  
  
  /* Contact */
  .contact { background: #f4f4f4; padding: 3rem 2rem; text-align: center; }
  .contact-container {
    display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
    margin-top: 2rem;
  }
  .contact-info { flex: 1; }
  
  /* Responsive Map Container */
  .map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-top: 1rem;
  }
  
  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  form { flex: 1; display: flex; flex-direction: column; }
  form input, form textarea {
    margin-bottom: 1rem; padding: 0.7rem;
    border: 1px solid #ccc; border-radius: 4px;
  }
  form button { 
    background: #e67e22; 
    color: white; 
    border: none; 
    padding: 0.7rem; 
    border-radius: 4px; 
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
  }
  
  form button:hover {
    background: #d35400;
  }
  
  form button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
  }
  
  .btn-loading {
    color: white;
  }
  
  /* Form message styles */
  #form-messages {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Footer */
footer { background: #333; color: white; text-align: center; padding: 1rem; margin-top: 2rem; }

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  
  /* Remove excessive padding and margins */
  body, html {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100vw;
  }
  
  /* Mobile Navbar with Hamburger */
  .navbar.overlay {
    padding: 1rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }
  
  .navbar .logo {
    font-size: 1.1rem;
    flex: 1;
  }
  
  /* Show Hamburger on Mobile */
  .hamburger {
    display: flex !important;
    z-index: 1001;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.5rem;
  }
  
  .hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  /* Mobile slide-in nav menu */
  .navbar .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 2rem 1rem;
    box-sizing: border-box;
  }
  
  .navbar .nav-menu.active {
    right: 0;
  }
  
  .navbar .nav-menu a {
    margin: 0.8rem 0 !important;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
    width: 100%;
    text-align: center;
    display: block;
  }
  
  .navbar .nav-menu a:hover {
    background: rgba(230, 126, 34, 0.8);
  }
  
  /* Style Book Now button inside mobile menu */
  .navbar .nav-menu .book-btn {
    background: rgba(230, 126, 34, 0.9) !important;
    margin-top: 2rem !important;
    padding: 0.8rem 2rem !important;
    font-weight: bold !important;
    margin-left: 0 !important;
  }
  
  .navbar .nav-menu .book-btn:hover {
    background: rgba(230, 126, 34, 1) !important;
  }
  
  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Hero Mobile */
  .hero {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  .hero-text {
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
  }
  
  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    word-wrap: break-word;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    word-wrap: break-word;
    line-height: 1.6;
    padding: 0;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  
  .hero-buttons .btn,
  .hero-buttons .btn-outline {
    margin: 0;
    padding: 1rem 2rem;
    width: 200px;
    max-width: 80%;
    text-align: center;
    box-sizing: border-box;
    font-size: 1rem;
  }
  
  /* All Sections Mobile - Full Width */
  .highlights,
  .amenities,
  .gallery,
  .testimonials,
  .rooms,
  .contact {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 3rem 5%;
    box-sizing: border-box;
  }
  
  /* Highlights Mobile */
  .highlight-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
  }
  
  .highlight-stats div {
    margin: 0;
    text-align: center;
    width: 100%;
  }
  
  /* Amenities Mobile */
  .amenity-cards {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .amenity-cards .card {
    width: 100%;
    max-width: 400px;
    margin-bottom: 1.5rem;
  }
  
  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    width: 100%;
  }
  
  .gallery img {
    height: 220px;
  }
  
  /* Testimonials Mobile */
  .testimonial-cards {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
  }
  
  .testimonial-card {
    flex: none;
    width: 100%;
    max-width: 450px;
    padding: 2rem;
  }
  
  .testimonials h2 {
    font-size: 2rem;
  }
  
  .testimonials .subtitle {
    font-size: 1.1rem;
    padding: 0;
  }
  
  /* Rooms Mobile */
  .room-cards {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
  }
  
  .room-card {
    flex: none;
    width: 100%;
    max-width: 450px;
    padding: 2.5rem 2rem;
  }
  
  .room-card h3 {
    font-size: 1.5rem;
  }
  
  .room-card h4 {
    font-size: 1.4rem;
  }
  
  /* Contact Mobile */
  .contact-container {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
  
  .contact-info {
    width: 100%;
    max-width: 100%;
  }
  
  /* Mobile Map Container */
  .map-container {
    width: 100%;
    max-width: 100%;
    padding-bottom: 60%; /* Slightly taller aspect ratio for mobile */
    margin: 1rem 0;
    box-sizing: border-box;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 8px;
  }
  
  form {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  
  form input, form textarea {
    padding: 1rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  form button {
    padding: 1rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
  
  /* Navbar adjustments for very small screens */
  .navbar.overlay {
    padding: 0.8rem;
  }
  
  .navbar .logo {
    font-size: 1rem;
  }
  
  .hamburger span {
    width: 22px;
  }
  
  /* Hero adjustments */
  .hero-text {
    padding: 1.5rem 0.8rem;
  }
  
  .hero h1 {
    font-size: 1.9rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons .btn,
  .hero-buttons .btn-outline {
    width: 180px;
    max-width: 85%;
    padding: 0.9rem 1.5rem;
  }
  
  /* Sections padding */
  .highlights,
  .amenities,
  .gallery,
  .testimonials,
  .rooms,
  .contact {
    padding: 2.5rem 3%;
  }
  
  /* Cards adjustments */
  .amenity-cards .card {
    max-width: 350px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .testimonial-card,
  .room-card {
    max-width: 380px;
    padding: 1.5rem;
  }
  
  /* Contact adjustments */
  .map-container {
    padding-bottom: 65%; /* Even taller on very small screens */
    margin: 0.8rem 0;
  }
  
  form {
    max-width: 380px;
  }
  
  form input, form textarea, form button {
    font-size: 16px; /* Prevent zoom on iOS */
  }
}
  