:root {
  --color-primary: #D4A574;
  --color-accent-cyan: #4ECDC4;
  --color-accent-brown: #8B6F47;
  --color-accent-rose: #F4A6C1;
  --color-bg: #FDFBF7;
  --color-text: #2C2C2C;
  --color-light-gray: #E8E4DC;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Header & Navigation */
.navbar {
  background-color: var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: white;
}

.navbar .nav-link {
  color: white;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: opacity 0.3s ease;
}

.navbar .nav-link:hover {
  opacity: 0.8;
  color: white;
}

.navbar .nav-link.active {
  border-bottom: 2px solid white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-brown) 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  margin-top: 2rem;
}

/* Disclaimer Banner */
.disclaimer-banner {
  background-color: var(--color-accent-cyan);
  color: white;
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-accent-brown);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent-text {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  max-width: 800px;
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background-color: #C49563;
  color: white;
}

.cookie-btn-reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.cookie-btn-policy {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn-policy:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Sections */
.content-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-accent-brown);
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-accent-brown);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Cards & Modules */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background-color: white;
  border: 1px solid var(--color-light-gray);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent-brown);
  margin-bottom: 1rem;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.card-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.card-features li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--color-text);
}

.card-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent-cyan);
  font-weight: bold;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #C49563;
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-accent-brown);
  border: 2px solid var(--color-accent-brown);
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--color-accent-brown);
  color: white;
  text-decoration: none;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: white;
}

table th {
  background-color: var(--color-primary);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--color-light-gray);
}

table tr:hover {
  background-color: #F9F7F3;
}

/* Contact Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-accent-brown);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-light-gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

/* Footer */
footer {
  background-color: var(--color-accent-brown);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 60px;
  font-size: 0.9rem;
  line-height: 1.8;
}

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

.footer-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-section p {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #E8D7C3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
  text-decoration: underline;
}

.footer-hours h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: #E8D7C3;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #E8D7C3;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .section-title {
    font-size: 1.5rem;
  }

  .navbar .nav-link {
    margin-left: 1rem;
    font-size: 0.9rem;
  }

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

  .footer-links {
    gap: 1rem;
  }

  .cookie-consent-buttons {
    flex-direction: column;
  }

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-muted {
  color: #666;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.py-5 {
  padding: 3rem 0;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
