* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #2d5f4f;
  --accent-green: #3a7a63;
  --light-green: #4a9d7f;
  --text-dark: #1a1a1a;
  --text-light: #f5f5f5;
  --text-gray: #666;
  --bg-light: #f9f9f9;
  --beige-bg: #f4ebe3;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 200px;
  width: auto;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: opacity 0.3s;
  text-transform: capitalize;
}

.nav a:hover {
  opacity: 0.8;
}

.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  padding: 120px 0 60px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(45, 95, 79, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-text-box {
  flex: 1;
  min-width: 350px;
  background: rgba(0, 0, 0, 0.6);
  padding: 50px 40px;
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-text-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--light-green);
  font-weight: 300;
}

.hero-title {
  font-size: 72px;
  font-weight: 300;
  letter-spacing: 20px;
  margin-bottom: 30px;
  line-height: 1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 400;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-description {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 35px;
  opacity: 0.95;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.btn-primary {
  background: var(--primary-green);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-green);
}

.btn-small {
  padding: 10px 24px;
  font-size: 13px;
}

.btn-dark {
  background: #3d3d3d;
  color: white;
  padding: 12px 28px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-dark:hover {
  background: #2d2d2d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.link {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.link:hover {
  opacity: 0.7;
}

.hero-image-wrapper {
  flex: 1;
  min-width: 350px;
  max-width: 500px;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
  transform: scale(1.02);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Enhanced play button styling for better visibility and interactivity */
.play-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 10;
}

.play-video-btn svg {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
  transition: all 0.3s ease;
}

.play-video-btn:hover svg {
  transform: scale(1.15);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
}

.play-video-btn:hover svg circle {
  fill: white;
}

.play-video-btn span {
  color: white;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 24px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.play-video-btn:hover span {
  background: rgba(45, 95, 79, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.video-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-badge:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: translateX(5px);
}

.play-icon {
  font-size: 12px;
}

.things-to-do-section {
  padding: 100px 0;
  background: var(--beige-bg);
}

.things-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.things-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 20px;
  font-weight: 600;
}

.things-main-title {
  font-family: "Cinzel", serif;
  font-size: 68px;
  font-weight: 900;
  letter-spacing: 6px;
  color: #c49a6c;
  margin-bottom: 30px;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.things-intro {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.things-section-title {
  font-family: "Cinzel", serif;
  font-size: 52px;
  text-align: center;
  letter-spacing: 10px;
  font-weight: 900;
  color: var(--text-dark);
  margin: 80px 0 60px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.08);
}

.activity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.activity-row.reverse {
  direction: rtl;
}

.activity-row.reverse > * {
  direction: ltr;
}

.activity-content {
  padding: 30px;
}

.activity-title {
  font-family: "Cinzel", serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 25px;
  color: var(--text-dark);
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.activity-description {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.activity-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.activity-image:hover {
  transform: scale(1.02);
}

.activity-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.activity-image:hover img {
  transform: scale(1.05);
}

.food-section {
  padding: 100px 0;
  background: white;
}

.food-content {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.food-image {
  flex: 1;
  min-width: 350px;
}

.food-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.food-text {
  flex: 1;
  min-width: 350px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 20px;
  font-weight: 600;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: 46px;
  margin-bottom: 25px;
  line-height: 1.3;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.section-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 30px;
}

.events-section {
  padding: 100px 0;
  background: var(--bg-light);
  text-align: center;
}

.events-title {
  font-family: "Cinzel", serif;
  font-size: 60px;
  margin-bottom: 60px;
  letter-spacing: 14px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.08);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.event-title {
  font-family: "Cinzel", serif;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: white;
  font-size: 24px;
  text-align: left;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.event-content {
  padding: 25px 20px;
  text-align: left;
}

.event-description {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 25px;
}

.event-link {
  font-size: 12px;
  color: var(--primary-green);
  text-decoration: none;
  transition: opacity 0.3s;
}

.event-link:hover {
  opacity: 0.7;
}

.accommodation-section {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.section-header {
  margin-bottom: 50px;
}

.view-toggle {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.toggle-btn {
  padding: 10px 24px;
  border: 2px solid var(--primary-green);
  background: white;
  color: var(--primary-green);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.toggle-btn.active,
.toggle-btn:hover {
  background: var(--primary-green);
  color: white;
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.accommodation-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.accommodation-card:hover {
  transform: translateY(-5px);
}

.accommodation-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.island-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.island-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.island-content {
  position: relative;
  z-index: 1;
}

.island-title {
  font-family: "Cinzel", serif;
  font-size: 60px;
  margin-bottom: 70px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.island-title span {
  color: var(--light-green);
}

.island-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.island-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 50px 35px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s;
}

.island-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.island-card h3 {
  font-family: "Cinzel", serif;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.island-card p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 30px;
  opacity: 0.95;
}

.explore-section {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 50px 0 40px;
}

.explore-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 400px;
  transition: transform 0.3s;
}

.explore-card:hover {
  transform: scale(1.02);
}

.explore-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.pagination button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}

.pagination button.active {
  background: var(--primary-green);
}

.newsletter-section {
  padding: 80px 0;
  background: #0a0a0a;
  color: white;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
}

.newsletter-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.newsletter-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: white;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.newsletter-form input::placeholder {
  color: #666;
}

.footer {
  background: #000;
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 25px;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  color: white;
  font-size: 20px;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .logo img {
    height: 60px;
  }

  .hero-title {
    font-size: 48px;
    letter-spacing: 12px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-text-box {
    padding: 35px 25px;
  }

  .section-title {
    font-size: 34px;
  }

  .events-title,
  .island-title {
    font-size: 38px;
    letter-spacing: 8px;
  }

  .accommodation-grid,
  .explore-grid {
    grid-template-columns: 1fr;
  }

  .food-content {
    gap: 40px;
  }

  .hero-content {
    gap: 30px;
  }

  .things-main-title {
    font-size: 44px;
    letter-spacing: 3px;
  }

  .things-section-title {
    font-size: 34px;
    letter-spacing: 5px;
  }

  .activity-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .activity-row.reverse {
    direction: ltr;
  }

  .activity-title {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .activity-image img {
    height: 300px;
  }
}
