* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --kingfisher-green: #305A5E;
  --cream: #FAF9F6;
  --charcoal: #1A1A1A;
  --white: #FFFFFF;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header - Centered Logo Style */
.main-header {
  background: var(--white);
  padding: 1.5rem 0 0;
  position: relative;
  z-index: 1001;
}

.logo-container {
  text-align: center;
  padding: 1rem 0;
}

.logo-img {
  height: 70px;
  width: auto;
}

.mobile-only-logo {
  display: none;
}

/* Dual Navigation */
.nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.nav-right {
  position: absolute;
  right: 3rem;
  display: flex;
  align-items: center;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--charcoal);
  transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin-bottom: 2rem;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  transition: opacity 0.3s;
}

.main-nav a:hover {
  opacity: 0.6;
}

.reserve-btn {
  background: var(--kingfisher-green);
  color: var(--white);
  border: none;
  padding: 0.8rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
}

/* Hero Section - Full Width Video/Image */
.hero {
  position: relative;
  height: 85vh;
  width: 100%;
  overflow: hidden;
  background: url('../assets/images/slider/a.jpg') center/cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.hero-title {
  font-family: 'Montserrat', serif;
  font-size: 3rem;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-btn {
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  padding: 1rem 3rem;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-btn:hover {
  background: var(--white);
  color: var(--charcoal);
}

.pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* Section Labels */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 1rem;
}

/* Your Next Vacation - Carousel Section */
.vacation-section {
  padding: 6rem 0;
  text-align: center;
  background: var(--white);
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  padding: 4rem 0;
  cursor: grab;
  position: relative;
}

.carousel-container:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
  align-items: center;
}

.hotel-card {
  flex: 0 0 33.333%;
  padding: 0 3rem;
  text-align: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
  transform: scale(0.85);
  opacity: 0.5;
  pointer-events: none;
}

.hotel-card.active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hotel-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hotel-name {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hotel-location {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.details-link {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
}

/* Split Feature Section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--cream);
}

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  background: #F5F5F0;
}

.split-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #666;
}

.split-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.discover-btn {
  border: 1px solid var(--charcoal);
  background: transparent;
  padding: 1rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s;
}

.discover-btn:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* Experiences Section */
.experiences-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 6rem 4rem;
  background: var(--white);
}

.experiences-text {
  padding-right: 2rem;
}

.experiences-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.experiences-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  font-weight: 300;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.experience-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.experience-card:hover img {
  transform: scale(1.05);
}

.experience-info {
  margin-top: 1rem;
}

.experience-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.experience-subtitle {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 1rem;
}

.exp-btn {
  border: 1px solid var(--charcoal);
  background: transparent;
  padding: 0.6rem 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

/* Full Width Parallax Section */
.discovery-section {
  position: relative;
  height: 80vh;
  background: url('../assets/images/beach.jpg') center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.discovery-content {
  color: var(--white);
  max-width: 840px;
  padding: 2rem;
}

.discovery-label {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.discovery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.discovery-text {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.explore-btn {
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.explore-btn:hover {
  background: var(--white);
  color: var(--charcoal);
}

/* Triple Grid Section */
.triple-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2rem;
  padding: 4rem;
  background: var(--white);
  align-items: start;
}

.grid-item {
  text-align: center;
}

.grid-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.grid-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #666;
}

.grid-title {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.grid-text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #666;
  max-width: 300px;
  margin: 0 auto;
}

/* Suite Section */
.suite-section {
  position: relative;
  height: 70vh;
  background: url('https://images.unsplash.com/photo-1618773928121-c32242e63f39?w=1920&q=80') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.suite-content {
  color: var(--white);
}

.suite-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.suite-text {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Google Reviews Section */
.reviews-section {
  padding: 8rem 0;
  background: var(--white);
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.google-badge img {
  height: 24px;
}

.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: #f1c40f;
  font-size: 1rem;
}

.rating-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.user-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.user-details h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.post-date {
  font-size: 0.75rem;
  color: #999;
}

.card-stars {
  color: #f1c40f;
  font-size: 0.75rem;
}

.review-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  font-style: italic;
}

.posted-on {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: #ccc;
  letter-spacing: 1px;
}

.posted-on img {
  height: 12px;
  opacity: 0.4;
}

/* Album Grid - Masonry Style */
.album-section {
  padding: 4rem;
  background: var(--white);
}

.album-header {
  text-align: center;
  margin-bottom: 4rem;
}

.album-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.album-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.album-item.tall {
  grid-column: span 4;
  grid-row: span 2;
  height: 600px;
}

.album-item.wide {
  grid-column: span 8;
  height: 290px;
}

.album-item.small {
  grid-column: span 4;
  height: 290px;
}

.album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.album-item:hover img {
  transform: scale(1.08);
}

.album-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: var(--white);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.album-item:hover .album-caption {
  opacity: 1;
}

.album-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Newsletter */
.newsletter {
  padding: 4rem;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid #eee;
}

.newsletter-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.newsletter-input {
  border: none;
  border-bottom: 1px solid var(--charcoal);
  background: transparent;
  padding: 0.8rem;
  width: 300px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
}

.join-btn {
  border: 1px solid var(--charcoal);
  background: transparent;
  padding: 0.8rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

/* Footer */
.footer {
  background: var(--white);
  padding: 4rem;
  border-top: 1px solid #eee;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  text-decoration: none;
  color: #666;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--charcoal);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
  .main-header {
    display: none;
  }

  .nav-wrapper {
    padding: 1.5rem;
    justify-content: flex-start;
    position: sticky;
    top: 0;
  }

  .mobile-only-logo {
    display: block;
    height: 56px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-wrapper {
    padding: 1rem 1.5rem;
  }

  .nav-left {
    gap: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  .split-section,
  .experiences-section {
    grid-template-columns: 1fr;
  }

  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .triple-grid {
    grid-template-columns: 1fr;
  }

  .hotel-card {
    flex: 0 0 75%;
    padding: 0 1rem;
  }

  .hotel-card img {
    height: 350px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .album-section {
    padding: 3rem 1.5rem;
  }

  .album-item.tall,
  .album-item.wide,
  .album-item.small {
    grid-column: span 6;
    height: 250px;
  }

  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .vacation-section,
  .reviews-section,
  .newsletter {
    padding: 3rem 0;
  }

  .split-content {
    padding: 3rem 1.5rem;
  }

  .split-title {
    font-size: 2.2rem;
  }

  .discovery-title {
    font-size: 2.22rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hotel-card {
    flex: 0 0 85%;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
  }

  .album-item.tall,
  .album-item.wide,
  .album-item.small {
    grid-column: span 12;
    height: 250px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .reserve-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.6rem;
  }
}