/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@300;500;700&display=swap');

/* GLOBAL RESET & BASE STYLING */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --header-height: 70px;
}

html, body {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-padding-top: var(--header-height);
}

body::before {
  content: '';
  display: block;
  height: var(--header-height);
}

/* HEADER STYLING */
header {
  background-color: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  transition: top 0.3s ease-in-out;
  z-index: 999;
}

.logo img {
  height: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
}

/* NAVIGATION */
nav.nav-center {
  display: flex;
  gap: 30px;
  font-weight: 600;
}

nav.nav-center a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav.nav-center a:hover {
  color: #1e90ff;
  transform: scale(1.1);
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 900px) {
  nav.nav-center {
    position: fixed;
    top: var(--header-height);
    right: 0;
    flex-direction: column;
    background-color: #000;
    width: 200px;
    height: calc(100% - var(--header-height));
    padding: 20px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 998;
  }

  nav.nav-center.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: block;
  }
}

/* GALLERY CONTAINER */
.gallery-container {
  padding: calc(var(--header-height) + 60px) 20px 80px;
  text-align: center;
  max-width: 1300px;
  margin: auto;
}

/* HEADINGS */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 50px;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  letter-spacing: 1px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

h1::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, #00c9ff, #92fe9d);
  bottom: 0;
  left: 10%;
  border-radius: 3px;
}

/* TABS */
.tabs {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.tab {
  padding: 14px 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.tab:hover,
.tab.active {
  background: linear-gradient(to right, #00c9ff, #92fe9d);
  color: #000;
  font-weight: 600;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 201, 255, 0.4);
}

/* IMAGE GRID */
.images {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  padding: 20px;
  animation: fadeIn 0.6s ease-in-out;
}

.images.active {
  display: grid;
}

.images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.images img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 201, 255, 0.6);
  filter: brightness(1.1);
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  h1 {
    font-size: 34px;
  }

  .tab {
    font-size: 15px;
    padding: 12px 24px;
  }

  .images img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    padding: calc(var(--header-height) + 40px) 10px 50px;
  }

  h1 {
    font-size: 26px;
  }

  .tab {
    padding: 10px 18px;
    font-size: 14px;
  }

  .images {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .images img {
    height: 150px;
  }
}



.button-container {
  text-align: center;
  margin: 40px 0; /* spacing above and below */
}

.book-now-button {
  display: inline-block;
  padding: 14px 50px;
  background: linear-gradient(90deg, #00c9ff, #92fe9d);
  color: #000;
  font-weight: 700;
  font-size: 18px;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(0, 201, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
  user-select: none;
  cursor: pointer;
}

.book-now-button:hover {
  background: linear-gradient(90deg, #0099e6, #74d06e);
  box-shadow: 0 12px 30px rgba(0, 150, 230, 0.7);
  transform: translateY(-3px);
}





/* FOOTER */
.site-footer {
  background-color: #f8f8f8;
  color: #333;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  border-top: 1px solid #ddd;
  position: relative;
  bottom: 0;
  width: 100%;
}
