﻿:root {
  --sand: #f5e6d3;
  --ocean: #0077b6;
  --ocean-light: #00b4d8;
  --ocean-dark: #023e8a;
  --sunset: #ff6b35;
  --sunset-light: #ff9f1c;
  --coral: #ff6b6b;
  --palm: #2d6a4f;
  --text-dark: #1a1a2e;
  --text-light: rgba(255, 255, 255, 0.9);
}

.summer-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #48cae4 100%);
}

.summer-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 159, 28, 0.2) 0%, transparent 70%);
}

.summer-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.summer-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.summer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeInDown 0.8s ease;
}

.badge-icon { font-size: 1.2rem; }

.summer-hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  color: white;
  margin: 0 0 1rem 0;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease;
}

.summer-hero h1 span {
  display: block;
  background: linear-gradient(135deg, #fff 0%, #ff9f1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.summer-subtitle {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--text-light);
  margin: 0 0 2rem 0;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.2s both;
}

.summer-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  color: white;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.highlight:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.highlight-icon { font-size: 1.3rem; }

.summer-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

.summer-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--ocean-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.summer-nav-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  background: var(--sunset);
  color: white;
}

.summer-nav-btn span { font-size: 1.2rem; }

.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  overflow: hidden;
}

.wave-container svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.wave-container path { fill: var(--sand); }

.location-section {
  padding: 5rem 0;
  background: var(--sand);
}

.location-section.alt-bg {
  background: linear-gradient(180deg, var(--sand) 0%, #fff5eb 100%);
}

.location-header {
  text-align: center;
  margin-bottom: 3rem;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--ocean);
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.location-section h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 1rem 0;
}

.location-section h2 span { color: var(--ocean); }

.location-subtitle {
  font-size: 1.15rem;
  color: rgba(26, 26, 46, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.location-hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.location-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.location-hero-image:hover img { transform: scale(1.03); }

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.image-caption { color: white; font-weight: 600; font-size: 1rem; }

.content-intro {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--ocean);
}

.content-intro h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1rem 0;
}

.content-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(26, 26, 46, 0.8);
  margin: 0;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.info-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }

.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.info-card p {
  font-size: 0.9rem;
  color: rgba(26, 26, 46, 0.7);
  margin: 0;
  line-height: 1.5;
}

.places-section { margin-bottom: 3rem; }

.places-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ocean-light);
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.place-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.place-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.place-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.place-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.place-card:hover .place-image img { transform: scale(1.1); }

.place-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  background: var(--sunset);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.place-content { padding: 1.25rem; }

.place-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.place-content p {
  font-size: 0.9rem;
  color: rgba(26, 26, 46, 0.7);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

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

.rating { color: #ffc107; font-weight: 700; font-size: 0.9rem; }
.price { color: var(--palm); font-weight: 700; font-size: 0.9rem; }

.activities-section { margin-bottom: 2rem; }

.activities-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sunset-light);
}

.activities-list { display: flex; flex-direction: column; gap: 1rem; }

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.activity-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.activity-icon { font-size: 1.5rem; flex-shrink: 0; }

.activity-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.3rem 0;
}

.activity-item p {
  font-size: 0.9rem;
  color: rgba(26, 26, 46, 0.7);
  margin: 0;
  line-height: 1.5;
}

.map-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--sand) 0%, #fff5eb 100%);
}

.map-section h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 1rem 0;
}

.map-section h2 span { color: var(--ocean); }

.guide-map {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  margin-top: 2rem;
}

.tips-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean) 100%);
}

.tips-section h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: white;
  margin: 0 0 3rem 0;
}

.tips-section h2 span { color: var(--sunset-light); }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.tip-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

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

.tip-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }

.tip-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem 0;
}

.tip-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

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

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

@media (max-width: 768px) {
  .summer-hero { min-height: 90vh; }
  .summer-highlights { gap: 1rem; }
  .location-hero-image img { height: 250px; }
  .guide-map { height: 350px; }
  .info-cards { grid-template-columns: 1fr; }
  .places-grid { grid-template-columns: 1fr; }
}
