/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f8f8f8;
  padding: 2rem 1rem;
}

main {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #003366;
}

h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #003366;
  border-bottom: 2px solid #e6e9ed;
  padding-bottom: 0.3rem;
}

h3 {
  font-size: 1.25rem;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  color: #003366;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin: 0 0 1.5rem 1.5rem;
}

li {
  margin-bottom: 0.3rem;
}

hr {
  margin: 2.5rem 0;
  border: 0;
  border-top: 2px solid #e6e9ed;
}

/* Responsive */
@media (max-width: 600px) {
  body { padding: 1rem; }
  main { padding: 1.5rem 1rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 30px auto;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: block;
}

.gallery-caption {
  margin-top: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .gallery-grid {
    gap: 15px;
  }
  .gallery-caption {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    gap: 10px;
  }
  .gallery-caption {
    font-size: 0.8rem;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Gallery Section */
.gallery-section {
  padding: 60px 0;
  background: #f8f9fa;
}

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

.gallery-section p {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: block;
}

.gallery-caption {
  margin-top: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .gallery-grid {
    gap: 15px;
  }
  .gallery-caption {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    gap: 10px;
  }
  .gallery-caption {
    font-size: 0.8rem;
  }
}

/* Based in Truro */
.based-in-truro {
  font-size: 1.1rem;
  color: #27ae60;
  font-weight: 500;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
