/* Enhanced Seven Sisters Website Styles */
/* Import Tailwind base - keep existing Tailwind classes working */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* Base improvements */
:root {
  --color-primary: #0d9488;
  --color-primary-dark: #0f766e;
  --color-accent: #06b6d4;
  --color-light: #f0fdfa;
  --gradient-hero: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.16);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

/* Hero Section - Dramatic Improvement */
.hero {
  position: relative;
  min-height: 75vh;
  background: linear-gradient(135deg, #0d9488 0%, #06b6d4 50%, #0891b2 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 4rem 1rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-with-image {
  background-image: 
    linear-gradient(135deg, rgba(13, 148, 136, 0.85) 0%, rgba(6, 182, 212, 0.85) 50%, rgba(8, 145, 178, 0.85) 100%),
    url('/assets/img/seven-sisters-hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
}

.wave-pattern {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 120px;
  fill: #ffffff;
  opacity: 0.95;
}

.cliff-pattern {
            background-image: 
                linear-gradient(135deg, rgba(20, 184, 166, 0.05) 25%, transparent 25%),
                linear-gradient(225deg, rgba(20, 184, 166, 0.05) 25%, transparent 25%),
                linear-gradient(45deg, rgba(20, 184, 166, 0.05) 25%, transparent 25%),
                linear-gradient(315deg, rgba(20, 184, 166, 0.05) 25%, transparent 25%);
            background-position: 10px 0, 10px 0, 0 0, 0 0;
            background-size: 20px 20px;
            background-repeat: repeat;
        }
        
        .wave-divider {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        
        .wave-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.hero-content {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
  }
}

.hero-text {
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-text h1 {
  /*font-family: 'Playfair Display', serif;*/
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: white;
  color: #0d9488;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Logo Showcase - Elegant Card */
.logo-showcase {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-showcase:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 28px 80px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}

.logo-frame {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 2px solid #e2e8f0;
}

.logo-frame svg {
  width: 100%;
  height: auto;
  display: block;
}

.logo-controls {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.control-btn {
  flex: 1;
  min-width: 140px;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
}

.control-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.control-btn:active {
  transform: translateY(0);
}

/* Stats Cards - More Visual Impact */
.grid.sm\\:grid-cols-2.lg\\:grid-cols-4 > div {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.grid.sm\\:grid-cols-2.lg\\:grid-cols-4 > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d9488 0%, #06b6d4 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.grid.sm\\:grid-cols-2.lg\\:grid-cols-4 > div:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #0d9488;
}

.grid.sm\\:grid-cols-2.lg\\:grid-cols-4 > div:hover::before {
  opacity: 1;
}

/* Navigation Improvements */
nav {
  
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

nav a {
  position: relative;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Removed underline animation on nav links */

nav a.bg-teal-100 {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.15);
}

/* Content Cards Enhancement */
.bg-gradient-to-br {
  position: relative;
  overflow: hidden;
}

.bg-gradient-to-br::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.bg-gradient-to-br:hover::before {
  opacity: 1;
}

/* Attention Banner Enhancement */
.bg-gradient-to-r.from-amber-50 {
  border-left: 4px solid #f59e0b;
  position: relative;
  overflow: hidden;
}

.bg-gradient-to-r.from-amber-50::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f59e0b 0%, #ef4444 100%);
  animation: shimmer 3s ease-in-out infinite;
}

/* Typography Improvements */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1e293b;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #334155;
}

/* Link Hover Effects */
a:not(.btn):not(nav a) {
  position: relative;
  transition: color 0.3s ease;
}

/* Removed default teal hover - links keep their original colors */

/* Footer Enhancement */
footer {
  background: linear-gradient(135deg, #000 0%, #000 100%);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(13, 148, 136, 0.3) 50%, 
    transparent 100%
  );
}

/* Icon Animations */
svg {
  transition: transform 0.3s ease;
}

.hover\\:shadow-lg:hover svg,
.hover\\:shadow-xl:hover svg {
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Smooth Scrolling & Focus States */
:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 4px;
  border-radius: 8px;
}

/* Loading States (for images) */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Responsive Improvements */
@media (max-width: 640px) {
  .hero {
    min-height: 60vh;
    padding: 3rem 1rem;
  }
  
  .logo-showcase {
    padding: 1.5rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Print Styles */
@media print {
  .hero,
  nav,
  footer,
  .ad-container,
  .btn {
    display: none !important;
  }
  
  body {
    background: white;
  }
}

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

/* Dark Mode Support (optional) */
@media (prefers-color-scheme: dark) {
  /* Keep light mode for now, but structure is ready */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0d9488 0%, #06b6d4 100%);
  border-radius: 6px;
  border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0f766e 0%, #0891b2 100%);
}

/* Selection Color */
::selection {
  background: rgba(13, 148, 136, 0.2);
  color: #0f766e;
}

/* Ad Container Improvements */
.ad-container {
  margin: 3rem 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.ad-container:hover {
  transform: scale(1.01);
}

/* Quick Links Enhancement */
.grid.md\\:grid-cols-3 > a,
.grid.md\\:grid-cols-3 > div {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.grid.md\\:grid-cols-3 > a::after,
.grid.md\\:grid-cols-3 > div::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.grid.md\\:grid-cols-3 > a:hover::after,
.grid.md\\:grid-cols-3 > div:hover::after {
  left: 100%;
}

#seven-sisters-map {
    width: 100%;
    min-height: 400px;
    height: auto;
}

/* TripAdvisor & Affiliate Widget Styles */

.ad-container {
    margin: 3rem 0;
}

.tripadvisor-widget {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #a7f3d0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.tripadvisor-widget:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.tripadvisor-widget-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.tripadvisor-logo {
    flex-shrink: 0;
}

.tripadvisor-logo img {
    width: 80px;
    height: 80px;
}

.tripadvisor-content {
    flex: 1;
}

.tripadvisor-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tripadvisor-title svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #059669;
}

.tripadvisor-description {
    color: #374151;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.75;
}

.tripadvisor-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    border: 1px solid #a7f3d0;
}

.benefit-badge svg {
    width: 1rem;
    height: 1rem;
    color: #059669;
}

.tripadvisor-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #059669;
    color: white;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.tripadvisor-cta:hover {
    background: #047857;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.tripadvisor-cta svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Booking.com Widget Styles */
.booking-widget {
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #bfdbfe;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.booking-widget h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-widget h3 svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #2563eb;
}

.booking-widget p {
    color: #374151;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

/* Amazon Widget Styles */
.amazon-widget {
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #fed7aa;
}

.amazon-widget-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.amazon-widget img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.amazon-widget-content {
    flex: 1;
}

.amazon-widget h4 {
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.amazon-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f97316;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.amazon-cta:hover {
    background: #ea580c;
}

.amazon-cta svg {
    width: 1rem;
    height: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tripadvisor-widget-inner {
        flex-direction: column;
    }
    
    .tripadvisor-logo {
        align-self: center;
    }
    
    .tripadvisor-title {
        font-size: 1.25rem;
    }
    
    .tripadvisor-description {
        font-size: 1rem;
    }
    
    .tripadvisor-cta {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
    
    .amazon-widget-inner {
        flex-direction: column;
        text-align: center;
    }
}