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

:root {
  --primary-color: #c8816f;
  --primary-dark: #b36f5e;
  --text-dark: #2c2c2c;
  --text-light: #6b6b6b;
  --bg-light: #f8f5f2;
  --bg-white: #ffffff;
  --border-color: #e5e5e5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --border-radius: 8px;
}

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

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

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.btn-accent {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
  text-decoration: none;
}

main {
  margin-top: 80px;
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f5f2 0%, #ffffff 100%);
}

.hero-section h1 {
  font-weight: 700;
  color: var(--text-dark);
}

.hero-section .lead {
  font-size: 1.25rem;
  color: var(--text-light);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.content-section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.card {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
}

.card-title {
  font-weight: 600;
  color: var(--primary-color);
}

.rounded {
  border-radius: var(--border-radius) !important;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.accordion .card-header {
  background-color: var(--bg-light);
  border: none;
  padding: 0;
}

.accordion .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 1rem;
  display: block;
}

.accordion .btn-link:hover {
  color: var(--primary-color);
}

.accordion .card-body {
  padding: 1.5rem;
  color: var(--text-light);
}

.contact-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(200, 129, 111, 0.25);
}

.contact-form label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner .btn-sm {
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 500;
}

.cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  z-index: 10000;
  max-width: 500px;
  width: 90%;
  display: none;
}

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

.cookie-settings h5 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.policy-page {
  padding: 5rem 0;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.policy-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  color: var(--text-dark);
}

.policy-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.policy-section ul {
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.policy-section ul li {
  margin-bottom: 0.5rem;
}

.thank-you-page {
  padding: 5rem 0;
  min-height: calc(100vh - 200px);
}

.thank-you-content {
  padding: 3rem 2rem;
}

.checkmark-circle {
  margin: 0 auto 2rem;
  width: 80px;
  height: 80px;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 3rem 0;
  }

  .content-section {
    padding: 3rem 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

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

@media (max-width: 767px) {
  .cookie-banner .col-lg-8,
  .cookie-banner .col-lg-4 {
    text-align: center;
  }

  .cookie-banner .btn-sm {
    margin-bottom: 0.5rem;
  }
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}
