/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: purple;
  --secondary-color: #6a0dad;
  --text-color: #333;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
  display: none;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER & NAVIGATION ===== */
.purple-bar {
  height: 25px;
  background-color: var(--primary-color);
}

header {
  margin: 15px 0;
}

.logo-title-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.logo {
  max-height: 80px;
}

.title-container h1 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.booking-number {
  margin-left: auto;
/*  font-weight: bold; */
  font-size: 24px;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
}

nav a:hover,
nav a:focus {
  color: var(--primary-color);
}

/* ===== MAIN CONTENT STYLES ===== */
.section-title {
  text-align: center;
  margin: 30px 0;
}

.section-title h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 22px;
}

/* Image Slider */
.slider-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.slider {
  display: flex;
  width: 700%;
  animation: slide 35s infinite;
}

.slider img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes slide {
  0% { transform: translateX(0); }
  14.28% { transform: translateX(0); }
  16.66% { transform: translateX(-14.2857%); }
  30.94% { transform: translateX(-14.2857%); }
  33.32% { transform: translateX(-28.5714%); }
  47.6% { transform: translateX(-28.5714%); }
  49.98% { transform: translateX(-42.8571%); }
  64.26% { transform: translateX(-42.8571%); }
  66.64% { transform: translateX(-57.1428%); }
  80.92% { transform: translateX(-57.1428%); }
  83.3% { transform: translateX(-71.4285%); }
  97.58% { transform: translateX(-71.4285%); }
  100% { transform: translateX(0); }
}

/* Gallery Styles */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.gallery-item {
  background: var(--white);
  padding: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.gallery-item p {
  text-align: center;
  font-size: 16px;
}

/* Four Columns Layout */
.four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.column {
  background: var(--white);
  padding: 15px;
  box-shadow: var(--shadow);
}

.column p {
  margin-bottom: 8px;
  font-size: 14px;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .four-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .logo-title-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .booking-number {
    margin-left: 0;
    margin-top: 10px;
  }
  
  nav ul {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .gallery,
  .four-columns {
    grid-template-columns: 1fr;
  }
  
  .title-container h1 {
    font-size: 20px;
  }
  
  .section-title h2 {
    font-size: 20px;
  }
}