@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --deep-teal: #1a5f5f;
  --mustard-gold: #d4a574;
  --cream-white: #f5f1e8;
  --charcoal-grey: #2c2c2c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal-grey);
  background-color: var(--cream-white);
  line-height: 1.6;
}

header {
  background-color: var(--deep-teal);
  color: var(--cream-white);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--cream-white);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--cream-white);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--mustard-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--cream-white);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

section {
  margin: 2rem 0;
}

section.hero {
  margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--deep-teal);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  background: linear-gradient(rgba(26, 95, 95, 0.7), rgba(26, 95, 95, 0.7)), url('../images/hero-bg.jpg') center/cover;
  color: var(--cream-white);
  padding: 8rem 2rem;
  text-align: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  color: var(--cream-white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--mustard-gold);
  color: var(--cream-white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-card {
  background-color: var(--cream-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-card h3 {
  color: var(--deep-teal);
  margin-bottom: 1rem;
}

form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--cream-white);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--charcoal-grey);
  font-weight: 400;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 2px solid var(--charcoal-grey);
  border-radius: 5px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}

form textarea {
  min-height: 150px;
  resize: vertical;
}

form input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

footer {
  background-color: var(--deep-teal);
  color: var(--cream-white);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  color: var(--cream-white);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-column p,
.footer-column a {
  color: var(--cream-white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-column a:hover {
  color: var(--mustard-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.3);
  padding-top: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.privacy-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--cream-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  z-index: 10000;
  display: none;
}

.privacy-popup.active {
  display: block;
}

.privacy-popup p {
  margin-bottom: 1rem;
  color: var(--charcoal-grey);
}

.privacy-popup-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.privacy-popup button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.privacy-popup .btn-accept {
  background-color: var(--deep-teal);
  color: var(--cream-white);
}

.privacy-popup .btn-decline {
  background-color: var(--charcoal-grey);
  color: var(--cream-white);
}

.privacy-popup button:hover {
  opacity: 0.9;
}

.legal-page {
  padding: 2rem 1rem;
}

.legal-page h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-page h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  body {
    hyphens: auto;
  }

  .logo {
    font-size: 1rem;
  }

  nav ul {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--deep-teal);
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s ease;
    gap: 1.5rem;
  }

  nav ul.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 4rem 1rem;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 320px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
