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

:root {
  --color-primary: #5b6fb8;
  --color-primary-dark: #4a5a98;
  --color-secondary: #8b95c9;
  --color-accent: #d4a574;
  --color-neutral-50: #fafafa;
  --color-neutral-100: #f5f5f5;
  --color-neutral-200: #e8e8e8;
  --color-neutral-300: #d1d1d1;
  --color-neutral-700: #404040;
  --color-neutral-800: #262626;
  --color-neutral-900: #171717;
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: "Crimson Pro", Georgia, serif;
  --header-height: 70px;
  --border-radius: 8px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-neutral-800);
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-neutral-900);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  height: var(--header-height);
}

.site-header .navbar {
  padding: 0.75rem 0;
}

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

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

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

.btn-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 111, 184, 0.3);
}

.hero-section {
  padding: calc(var(--header-height) + 60px) 0 80px 0;
  background: linear-gradient(135deg, var(--color-neutral-50) 0%, #ffffff 100%);
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-neutral-900);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-neutral-700);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-image {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.content-section {
  padding: 80px 0;
}

.content-section.bg-light {
  background-color: var(--color-neutral-50);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-neutral-900);
}

.section-intro {
  font-size: 1.15rem;
  color: var(--color-neutral-700);
  max-width: 800px;
  margin: 0 auto;
}

.subsection-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.section-image {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.moment-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.limits-list .limit-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-primary);
  margin-bottom: 1.5rem;
}

.limit-item h4 {
  color: var(--color-primary-dark);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.faq-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  color: var(--color-primary-dark);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--color-neutral-700);
  margin-bottom: 0;
}

.contact-form {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

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

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(91, 111, 184, 0.1);
}

.contact-info {
  padding: 2rem;
  background: var(--color-neutral-50);
  border-radius: var(--border-radius);
}

.closing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
}

.closing-section h2 {
  color: #ffffff;
}

.closing-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
}

.site-footer {
  background-color: var(--color-neutral-900);
  color: var(--color-neutral-200);
  padding: 50px 0 20px 0;
}

.site-footer h5 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.site-footer p {
  color: var(--color-neutral-300);
  font-size: 0.9rem;
}

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

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

.footer-links a {
  color: var(--color-neutral-300);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-neutral-700);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-neutral-900);
  color: #ffffff;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  color: var(--color-neutral-200);
}

.cookie-content a {
  color: var(--color-accent);
}

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

.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cookie-settings.active {
  display: flex;
}

.cookie-settings-content {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-settings-content h3 {
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1.5rem;
}

.cookie-option label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cookie-option input[type="checkbox"] {
  margin-right: 0.5rem;
}

.cookie-option p {
  color: var(--color-neutral-700);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-buttons-settings {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.policy-page {
  padding: calc(var(--header-height) + 40px) 0 60px 0;
  min-height: calc(100vh - 200px);
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.policy-content {
  margin-top: 2rem;
}

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

.policy-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-neutral-200);
}

.policy-section h3 {
  font-size: 1.35rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-neutral-800);
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

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

.disclaimer-box {
  background: var(--color-neutral-50);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-accent);
  margin-bottom: 1.5rem;
}

.disclaimer-box h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary-dark);
}

.disclaimer-box p {
  margin-bottom: 0;
}

.policy-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-neutral-200);
  text-align: center;
}

.thankyou-page {
  padding: calc(var(--header-height) + 60px) 0 80px 0;
  min-height: calc(100vh - 200px);
}

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

.thankyou-details {
  background: var(--color-neutral-50);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.thankyou-reminder {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 2px solid var(--color-neutral-200);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-buttons {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-section {
    padding: calc(var(--header-height) + 40px) 0 60px 0;
  }
  .content-section {
    padding: 60px 0;
  }
  .contact-form {
    padding: 1.5rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.65rem;
  }
}
