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

:root {
  --primary-color: #9b8ba5;
  --primary-dark: #7d6a87;
  --primary-light: #c5b8cc;
  --accent-color: #a68fad;
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #8c8c8c;
  --bg-white: #ffffff;
  --bg-light: #f9f7f8;
  --bg-cream: #fdf9fa;
  --border-color: #e8e1e4;
  --shadow-sm: 0 2px 8px rgba(155, 139, 165, 0.08);
  --shadow-md: 0 4px 16px rgba(155, 139, 165, 0.12);
  --shadow-lg: 0 8px 24px rgba(155, 139, 165, 0.16);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  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;
  color: var(--text-medium);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

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

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

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  display: block;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  display: block;
  position: absolute;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

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

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--bg-white);
}

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

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

.hero-section {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

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

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

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

.rounded-lg {
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

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

.moment-item {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.moment-item:hover {
  box-shadow: var(--shadow-md);
}

.limitation-box {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.limitations-list {
  margin-top: 2rem;
}

.limitation-item {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-color);
}

.limitation-item h5 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-item {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
}

.faq-item h5 {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

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

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

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(155, 139, 165, 0.1);
  outline: none;
}

.contact-info {
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 12px;
}

.site-footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.site-footer h5 {
  color: var(--bg-white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.site-footer p {
  color: var(--bg-light);
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: var(--bg-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  z-index: 2000;
  border-top: 3px solid var(--primary-color);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

.btn-cookie {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-accept {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--bg-white);
}

.btn-reject {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.btn-settings {
  background-color: var(--text-medium);
  color: var(--bg-white);
}

.btn-cookie:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

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

.cookie-modal-content {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-lg);
}

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

.cookie-option {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: var(--bg-light);
  border-radius: 8px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

.cookie-option input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.policy-section {
  padding: 120px 0 80px;
}

.policy-section h1 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.policy-section h3 {
  color: var(--primary-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-section h4 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.policy-section li {
  margin-bottom: 0.5rem;
  color: var(--text-medium);
}

.thank-you-section {
  padding: 150px 0 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

html {
  scroll-behavior: smooth;
}

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

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

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

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

  .limitation-box {
    padding: 2rem;
  }
}
