* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;

  background-color: #f8f9fa;

  color: #2c3e50;

  overflow-x: hidden;
}

.hero {
  height: 100vh;

  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../img/background.jpg") center/cover no-repeat;

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  position: relative;
}

.nav {
  position: fixed;

  top: 0;

  width: 100%;

  padding: 20px 40px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(10px);

  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);

  z-index: 1000;

  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;

  margin: 0 auto;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.logo {
  font-family: "Playfair Display", serif;

  font-size: 28px;

  font-weight: 700;

  color: #06923e;

  text-decoration: none;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;

  font-size: 4.5rem;

  font-weight: 700;

  margin-bottom: 20px;

  color: #fff;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.5rem;

  color: #f0f0f0;

  margin-bottom: 40px;

  font-weight: 300;
}

.menu-button {
  display: inline-block;

  padding: 16px 48px;

  background: #06923e;

  color: #fff;

  text-decoration: none;

  border-radius: 50px;

  font-size: 1.2rem;

  font-weight: 600;

  transition: all 0.3s ease;

  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);

  position: relative;

  overflow: hidden;
}

.menu-button:hover {
  transform: translateY(-3px);

  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.menu-button:active {
  transform: translateY(-1px);
}

.section {
  padding: 80px 20px;

  max-width: 1200px;

  margin: 0 auto;
}

.section h2 {
  font-family: "Playfair Display", serif;

  font-size: 2.5rem;

  text-align: center;

  margin-bottom: 20px;

  color: #2c3e50;
}

.section p {
  font-size: 1.1rem;

  line-height: 1.8;

  text-align: center;

  color: #5a6c7d;

  max-width: 600px;

  margin: 0 auto;
}

.info-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 40px;

  margin-top: 60px;
}

.info-card {
  background: #fff;

  padding: 40px;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  text-align: center;

  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  font-family: "Playfair Display", serif;

  font-size: 1.5rem;

  margin-bottom: 15px;

  color: #06923e;
}

.footer {
  background: #2c3e50;

  color: #ecf0f1;

  padding: 40px 20px;

  text-align: center;
}

.footer p {
  opacity: 0.8;

  margin-bottom: 10px;
}

.loading {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 9999;

  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;

  pointer-events: none;
}

.spinner {
  width: 50px;

  height: 50px;

  border: 5px solid #f3f3f3;

  border-top: 5px solid #06923e;

  border-radius: 50%;

  animation: spin 1s linear infinite;
}

.gallery {
  cursor: grab;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 0 12px 0;
  scroll-snap-type: x mandatory;
}

.gallery::-webkit-scrollbar {
  height: 8px;
}

.gallery::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.gallery::-webkit-scrollbar-thumb {
  background: #06923e;
  border-radius: 4px;
}

.gallery-item {
  position: relative;
  scroll-snap-align: center;
  flex: 0 0 85%;
  max-width: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
}

.lightbox-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  max-width: 90vw;
  max-height: 90vh;
  margin: auto;
}

#lightbox-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.lightbox .close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #06923e;
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 8px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
  opacity: 0.7;
}

.nav-btn:hover {
  opacity: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.container {
  display: flex;
  justify-content: center; /* Centers horizontally */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .gallery-item {
    flex: 0 0 calc(33.333% - 12px);
  }
}

@media (max-width: 768px) {
    
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .nav {
    padding: 15px 20px;
  }

  .menu-button {
    padding: 14px 36px;

    font-size: 1.1rem;
  }

  .logo {
    display: block;

    margin-left: auto;

    margin-right: auto;

    width: 50%;
  }

  #navMenuButton {
    display: none;
  }
}

/* Cookie Consent Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: #fff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
  min-width: 300px;
}

.cookie-content a {
  color: #06923e;
  text-decoration: none;
  font-weight: 600;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-accept {
  background: #06923e;
  color: #fff;
}

.cookie-accept:hover {
  background: #057a35;
  transform: translateY(-1px);
}

.cookie-reject {
  background: #6c757d;
  color: #fff;
}

.cookie-reject:hover {
  background: #5a6268;
  transform: translateY(-1px);
}

.cookie-settings {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.cookie-settings:hover {
  background: #fff;
  color: #2c3e50;
}

/* Footer legal links */
.footer-legal {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal a {
  color: #ecf0f1;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal a {
    margin: 5px 0;
  }
}