﻿:root {
  --color-bg: #F3F4F4;
  --color-primary: #853953;
  --color-secondary: #612D53;
  --color-text: #2C2C2C;
  --color-white: #ffffff;
  --color-muted: #6a6a6a;
  --font-base: "Inter", "Segoe UI", sans-serif;
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --shadow-sm: 0 6px 16px rgba(44, 44, 44, 0.12);
  --shadow-md: 0 14px 28px rgba(44, 44, 44, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: linear-gradient(180deg, #f7f8f8 0%, #f3f4f4 100%);
  line-height: 1.6;
}

a {
  color: var(--color-secondary);
  transition: color 0.25s ease;
}

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

img,
iframe {
  max-width: 100%;
  border: 0;
  border-radius: var(--radius-md);
}

.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e4dbe0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(6px);
}

.topbar {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-xs) 0;
}

.topbar a,
.topbar span {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.95rem;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.nav-wrap {
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.brand img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.brand:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

nav a {
  text-decoration: none;
  font-weight: 600;
}

nav a {
  padding: 6px 10px;
  border-radius: 999px;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(133, 57, 83, 0.1);
}

.hero {
  padding: var(--space-xl) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: center;
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: floatUp 1.2s ease both;
}

.hero-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 30px rgba(44, 44, 44, 0.22);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-heading);
}

h1 {
  line-height: 1.2;
}

.section {
  padding: var(--space-xl) 0;
}

.alt {
  background: rgba(133, 57, 83, 0.07);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.cards article,
.planner-panel,
.faq-item,
.contact-form,
.policy,
.centered,
.banner-block,
.season-item {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.policy {
  max-width: 900px;
}

.policy h2 {
  margin-top: 26px;
}

.policy p {
  color: #333;
}

.lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: start;
}

.button,
button {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  border: 0;
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.button:hover,
button:hover {
  background: var(--color-secondary);
  transform: translateY(-1px);
  filter: saturate(1.12);
}

.planner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.planner-btn {
  background: var(--color-white);
  color: var(--color-secondary);
  border: 1px solid rgba(97, 45, 83, 0.25);
}

.planner-btn.active {
  background: var(--color-secondary);
  color: var(--color-white);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
}

.review-card {
  position: relative;
  overflow: hidden;
}

.review-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.contact-form {
  display: grid;
  gap: var(--space-xs);
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #c7c7c7;
  border-radius: var(--radius-sm);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(133, 57, 83, 0.3);
  border-color: var(--color-primary);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.checkbox-row input {
  width: auto;
}

.error {
  color: #a10000;
  min-height: 1.1em;
  font-size: 0.92rem;
}

.faq-item {
  margin-bottom: var(--space-sm);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.banner-block {
  text-align: center;
}

.footer-grid {
  padding: var(--space-xl) 0 var(--space-lg);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

footer {
  background: #efe9ec;
}

.footer-bottom {
  border-top: 1px solid #d7d7d7;
  padding: var(--space-md) 0;
}

.cookie-banner {
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  width: min(420px, 92%);
  z-index: 1000;
  animation: slideIn 0.5s ease both;
}

.cookie-content {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
}

.cookie-toggles {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.cookie-toggles label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.centered {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].shown {
  opacity: 1;
  transform: translateY(0);
}

.interactive-card {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.interactive-card p {
  margin-top: 0;
}

.decision-hidden {
  display: none;
  margin-bottom: 0;
  color: var(--color-secondary);
  font-weight: 600;
}

.decision-card.open .decision-hidden {
  display: block;
}

.vote-btn {
  background: var(--color-white);
  color: var(--color-secondary);
  border: 1px solid rgba(97, 45, 83, 0.25);
}

.vote-btn:hover {
  color: var(--color-white);
}

.archive-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.archive-list li {
  background: #fbfbfb;
  padding: 8px 10px;
  border-radius: 8px;
}

.muted-note {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-top: 14px;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {

  .hero-grid,
  .cards,
  .two-col,
  .footer-grid,
  .season-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}