/* Rihlaath Travels - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  /* Colors */
  --primary-700: #00585E;
  --primary-500: #007980;
  --primary-300: #4A9DA5;
  --primary-200: #A5D8DB;
  --primary-100: #E0F2F2;
  --aqua-blue: #00BCD4;
  --aqua-blue-hover: #00ACC1;
  --aqua-light: #B2EBF2;
  --booking-red: #E53935;
  --booking-red-hover: #D32F2F;
  --neutral-900: #1F2937;
  --neutral-500: #6B7280;
  --neutral-200: #E5E7EB;
  --surface-bg: #FFFFFF;
  --page-bg: #F8F9FA;
  --accent-coral: #FF6B6B;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  
  /* Border Radius */
  --radius-md: 12px;
  --radius-lg: 16px;
  
  /* Shadows */
  --shadow-md: 0 4px 12px rgba(0, 88, 94, 0.08);
  --shadow-lg: 0 10px 24px rgba(0, 88, 94, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 88, 94, 0.15);
  --shadow-glow: 0 0 20px rgba(0, 188, 212, 0.3);
  
  /* Typography */
  --font-base: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.7;
  color: var(--neutral-900);
  background-color: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Typography ===== */
h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: var(--primary-700);
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
  color: var(--primary-700);
}

h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--neutral-900);
}

.lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

/* Mobile Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 24px;
  }
}

/* ===== Navigation ===== */
.navbar {
  position: sticky;
  top: 0;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral-500);
  padding: var(--space-xs) 0;
  position: relative;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-700);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-700);
  transform: translateX(-50%);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Desktop nav-toggle (hidden by default) */
.nav-toggle {
  display: none;
}

/* Removed hamburger-related styles - now using ☰ character */

/* Make sure the toggle button has flex layout */
/* Removed conflicting mobile nav container styles - consolidated in mobile navigation section below */

/* ===== Mobile Navigation ===== */
@media (max-width: 768px) {
  /* Hide desktop navigation menu */
  .nav-menu {
    display: none;
  }
  
  /* Show mobile toggle button */
  .nav-toggle {
    display: block !important;
    background: transparent !important;
    border: 2px solid transparent;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    outline: none;
    font-size: 24px;
    color: var(--primary-700);
    transform: scale(1);
  }
  
  .nav-toggle:hover {
    background-color: white;
    transform: scale(1.1);
    color: var(--primary-500);
  }
  
  .nav-toggle:active {
    background-color: var(--primary-100);
    transform: scale(0.95);
  }
  
  .nav-toggle:focus {
    border: 2px solid var(--primary-500);
    outline: 2px solid var(--primary-200);
  }
  
  /* Removed hamburger icon styles - now using ☰ character */
  
  .nav-toggle.active {
    background-color: white;
    color: var(--primary-500);
  }

  /* Removed hamburger animation styles - using character icon instead */
  
  /* Mobile menu panel */
  .nav-menu.mobile-open {
    display: flex;
    position: fixed;
    top: 80px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background: var(--surface-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-radius: 0 0 12px 12px;
    z-index: 1000;
  }
  
  .nav-menu.mobile-open.active,
  .nav-menu.mobile-open.left-0 {
    left: 0;
  }
  
  /* Mobile menu backdrop */
  .mobile-menu-backdrop {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  
  .mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Mobile menu links */
  .nav-menu .nav-link {
    width: 100%;
    padding: var(--space-sm) 0;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .nav-menu .nav-link:hover {
    padding-left: var(--space-sm);
    background: var(--primary-100);
  }
}

/* ===== Container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
  
  /* Full width containers on mobile for better space utilization */
  .container {
    padding: 0 var(--space-sm);
  }
  
  /* Ensure detail sections use full width */
  .detail-header {
    padding: 0;
  }
  
  .detail-content {
    padding: 0;
  }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--surface-bg) 100%);
  overflow: hidden;
  padding: var(--space-3xl) var(--space-md);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: var(--space-md);
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero p {
  font-size: 18px;
  color: var(--neutral-500);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0,0,0);
  }
  40%, 43% {
    transform: translate3d(0,-8px,0);
  }
  70% {
    transform: translate3d(0,-4px,0);
  }
  90% {
    transform: translate3d(0,-2px,0);
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  min-height: 56px;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.8s ease;
}

.btn:hover::before {
  left: 100%;
}

/* Booking Button - Red */
.btn-booking {
  background: var(--booking-red);
  color: white;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.btn-booking:hover {
  background: var(--booking-red-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

.btn-booking:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

/* Aqua Blue Buttons */
.btn-primary {
  background: var(--aqua-blue);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
  background: var(--aqua-blue-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

/* Teal Secondary */
.btn-secondary {
  background: var(--primary-500);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 121, 128, 0.3);
}

.btn-secondary:hover {
  background: var(--primary-700);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 121, 128, 0.4);
}

.btn-secondary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 15px rgba(0, 121, 128, 0.3);
}

/* Outline Buttons */
.btn-outline {
  background: transparent;
  border: 2px solid var(--aqua-blue);
  color: var(--aqua-blue);
  position: relative;
}

.btn-outline:hover {
  background: var(--aqua-blue);
  color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}

.btn-outline:active {
  transform: translateY(0) scale(0.98);
}

.btn-outline-teal {
  background: transparent;
  border: 2px solid var(--primary-500);
  color: var(--primary-500);
  position: relative;
}

.btn-outline-teal:hover {
  background: var(--primary-500);
  color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 121, 128, 0.3);
}

.btn-outline-teal:active {
  transform: translateY(0) scale(0.98);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn:disabled:hover {
  transform: none !important;
  box-shadow: var(--shadow-md) !important;
}

/* ===== Cards ===== */
.card {
  background: var(--surface-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateZ(0);
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.card-interactive {
  cursor: pointer;
  position: relative;
}

.card-interactive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(0, 188, 212, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.card-interactive:hover::before {
  opacity: 1;
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card-content {
  padding: var(--space-lg);
}

.card-title {
  margin-bottom: var(--space-sm);
}

.card-text {
  color: var(--neutral-500);
  margin-bottom: var(--space-md);
}

/* ===== Grid ===== */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ===== Tags/Pills ===== */
.tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary-100);
  color: var(--primary-700);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-right: var(--space-xs);
  margin-bottom: var(--space-xs);
}

/* ===== Booking Widget ===== */
.booking-widget {
  background: var(--surface-bg);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 96px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-900);
  letter-spacing: 0.2px;
}

.form-input,
.form-select {
  height: 56px;
  padding: 0 var(--space-sm);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  font-family: var(--font-base);
  font-size: 16px;
  transition: border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--surface-bg);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-500);
}

.form-input::placeholder {
  color: var(--neutral-500);
}

.whatsapp-input {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.whatsapp-icon {
  color: #25D366;
  font-size: 24px;
}

/* Mobile Booking Widget - Now part of document flow */
@media (max-width: 768px) {
  .booking-widget {
    position: static;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
  }
  
  /* Remove body padding bottom */
  body {
    padding-bottom: 0;
  }
  
  /* Style booking widget title for mobile */
  .booking-widget h3 {
    color: var(--neutral-900);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    padding: 0;
  }
}

/* ===== Info Sections ===== */
.info-section {
  background: var(--surface-bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
}

.info-section h2 {
  margin-bottom: var(--space-md);
}

.info-section h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--primary-500);
}

.info-section p {
  margin-bottom: var(--space-md);
  color: var(--neutral-500);
}

.info-section ul {
  list-style-position: inside;
  color: var(--neutral-500);
  margin-bottom: var(--space-md);
}

.info-section li {
  margin-bottom: var(--space-xs);
  padding-left: var(--space-sm);
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  background: none;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===== Contact Form ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface-bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form-textarea {
  min-height: 150px;
  padding: var(--space-sm);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  font-family: var(--font-base);
  font-size: 16px;
  resize: vertical;
  transition: border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-textarea:focus {
  outline: none;
  border-color: var(--primary-500);
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-700);
  color: white;
  padding: var(--space-2xl) 0;
  text-align: center;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.footer-link {
  color: var(--primary-100);
  transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
  color: white;
}

/* ===== Utility Classes ===== */
.text-center {
  text-align: center;
}

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* ===== Loading States ===== */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid var(--neutral-200);
  border-radius: 50%;
  border-top-color: var(--primary-500);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== Success/Error Messages ===== */
.message {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.message-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid var(--success);
}

.message-error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
  border: 1px solid var(--error);
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--aqua-blue);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.2);
}

/* Additional Enhanced Animations */
.animate-fade-in {
  animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-up {
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left {
  animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right {
  animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale-in {
  animation: scaleIn 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stagger animations for lists */
.stagger-animation {
  animation-delay: calc(var(--stagger-delay, 0) * 0.1s);
}

/* ===== Responsive Images ===== */
.img-responsive {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Page Specific Styles ===== */

/* Resort/Guesthouse Detail Page */
.detail-header {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 1024px) {
  .detail-header {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .detail-header {
    margin-bottom: var(--space-xl);
    gap: var(--space-md);
  }
  
  .detail-content {
    margin-bottom: var(--space-lg);
  }
}

.detail-info {
  background: var(--surface-bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  background: var(--primary-100);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--primary-700);
}

.amenity-item::before {
  content: '✓';
  font-weight: 700;
}

/* Rooms Display */
.rooms-section {
  margin-top: var(--space-2xl);
}

.room-card {
  background: var(--surface-bg);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

/* Island Page Styles */
.island-hero {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
  color: white;
  padding: var(--space-2xl) 0;
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.island-hero h1 {
  color: white;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.highlight-item {
  text-align: center;
  padding: var(--space-md);
  background: var(--surface-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.guesthouse-section {
  margin-bottom: var(--space-3xl);
  padding: var(--space-2xl);
  background: var(--surface-bg);
  border-radius: var(--radius-md);
}

/* Archive Page */
.archive-tabs {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  border-bottom: 2px solid var(--neutral-200);
}

.archive-tab {
  padding: var(--space-sm) var(--space-md);
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-500);
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.archive-tab.active {
  color: var(--primary-700);
}

.archive-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-700);
}

.archive-content {
  display: none;
}

.archive-content.active {
  display: block;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.video-item {
  aspect-ratio: 16/9;
  background: var(--neutral-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}
