:root {
  --primary: #5C2D1F;
  --fern: #3A5F3F;
  --brass: #B08D57;
  --parchment: #F5F0E1;
  --dark: #2a2a2a;
}

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

html, body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background-color: var(--parchment);
  line-height: 1.6;
}

body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

p {
  font-size: 1.125rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

a {
  color: var(--brass);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--parchment);
  border-bottom: 3px solid var(--brass);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

header.scrolled {
  background-color: rgba(245, 240, 225, 0.98);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}

footer {
  background-color: var(--primary);
  color: var(--parchment);
  padding: 4rem 2rem;
  margin-top: 6rem;
}

footer a {
  color: var(--brass);
}

footer a:hover {
  color: var(--parchment);
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--brass);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 240, 225, 0.9);
  margin-bottom: 0.5rem;
}

.footer-legal {
  border-top: 1px solid rgba(245, 240, 225, 0.3);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(245, 240, 225, 0.8);
}

.section {
  padding: 140px 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.section.hero {
  background: linear-gradient(135deg, rgba(92, 45, 31, 0.15) 0%, rgba(58, 95, 63, 0.1) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 100px 2rem;
}

.section.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-section.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-content h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

.section.alt {
  background-color: #fff;
}

.section.dark {
  background-color: var(--primary);
  color: var(--parchment);
}

.section.dark h2,
.section.dark h3 {
  color: var(--brass);
}

.section.dark p {
  color: rgba(245, 240, 225, 0.95);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.two-column img:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.button {
  display: inline-block;
  background-color: var(--brass);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button:hover {
  background: linear-gradient(135deg, var(--brass) 0%, #c19f6b 100%);
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(176, 141, 87, 0.3);
}

.button.secondary {
  background-color: var(--primary);
  color: var(--parchment);
}

.button.secondary:hover {
  background-color: var(--fern);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: translateX(-10px);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-list {
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.card-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brass);
  font-weight: bold;
}

.disclaimer {
  background-color: rgba(176, 141, 87, 0.1);
  border-left: 4px solid var(--brass);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.disclaimer strong {
  color: var(--primary);
}

form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

input,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.1);
}

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

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

thead {
  background-color: var(--primary);
  color: var(--parchment);
}

th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

tbody tr:hover {
  background-color: rgba(176, 141, 87, 0.05);
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1rem;
  }

  .navbar {
    padding: 1rem;
    flex-wrap: wrap;
  }

  .nav-links {
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
    flex-wrap: wrap;
  }

  .section {
    padding: 80px 1rem;
  }

  .section.hero {
    padding: 60px 1rem;
    min-height: auto;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

  form {
    width: 100%;
  }
}

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

  h2 {
    font-size: 1.3rem;
  }

  p {
    font-size: 0.95rem;
  }

  .section {
    padding: 60px 1rem;
  }

  .button {
    width: 100%;
    padding: 12px 24px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--parchment);
  padding: 1.5rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--brass);
  font-weight: 600;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: var(--brass);
  color: var(--primary);
}

.cookie-btn-accept:hover {
  background-color: #c19f6b;
  transform: scale(1.05);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--parchment);
  border: 2px solid var(--brass);
}

.cookie-btn-reject:hover {
  background-color: var(--brass);
  color: var(--primary);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

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