/* Modern Beach Dashboard 2025 */
:root {
  --primary-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --ocean-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --sunset-gradient: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  --glass-background: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --text-primary: #1a1a1a;
  --text-secondary: #666;
  --text-light: #fff;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-hard: 0 20px 60px rgba(0, 0, 0, 0.15);
  --border-radius: 24px;
  --border-radius-small: 16px;
  --animation-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: linear-gradient(135deg, #f5f9ff 0%, #e8f4f8 100%);
  min-height: 100vh;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

.beach-dashboard {
  width: 100%;
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
  background: var(--ocean-gradient);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 2;
  position: relative;
  max-width: 1200px;
  width: 100%;
}

/* Hero Columns Layout */
.hero-columns {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
}

.hero-text {
  text-align: center;
  color: var(--text-light);
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.hero-update {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: inline-flex;
  margin-top: 1.5rem;
}

.hero-update-icon {
  width: 1rem;
  height: 1rem;
}

/* Hero Additional Column */
.hero-additional {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-beach-photo {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--glass-background);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s var(--animation-smooth);
}

.hero-beach-photo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hard);
}

.hero-beach-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: all 0.3s var(--animation-smooth);
}

.hero-beach-photo:hover img {
  transform: scale(1.05);
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.photo-icon {
  width: 1rem;
  height: 1rem;
  opacity: 0.8;
}

.hero-quick-info {
  background: var(--glass-background);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s var(--animation-smooth);
}

.hero-quick-info:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hard);
}

.quick-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.quick-info-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.quick-info-value {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
  text-align: right;
}

.status-open {
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.status-closed {
  color: #ef4444;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.status-unknown {
  color: #f59e0b;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* Hero Stats Grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1000px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s var(--animation-smooth);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-small);
  color: white;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-icon svg {
  width: 100%;
  height: 100%;
}

.hero-stat-info {
  display: flex;
  flex-direction: column;
  color: white;
}

.hero-stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Flag Cards Special Styling */
.flag-card.flag-white {
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.9) 0%, rgba(0, 184, 148, 0.9) 100%);
}

.flag-card.flag-red {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.9) 0%, rgba(220, 38, 38, 0.9) 100%);
}

/* Decorative Elements */
.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: bubble-float 6s ease-in-out infinite;
}

.bubble1 {
  width: 20px;
  height: 20px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.bubble2 {
  width: 15px;
  height: 15px;
  top: 40%;
  left: 80%;
  animation-delay: 2s;
}

.bubble3 {
  width: 25px;
  height: 25px;
  top: 60%;
  left: 20%;
  animation-delay: 4s;
}

.bubble4 {
  width: 12px;
  height: 12px;
  top: 80%;
  left: 70%;
  animation-delay: 1s;
}

.bubble5 {
  width: 18px;
  height: 18px;
  top: 30%;
  left: 50%;
  animation-delay: 3s;
}

@keyframes bubble-float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.4;
  }
  50% { 
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

/* Enhanced Wave Animation */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
}

.wave1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%23ffffff' fill-opacity='0.15'/%3E%3C/svg%3E");
  animation: wave 15s linear infinite;
  z-index: 1;
}

.wave2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/svg%3E");
  animation: wave 20s linear infinite reverse;
  z-index: 2;
}

.wave3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff' fill-opacity='0.12'/%3E%3C/svg%3E");
  animation: wave 25s linear infinite;
  z-index: 3;
}

.wave4 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V7.23C0,65.52,268.63,112.77,600,112.77S1200,65.52,1200,7.23V0Z' fill='%23ffffff' fill-opacity='0.2'/%3E%3C/svg%3E");
  animation: wave 18s linear infinite reverse;
  z-index: 4;
  height: 140px;
}

.wave5 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V120H0Z' fill='%23ffffff' fill-opacity='0.25'/%3E%3C/svg%3E");
  animation: wave 30s linear infinite;
  z-index: 5;
  height: 160px;
}

/* Little Boat */
.hero-boat {
  position: absolute;
  bottom: 100px;
  right: 8%;
  z-index: 20;
  animation: boat-float 8s ease-in-out infinite;
}

.boat-icon {
  width: 60px;
  height: 40px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes boat-float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  25% { 
    transform: translateY(-8px) rotate(2deg);
  }
  50% { 
    transform: translateY(-12px) rotate(0deg);
  }
  75% { 
    transform: translateY(-6px) rotate(-2deg);
  }
}

@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Dashboard Container */
.dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 3;
}

/* Weather Grid */
.weather-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.weather-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s var(--animation-smooth);
  position: relative;
  overflow: hidden;
}

.weather-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.weather-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hard);
}

.weather-icon {
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-small);
  color: white;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weather-icon svg {
  width: 100%;
  height: 100%;
}

.weather-info h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.weather-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  line-height: 1;
}

.weather-secondary {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: block;
  margin-top: 0.25rem;
}

.weather-description {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  text-transform: capitalize;
}

/* Specific card colors - Updated to blue scheme */
.temperature-card::before { background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%); }
.water-card::before { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.feels-like-card::before { background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%); }
.humidity-card::before { background: linear-gradient(135deg, #81ecec 0%, #00cec9 100%); }
.wind-card::before { background: linear-gradient(135deg, #b2bec3 0%, #636e72 100%); }
.pressure-card::before { background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%); }
.visibility-card::before { background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%); }
.description-card::before { background: linear-gradient(135deg, #00cec9 0%, #00b894 100%); }

/* Compact Photo Gallery */
.gallery-section {
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #4facfe;
}

.photo-gallery-compact {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-height: 400px;
  overflow: hidden;
}

.photo-item {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--border-radius-small);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s var(--animation-smooth);
}

.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hard);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--animation-smooth);
}

.photo-item:hover img {
  transform: scale(1.1);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 1rem;
  color: white;
}

.photo-date {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Today Photo Styles */
.today-photo {
  position: relative;
}

.today-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.today-badge svg {
  width: 0.9rem;
  height: 0.9rem;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
  }
}

.today-photo .photo-caption {
  background: linear-gradient(transparent, rgba(0, 184, 148, 0.8));
}

.today-photo:hover .today-badge {
  animation-play-state: paused;
  transform: scale(1.1);
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s var(--animation-smooth);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hard);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 2rem;
  height: 2rem;
  color: #4facfe;
}

.info-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.info-content p {
  color: var(--text-primary);
  line-height: 1.6;
}

/* Lifeguards */
.lifeguards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lifeguard-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(79, 172, 254, 0.1);
  border-radius: var(--border-radius-small);
  transition: all 0.3s var(--animation-smooth);
}

.lifeguard-item:hover {
  background: rgba(79, 172, 254, 0.15);
  transform: translateX(5px);
}

.lifeguard-avatar {
  width: 3rem;
  height: 3rem;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.lifeguard-item span {
  font-weight: 500;
  color: var(--text-primary);
}

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

.beach-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s var(--animation-smooth);
  position: relative;
  overflow: hidden;
}

.beach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ocean-gradient);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.history-card::before {
  background: var(--sunset-gradient);
}

.beach-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hard);
  color: var(--text-primary);
}

.beach-card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.beach-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #4facfe;
}

.beach-card span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 1rem;
    min-height: 50vh;
  }
  
  .hero-content {
    gap: 2rem;
  }
  
  /* Stack columns vertically on mobile */
  .hero-columns {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .hero-additional {
    flex: none;
    width: 100%;
    max-width: 400px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .hero-stat-card {
    padding: 1rem;
  }
  
  .hero-stat-icon {
    width: 2rem;
    height: 2rem;
  }
  
  .hero-stat-value {
    font-size: 1.2rem;
  }
  
  .hero-waves {
    height: 60px;
  }

  .wave4 {
    height: 80px;
  }

  .wave5 {
    height: 100px;
  }

  .hero-boat {
    bottom: 70px;
    right: 5%;
  }

  .boat-icon {
    width: 50px;
    height: 32px;
  }
  
  /* Main content responsive */
  .dashboard-container {
    padding: 2rem 1rem 1rem;
  }
  
  .weather-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .weather-card {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .weather-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .weather-value {
    font-size: 1.5rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .beaches-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-icon {
    width: 2rem;
    height: 2rem;
  }
  
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 1rem;
    min-height: 45vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stat-card {
    padding: 0.75rem;
  }
  
  .hero-update {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-waves {
    height: 40px;
  }

  .wave4 {
    height: 60px;
  }

  .wave5 {
    height: 80px;
  }

  .hero-boat {
    bottom: 50px;
    right: 3%;
  }

  .boat-icon {
    width: 45px;
    height: 30px;
  }
  
  /* Main content mobile */
  .weather-card {
    padding: 1rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .beach-card {
    padding: 1.5rem;
  }
  
  .photo-grid {
    grid-template-columns: 1fr;
    max-height: 250px;
  }
}

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

.weather-card, .info-card, .beach-card, .photo-item {
  animation: slideInUp 0.6s var(--animation-smooth) forwards;
}

.weather-card:nth-child(1) { animation-delay: 0.1s; }
.weather-card:nth-child(2) { animation-delay: 0.2s; }
.weather-card:nth-child(3) { animation-delay: 0.3s; }
.weather-card:nth-child(4) { animation-delay: 0.4s; }
.weather-card:nth-child(5) { animation-delay: 0.5s; }
.weather-card:nth-child(6) { animation-delay: 0.6s; }
.weather-card:nth-child(7) { animation-delay: 0.7s; }
.weather-card:nth-child(8) { animation-delay: 0.8s; }

/* Loading states */
.weather-card, .info-card {
  opacity: 0;
  animation: slideInUp 0.6s var(--animation-smooth) forwards;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
.beach-card:focus, .lifeguard-item:focus, .photo-item:focus {
  outline: 2px solid #4facfe;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .hero-section {
    background: none;
    color: black;
  }
  
  .weather-card, .info-card, .beach-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
} 