:root {
  color-scheme: dark;
  color: #efe8df;
  background: #1a1511;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --bg-dark: #1a1511;
  --bg-panel: #26211c;
  --bg-surface: #2c2620;
  --bg-surface-soft: #332c26;
  --border-muted: rgba(255, 237, 221, 0.12);
  --text-primary: #efe8df;
  --text-muted: #c9b8a6;
  --text-strong: #fff8ed;
  --accent-cream: #ffffff;          
  --accent-cream-dark: #f6f6f3;
  --accent-soft: #efefea;
  --radius-soft: 12px;
  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.24);
  --cta-color: #faf3e6;
  --cta-border: #dac7ad;
  --button-border: rgba(255, 237, 221, 0.25);
  --button-text: #2a1f18;

  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(248, 243, 239, 0.04), transparent 32%), var(--bg-dark);
  color: var(--text-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bricolage Grotesque', Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  color: #fffaf5;
}
h2{
  color:#e5a264;
}

body,
p,
li,
label,
button,
input,
textarea {
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.section,
.map-section,
.info-section,
.compare-section,
.behavior-section,
.protect-section {
  opacity: 0;
  transform: translateY(100px);
  animation: fadeUp 0.8s ease forwards;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

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

.site-header {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}



.header-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block; /* REMOVE grid behavior */
}

.header-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}

.hero-content h1 {
  max-width: 880px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  margin: 0 0 0.8rem;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}

button,
.cta-button,
.btn,
.btn-primary,
.btn-secondary,
.btn-moss,
.btn-sky,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 100px;
  border: 1px solid var(--button-border);
  background: transparent;
  color: var(--button-text);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

button:hover,
.cta-button:hover,
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-moss:hover,
.btn-sky:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(137, 52, 0, 0.03);
}

button:active,
.cta-button:active,
.btn:active,
.btn-primary:active,
.btn-secondary:active,
.btn-moss:active,
.btn-sky:active,
.btn-ghost:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--cta-color);
  color: var(--button-text);
  border-color: var(--cta-border);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.cta-button {
  background: rgba(255, 238, 228, 0.303);
  color: var(--accent-cream);
  border-color: var(--accent-cream);
  box-shadow: none;
}

.cta-button:hover {
  background: rgba(244, 234, 208, 0.14);
}

.btn-secondary,
.btn-ghost,
.btn-moss,
.btn-sky {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--button-border);
}

.btn-ghost {
  border-color: rgba(43, 38, 35, 0.85);
}

.btn-secondary:hover,
.btn-ghost:hover,
.btn-moss:hover,
.btn-sky:hover {
  background: rgba(43, 38, 35, 0.06);
}

.section {
  padding: 3rem 1.5rem;
  width: min(1200px, 100%);
  max-width: 1200px;
  margin: 0 auto;
}

.map-section {
  padding-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.section-intro {
  max-width: 720px;
  width: 100%;
  margin: 0 0 1.5rem;
}

.map {
  width: 100%;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 237, 221, 0.08);
}

.marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c96e4b;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.panel {
  background: var(--bg-panel);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 237, 221, 0.08);
}

.panel h3 {
  margin-top: 0;
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 237, 221, 0.12);
  font: inherit;
  background: #2b241f;
  color: var(--text-primary);
}

input[type="file"] {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

button,
.btn {
  cursor: pointer;
  border: none;
  border-radius: var(--radius-soft);
  padding: 0.95rem 1.2rem;

  font: inherit;
  font-weight: 600;

  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  transition: all 0.2s ease;
  user-select: none;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

button:focus-visible {
  outline: 3px solid rgba(201, 110, 75, 0.4);
  outline-offset: 3px;
}

button#use-location {
  background: var(--accent-cream);
  color: var(--button-text);
  border: 1px solid var(--button-border);
}

.panel button[type="submit"] {
  background: transparent;
  color: var(--accent-cream);
  border: 1px solid var(--accent-cream);
}

.panel button[type="submit"]:hover {
  background: rgba(244, 234, 208, 0.14);
}

.status-success {
  color: #1b5e20;
}

.status-error {
  color: #b00020;
}

.info-section {
  border-radius: 28px;
  margin: 1.5rem auto;
  border: 1px solid rgba(45, 37, 33, 0.16);
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.compare-section {
  background: var(--accent-cream);
  color: #2d241f;
  border-radius: 28px;
  margin: 1.5rem auto;
  border: 1px solid rgba(255, 237, 221, 0.08);
}

.compare-section h3 {
  text-align: center;
}

.compare-section article {
  color: #2d241f;
  border-radius: 28px;
  border: 1px solid rgba(255, 237, 221, 0.08);
}


.behavior-section {
  color: var(--acccent-cream);
  border-radius: 28px;
  margin: 1.5rem auto;
  border: 1px solid rgba(45, 37, 33, 0.16);
  display: grid;
  gap: 1.5rem;
  align-items: center;
}



.behavior-section .section-intro,
.behavior-section .feature-cards article {
  color: var(--text-primary);
}

.behavior-section .feature-cards article {
  background:var(--accent-cream-dark); 
  color: #2d241f;;
}

.feature-cards .feature-image {
  display: grid;
}
.protect-section {
  background: var(--bg-surface);
  border-radius: 28px;
  margin: 1.5rem auto;
  border: 1px solid rgba(255, 237, 221, 0.08);
}


.feature-cards article:hover{
  transition: transform 0.25s ease, filter 0.25s ease;
  transform-origin: center;
}

.feature-cards article:hover {
  transform:  translateY(-8px) rotate(+0deg);
  filter: drop-shadow(10px 14px 14px rgba(0, 0, 0, 0.35));
}

.text-block,
.info-image {
  padding: 0;
}



.info-image {
  width: 100%;
  max-width: 560px;

  border-radius: 18px;
  border: 1px solid rgba(45, 37, 33, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  display: block;
  margin: 0 auto;
}



.compare-grid,
.feature-cards,
.protect-list {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-cards article,
.protect-list article {
  background: var(--bg-surface-soft);
  border-radius: 18px;
  padding: 1.5rem;
}

.compare-grid article {
  display: block;
  gap: 1rem;
  align-items: start;
  text-align: center;
}

.bird-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.bird-icon img {
  width: 24rem;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  display: block;
  margin: 0 auto;

}

.bird-icon img {
  transition: transform 0.25s ease, filter 0.25s ease;
  transform-origin: center;
}

.bird-icon img:hover {
  transform: scale(1.01) translateY(-5px) rotate(+0.5deg);
;
}

.savior-section {
    color: var(--text-primary);
    border-radius: 28px;
    margin: 1.5rem auto;
    border: 1px solid rgba(45, 37, 33, 0.16);
    display: grid;
    gap: 0.5rem;
    align-items: center;
    padding: 3rem;
}

.savior-section .feature-cards article {
    background: var(--accent-cream);
    color: #2d241f;
}

.carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel img {
  flex: 0 0 100%;
  width: 100%;
  border-radius: 12px;
  scroll-snap-align: center;
}


.carousel-dots {

  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;

}

.dot {

  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.834);

}

.dot.active {

  background: #cd9a6a; /* Accent */
  transform: scale(1.2);

}



@media (max-width: 600px) {
  .compare-grid {
    gap: 0.75rem;
    padding: 1rem;
  }

  .compare-grid article {
    gap: 0.5rem;
  }

  .bird-icon img {
    width: 20.5rem;
  }
}

.compare-grid h3,
.feature-cards h3,
.protect-list h3 {
  margin-top: 0;
}

.compare-grid h3 {
  margin-bottom: 0;
}

.compare-grid article h3 + ul,
.compare-grid article ul {
  margin-top: 0;
  padding-top: 0;
}

.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--text-muted);
}


@media (min-width: 900px) {
  .map-section {
    padding-top: 4rem;
  }

  .map {
    margin-bottom: 4.5rem;
  }

  .panel {
    margin-top: 0;
  }

  .info-section {
    grid-template-columns: 1fr 1fr;
  }
}
