@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;700&display=swap');

:root {
  --primary: #2e8b57;
  --light-bg: #f9f9f9;
  --dark-bg: #1e1e1e;
  --text: #333;
  --dark-text: #eee;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: var(--light-bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
}

  header.hero {
  background: url('images/pjkoenig2.png') no-repeat center center/cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
  color: white;
  text-align: center;
  position: relative;
}


header nav {
  display: flex;
  justify-content: space-between;
  padding: 1em 2em;
  background: rgba(0, 0, 0, 0.5);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.75em 1.5em;
  margin-top: 1em;
  border-radius: 5px;
  text-decoration: none;
}

section {
  padding: 4em 2em;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 400px;
  margin: auto;
}

form input, form button {
  padding: 0.75em;
  font-size: 1em;
}

footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 1em;
}

.dark-mode {
  background: var(--dark-bg);
  color: var(--dark-text);
}

.dark-mode footer {
  background: #444;
}

.dark-mode nav {
  background: rgba(0, 0, 0, 0.7);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1em;
  padding: 1em;
}


.gallery-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3; /* or 16 / 9 or 1 / 1 depending on desired shape */
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}


.gallery-grid img:hover {
  transform: scale(1.05);
}



body {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.cta-button {
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  background-color: #246b47;
}

nav a {
  font-weight: bold;
}

section h2 {
  margin-bottom: 0.5em;
  font-size: 2em;
}
section p {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
input, select, button {
  font-size: 1rem;
  padding: 0.9em;
}
