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

:root {
  --primary-blue: #2c3e50;
  --accent-gold: #c39953;
  --accent-jade: #00a896;
  --accent-rust: #a0522d;
  --light-bg: #f8f7f5;
  --white: #ffffff;
  --text-dark: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 1.78;
  color: var(--text-dark);
  background-color: var(--white);
}

h1 {
  font-family: 'Cinzel', serif;
  font-size: 4.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-blue);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin: 40px 0 30px 0;
  letter-spacing: 0.8px;
}

h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin: 25px 0 15px 0;
}

p {
  margin: 15px 0;
  color: var(--text-dark);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--accent-gold);
  padding: 20px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: var(--primary-blue);
  color: var(--white);
}

header.scrolled a {
  color: var(--white);
}

header.scrolled .navbar-brand {
  color: var(--accent-gold);
}

.navbar {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 140px;
}

.navbar-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: var(--accent-gold);
}

.nav-link {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: var(--primary-blue);
  text-decoration: none;
  margin-left: 40px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-gold);
}

.container-wide {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 140px;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.4) 0%, rgba(0, 168, 150, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  color: var(--white);
  z-index: 10;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  color: var(--white);
  font-size: 5.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--accent-gold);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
}

section {
  padding: 180px 140px;
  max-width: 1620px;
  margin: 0 auto;
}

section:nth-child(even) {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.03) 0%, rgba(0, 168, 150, 0.02) 100%);
}

.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  margin: 30px 0 40px 0;
}

.flex-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 60px 0;
}

.flex-row.reverse {
  flex-direction: row-reverse;
}

.flex-row-col {
  flex: 1;
}

.flex-row img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.flex-row img:hover {
  transform: translateY(-10px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 60px 0;
}

.card {
  background: var(--white);
  border: 1px solid rgba(195, 153, 83, 0.2);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 0 30px rgba(195, 153, 83, 0.3);
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent-jade), rgba(0, 168, 150, 0.1));
}

.card h3 {
  margin-top: 0;
  color: var(--primary-blue);
}

.card p {
  flex-grow: 1;
  color: #666;
  margin: 15px 0;
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  border-radius: 2px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.btn:hover {
  background-color: var(--accent-gold);
  color: var(--white);
  box-shadow: 0 0 20px rgba(195, 153, 83, 0.4);
}

.btn.primary {
  background-color: var(--accent-gold);
  color: var(--white);
}

.btn.primary:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.list-styled {
  list-style: none;
  padding: 0;
}

.list-styled li {
  padding: 12px 0 12px 30px;
  position: relative;
  margin: 10px 0;
}

.list-styled li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

.gallery-horizontal {
  display: flex;
  gap: 30px;
  margin: 60px 0;
  overflow-x: auto;
}

.gallery-item {
  flex: 0 0 calc(33.333% - 20px);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 60px 140px;
  margin-top: 100px;
  border-top: 2px solid var(--accent-gold);
}

.footer-content {
  max-width: 1620px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p, .footer-section a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.footer-disclaimer {
  background-color: rgba(195, 153, 83, 0.1);
  border-left: 4px solid var(--accent-gold);
  padding: 25px;
  margin: 30px 0;
  border-radius: 2px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(195, 153, 83, 0.3);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 25px 140px;
  z-index: 999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-buttons button {
  padding: 10px 25px;
  border: none;
  border-radius: 2px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.cookie-accept {
  background-color: var(--accent-gold);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: var(--accent-rust);
}

.cookie-reject {
  background-color: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
}

.cookie-reject:hover {
  background-color: var(--accent-gold);
  color: var(--white);
}

.cookie-learn {
  background-color: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  text-decoration: none;
  padding: 10px 25px;
  display: inline-block;
}

.cookie-learn:hover {
  background-color: var(--accent-gold);
  color: var(--white);
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in:nth-child(1) { animation-delay: 0s; }
.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }
.fade-in:nth-child(4) { animation-delay: 0.3s; }
.fade-in:nth-child(5) { animation-delay: 0.4s; }
.fade-in:nth-child(6) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--primary-blue);
  font-family: 'Cinzel', serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(44, 62, 80, 0.2);
  border-radius: 2px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(195, 153, 83, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-disclaimer {
  background-color: rgba(195, 153, 83, 0.08);
  border-left: 4px solid var(--accent-gold);
  padding: 20px;
  margin: 30px 0;
  border-radius: 2px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.contact-content {
  max-width: 800px;
}

.thank-you-container {
  text-align: center;
  padding: 100px 140px;
  max-width: 1620px;
  margin: 0 auto;
}

.thank-you-container h1 {
  color: var(--primary-blue);
  margin-bottom: 40px;
}

.thank-you-message {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 50px;
  line-height: 1.8;
}

@media (max-width: 1200px) {
  .container-wide, section {
    padding-left: 60px;
    padding-right: 60px;
  }

  header .navbar {
    padding: 0 60px;
  }

  footer {
    padding: 60px;
  }

  .cookie-banner {
    padding: 20px 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  section {
    padding: 80px 30px;
  }

  header .navbar {
    padding: 0 30px;
  }

  footer {
    padding: 40px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .flex-row {
    flex-direction: column;
    gap: 30px;
  }

  .flex-row.reverse {
    flex-direction: column;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nav-link {
    margin-left: 20px;
    font-size: 0.9rem;
  }

  .cookie-banner {
    padding: 15px;
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .gallery-horizontal {
    flex-direction: column;
  }

  .gallery-item {
    flex: 1 1 auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
    letter-spacing: 0.5px;
  }

  h2 {
    font-size: 1.4rem;
  }

  section {
    padding: 50px 20px;
  }

  .hero {
    height: auto;
    min-height: 60vh;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  body {
    font-size: 15px;
  }

  footer {
    padding: 30px 20px;
  }

  .navbar-brand {
    font-size: 1.4rem;
  }
}
