/* Global Styles and margins and paddings to ensure consistent layout across browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    height: 100%;
  }
  
  body {
    font-family: 'Italiana', serif;
    background-color: #f4f4f4;
    color: #300833;
    line-height: 1.6;
    height: 100%;
  }
  
  /* Header(All Pages)  */
  .navbar {
    background-color: #ece6ec;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  .logo {
    font-family: 'La Belle Aurore', cursive;
    font-size: 1.5rem;
    color: #300833;
  }
  
  a.logo {
    text-decoration: none;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .menu-icon {
    display: none; 
    width: 30px;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .menu-icon span {
    height: 3px;
    width: 25px;
    background-color: #A75878;
    border-radius: 2px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links li a {
    font-family: 'Italiana', serif;
    text-decoration: none;
    color: #300833;
    font-size: 1rem;
  }
  
  /* Responsive Header */
 
@media (max-width: 768px) {
  .menu-icon {
    display: flex; /* Show hamburger icon on mobile */
  }

  .nav-links {
    display: none; /* Hide nav links by default */
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #f1edf1;
    padding: 1rem 2rem;
    text-align: right;
    z-index: 1000;
  }

  .menu-toggle:checked + .menu-icon + .nav-links {
    display: flex; /* Show nav links when menu is toggled */
  }
}
  
  /* Landingpage: Hero Section */
.hero {
    background: url('assets/images/Hero-img.webp') center/cover no-repeat;
    height: 90vh;
    position: relative;
    color: #fff;
  }
  
  .overlay {
    background-color: rgba(82, 80, 72, 0.731);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }
  
  .overlay h1 {
    font-family: 'La Belle Aurore', cursive;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .overlay p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #fff;
  }
  
  /* Button*/
  .btn {
    display: inline-block;
    background-color: #300833;
    color: #fff;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 30px;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
    width: fit-content;
  }
  
  .btn:hover {
    background-color: #A7589F;
  }
  
  /* Cards on LandingPage */
  .cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .card {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    text-align: center;
    font-size: 1.2rem;
    border-radius: 12px;
  }
  
  .img-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
  }
  
  .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    opacity: 0.8;
    transition: transform 0.3s ease;
  }
  
  .img-container img:hover {
    transform: scale(1.02);
  }
  
  .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(88, 74, 80, 0.35);
  }
  
  .img-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Italiana', cursive;
    color: white;
    font-size: 1.8rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    text-align: center;
    z-index: 1;
  }
  
  /* Responsive Styles for Hero and Cards  */
  @media (min-width: 768px) {
    .overlay h1 {
      font-size: 3rem;
    }
  
    .overlay p {
      font-size: 1.1rem;
      max-width: 600px;
    }
  
    .cards {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .card {
      flex: 1;
      font-size: 1.3rem;
    }
  }
/* View Rooms Page */
.rooms-section {
    position: relative;
    padding: 3rem 0;
    font-family: 'Italiana', serif;
    background-image: url('assets/images/sandbkg.webp');
    background-size: 1000px auto;
    background-position: top center;
    min-height: 100vh;
    z-index: 0;
  }
  
  .rooms-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(240, 231, 236, 0.632);
    z-index: -1;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .section-title {
    text-align: center;
    font-family: 'La Belle Aurore', cursive;
    font-size: 2.5rem;
    color: #300833;
    margin-bottom: 0.5rem;
  }
  
  .section-subtitle {
    text-align: center;
    color: #444;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .room-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    background-color: rgba(239, 238, 239, 0.749);
  }
  .room-card {
    background-color: rgba(223, 202, 223, 0.046);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    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: 220px;
    object-fit: cover;
    filter: brightness(0.9);
  }
  
  .room-details {
    padding: 1.5rem;
    color: #300833;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .room-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .booknow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .booknow p {
    margin: 0;
  }
/* Booking Page  */
.booking-bg {
    position: relative;
    background-image: url('assets/images/sandbkg.webp');
    background-size: 700px auto;
    background-position: top center;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 1;  
  }
  
  .booking-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(240, 231, 236, 0.632);
    z-index: 0;
  }
  .booking-form {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem;
    background-color: rgba(239, 237, 238, 0.749);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    font-family: 'Italiana', serif;
    color: #300833;
    backdrop-filter: blur(3px);
  }
  
  .booking-form h2 {
    font-family: 'La Belle Aurore', cursive;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }
  
  .booking-form p {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .booking-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .booking-form label {
    font-weight: bold;
    font-size: 1rem;
  }
  
  .booking-form input {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #A7589F;
    border-radius: 8px;
  }
  
  .booking-form .btn {
    align-self: center;
    margin-top: 1rem;
  }
  
/* Contact Us Page */

.contact-page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url('assets/images/sandbkg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}

.contact-page-wrapper::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(240, 231, 236, 0.632);
  z-index: -1;
  pointer-events: none;
}  

  section.contact-container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.6); 
  }
  
  .contact-container {
    padding: 2rem;
    margin: auto;
    font-family: 'Italiana', serif;
    max-width: 1200px;
    width: 100%;
    backdrop-filter: blur(5px); 
    border-radius: 16px;
  }
  
  .contact-intro h2 {
    font-size: 2.5rem;
    font-family: 'La Belle Aurore', cursive;
    color: #300833;
    margin-bottom: 1rem;
  }
  
  .contact-intro p {
    font-size: 1rem;
    color: #300833;
  }
  
  .contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
  
  .contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Italiana', serif;
    background-color: #fff;
    color: #300833;
  }
  
  /* Contact Info sect */
  .contact-info {
    flex: 1;
    background-color: rgba(216, 190, 216, 0.9); 
    padding: 1.5rem;
    border-radius: 12px;
    color: #300833;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Contact Page Responsive */
  @media (min-width: 768px) {
    .contact-content {
      flex-direction: row;
      gap: 3rem;
      align-items: flex-start;
    }
  
    body.contact-us-page .footer-content {
      flex-direction: row;
      justify-content: space-between;
    }
  
    body.contact-us-page .footer {
      text-align: left;
    }
  }
  
/* Footer (All Pages)  */
.footer {
    background-color: #ece6ec;
    color: #300833;
    padding: 1.5rem 2rem;
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }
  
  .social-links a:hover img {
    transform: scale(1.1);
  }
  
  @media (min-width: 768px) {
    .footer-content {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .footer {
      text-align: left;
    }
  }