:root {
  --primary: #00AEEF; /* Sky Blue from the flyer's sky */
  --secondary: #FFC107; /* Sunny Yellow from the sun and bar tent */
  --accent: #E05206; /* Terracotta Red from the roofs and grill */
  --background: #FDFBF7; /* Warm Cream/Off-white for daylight */
  --surface: rgba(255, 255, 255, 0.85); /* Light frosted glass */
  --border: rgba(0, 0, 0, 0.05); /* Very soft border for glass */
  --text-main: #1F2937; /* Dark Charcoal for readability */
  --text-muted: #4B5563; /* Medium Slate Gray */
  --glass-blur: 16px;
}

body {
  margin: 0;
  font-family: 'Outfit', 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--text-main);
  line-height: 1.6;
  /* Light, subtle gradients in the corners to give a sunny sky feel */
  background-image: 
    radial-gradient(at 0% 0%, rgba(0, 174, 239, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(255, 193, 7, 0.12) 0px, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

/* Light Glassmorphism Classes */
.glass {
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 999px; /* Pill shape */
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Main Layout */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 0;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards (Blog & Gallery) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
  flex: 1;
}

.card-title {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
}

.card-title a {
  color: var(--text-main);
}

.card-date {
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.card-excerpt {
  color: var(--text-muted);
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--secondary);
  color: var(--text-main);
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 193, 7, 0.3);
}

.btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(0, 174, 239, 0.4);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-up {
  animation: fadeInUp 0.8s ease-out backwards;
}

/* Responsive Design / Mobile Optimization */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 16px;
  }
  
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  main {
    padding: 0 1rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
