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

body {
  font-family: 'Inter', sans-serif;
  background-color: #fefefe;
  color: #023e8a;
  line-height: 1.6;
}

:root {
  --blue: #0077b6;
  --aqua: #00b4d8;
  --deep: #023e8a;
  --sand: #fef6e4;
  --white: #ffffff;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


header {
  background-color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

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

.navbar img.logo {
  height: 48px;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.navbar a {
  font-family: 'Quicksand', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--deep);
  text-decoration: none;
}
h1, h2, h3 {
  font-family: 'Quicksand', sans-serif;
}

.hero {
  background: url('../images/hero.webp') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); 
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--aqua);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: var(--blue);
}
.spots-section {
  padding: 4rem 0;
  background: #fef6e4;
  color: var(--deep);
}

.spots-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

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

.spot-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.spot-card:hover {
  transform: translateY(-5px);
}

.spot-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.spot-card h3 {
  font-size: 1.5rem;
  padding: 1rem 1rem 0 1rem;
}

.spot-card p {
  padding: 0 1rem 1rem 1rem;
  font-size: 1rem;
}
.lessons-section {
  padding: 4rem 0;
  background: var(--white);
  color: var(--deep);
}

.lessons-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

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

.lesson-card {
  background: #fef6e4;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.lesson-card:hover {
  transform: translateY(-5px);
}

.lesson-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.lesson-card h3 {
  font-size: 1.4rem;
  padding: 1rem 1rem 0 1rem;
}

.lesson-card p {
  padding: 0 1rem 1rem 1rem;
  font-size: 1rem;
}

.lesson-cta {
  text-align: center;
  margin-top: 2rem;
}
.contact-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--sand);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-title {
  font-family: 'Pacifico', cursive;
  font-size: 1.8rem;
  color: var(--deep);
  letter-spacing: 0.5px;
}
.navbar a {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--deep);
}
.location-section {
  padding: 4rem 0;
  background: var(--sand);
  color: var(--deep);
  text-align: center;
}

.map-container {
  margin-top: 2rem;
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin-inline: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.map-btn {
  margin-top: 1.5rem;
  text-align: center;
}

.map-btn .btn {
  background-color: var(--blue);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.map-btn .btn:hover {
  background-color: var(--aqua);
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}
.hero {
  background: url('../images/hero.webp') no-repeat center center/cover;
}
@media (max-width: 600px) {
  .spot-card img,
  .lesson-card img {
    height: 140px;
  }
}
}
.not-found-section {
  text-align: center;
  padding: 6rem 1rem;
  background-color: var(--sand);
  color: var(--deep);
}

.not-found-section h1 {
  font-size: 6rem;
  font-family: 'Pacifico', cursive;
  margin-bottom: 1rem;
}

.not-found-section p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-family: 'Quicksand', sans-serif;
}

