/* ========================================= */
/*      UNIFIED STYLESHEET FOR ALL PAGES     */
/* ========================================= */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #2D1764; 
  background-color: #F6F6F6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

/* ========================================= */
/*      CONSISTENT NAVIGATION STYLES         */
/* ========================================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Ensures navbar is always on top */
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-container { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 40px; width: auto; }
.brand-name { font-size: 24px; font-weight: bold; color: #e63946; }

.hamburger-menu {
  display: none;
  font-size: 2rem;
  color: #2D1764;
  cursor: pointer;
  z-index: 1001;
}

.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: #2D1764; font-weight: 500; transition: color 0.3s ease; }
.nav-links a:hover { color: #E62926; }

/* ========================================= */
/*        STYLES FOR INDEX.HTML              */
/* ========================================= */

.hero { position: relative; height: 100vh; overflow: hidden; display: flex; justify-content: center; align-items: center; text-align: center; color: white; }
.bg-video { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; object-fit: cover; transform: translate(-50%, -50%); z-index: -2; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.45); z-index: -1; }
/* ... (Add other index.html specific styles like .features, .gallery here if needed) ... */


/* ========================================= */
/*        STYLES FOR CONTACT & BOOKING PAGES */
/* ========================================= */

/* This provides space for the content to clear the fixed navbar */
.page-content-wrapper {
    padding-top: 100px; /* Adjust as needed */
}

/* Contact Page Specific Styles */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f7f7fb, #e8e0f0);
}

.contact-left { flex: 1 1 35%; max-width: 500px; }
.contact-left h1 { font-size: 3rem; margin-bottom: 1rem; color: #2D1764; }
.contact-left p { font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.6; color: #444; }
.contact-info h3 { margin-top: 2rem; font-size: 1.2rem; border-bottom: 2px solid #849B2D; padding-bottom: 0.5rem; color: #2D1764; }
.contact-info p { margin: 0.5rem 0; color: #555; font-weight: 500; }
.contact-right { flex: 1 1 50%; max-width: 600px; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(12px); border-radius: 16px; padding: 2.5rem; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); transition: transform 0.3s ease; }
.contact-right:hover { transform: translateY(-5px); }
.contact-form { display: flex; flex-direction: column; }
.contact-form .input-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.contact-form input, .contact-form textarea { padding: 1rem; border: 1px solid #ccc; border-radius: 10px; font-size: 1rem; width: 100%; margin-top: 1rem; background-color: #fff; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #2D1764; outline: none; box-shadow: 0 0 0 2px rgba(45, 23, 100, 0.2); }
.contact-form input { flex: 1 1 48%; }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form button { background-color: #E32224; color: #fff; padding: 0.9rem 2rem; margin-top: 1.5rem; border: none; border-radius: 10px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease; }
.contact-form button:hover { background-color: #b41d1e; }


/* ========================================= */
/*       MOBILE RESPONSIVE MENU STYLES       */
/* ========================================= */
@media (max-width: 768px) {
  .hamburger-menu { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s ease-in-out;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.5rem; }
}