/* BASE STYLES */
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: #fffaf7;
  color: #333;
}

/* HEADER / HERO IMAGE */
header {
  background: url('panorama-sky.jpg') center/cover no-repeat;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 2rem;
  background-attachment: fixed;
}

.logo {
  position: absolute;
  top: 40px;
  right: 30px;
  max-width: 180px;
}

header h1 {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 2rem;
  border-radius: 8px;
  color: #0e4c57;
  max-width: 600px;
  font-family: 'Segoe UI', sans-serif;
}

/* NAVIGATION STYLES */
nav {
  background-color: #fdfaf6;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

nav .hamburger {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  display: none;
  position: relative;
  z-index: 10;
}

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

nav .nav-links a {
  text-decoration: none;
  color: #0e4c57;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav .nav-links a:hover {
  background-color: #c06c84;
  color: white;
  border-radius: 4px;
}

/* SECTION LAYOUT */
section {
  padding: 4rem 1rem;
  max-width: 1000px;
  margin: auto;
}

section h2 {
  font-size: 2rem;
  color: #c06c84;
  margin-bottom: 1rem;
  text-align: center;
}

section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* IMAGE BLOCKS */
.photo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  text-align: center;
}

.photo-block img {
  display: block;
  margin: 0 auto;
  max-width: 90%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.caption {
  font-style: italic;
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #666;
}

/* FORM STYLES */
form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
}

label {
  font-weight: bold;
}

input, textarea {
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-family: inherit;
}

button {
  padding: 0.75rem 1.5rem;
  background-color: #c06c84;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #a75a6e;
}

/* FEATURED TITLES */
.highlight-title {
  color: #c06c84;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #f0e8df;
  font-size: 0.9rem;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.5rem;
    padding: 0.75rem 1rem;
    max-width: 90%;
  }

  .logo {
    max-width: 120px;
    right: 15px;
    top: 15px;
  }

  nav .hamburger {
    display: block;
  }

  nav .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-top: 1rem;
  }

  nav .nav-links.active {
    display: flex;
  }

  nav .nav-links a {
    padding: 0.75rem 1rem;
  }
}
