/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #1a3a2a;
  --green-mid:   #2d5a3d;
  --green-light: #3d7a50;
  --gold:        #c9a227;
  --gold-light:  #e8c050;
  --cream:       #f5f0e8;
  --cream-dark:  #e8e0d0;
  --text-dark:   #1c1c1c;
  --text-mid:    #3a3a3a;
  --text-muted:  #6a6a6a;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.10);
  --shadow-md:   0 6px 24px rgba(0,0,0,.14);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.18);
  --radius:      10px;
  --radius-lg:   18px;
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--cream);
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--green-dark);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 70px;
  background: rgba(26, 58, 42, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  transition: var(--transition);
}

.nav--scrolled {
  height: 60px;
  background: rgba(26, 58, 42, .99);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
}

.nav__logo {
  height: 42px;
  width: auto;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .02em;
}

.nav__brand-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../Fotos/angler_im_fluss.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,58,42,.75) 0%,
    rgba(26,58,42,.45) 50%,
    rgba(0,0,0,.35) 100%
  );
}

.hero:hover .hero__bg {
  transform: scale(1.0);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 2.5rem;
  margin-left: max(2.5rem, calc(50vw - 640px));
  animation: fadeUp .9s ease both;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,162,39,.2);
  border: 1px solid rgba(201,162,39,.5);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 500px;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}

.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--green {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn--green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,42,.4);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,.6);
}

/* ===== SECTION BASE ===== */
.section {
  padding: 6rem 2.5rem;
}

.section--dark {
  background: var(--green-dark);
  color: var(--white);
}

.section--dark h2, .section--dark h3 { color: var(--white); }

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section__tag {
  display: inline-block;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.section--dark .section__tag { color: var(--gold-light); }

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section--dark .section__desc { color: rgba(255,255,255,.65); }

/* ===== STATS BAND ===== */
.stats {
  background: var(--green-mid);
  padding: 3rem 2.5rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stats__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stats__label {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .4rem;
}

/* ===== FEATURE CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body {
  padding: 1.5rem;
}

.card__icon {
  width: 48px; height: 48px;
  background: rgba(26,58,42,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card__title {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.card__text {
  color: var(--text-muted);
  font-size: .95rem;
}

/* ===== ABOUT SPLIT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.about__badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  display: block;
  line-height: 1;
}

.about__badge-text {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.about__content { padding: 1rem 0; }

.about__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.about__text {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.about__list {
  list-style: none;
  margin-bottom: 2rem;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .97rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream-dark);
}

.about__list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== TERMINE PAGE ===== */
.page-hero {
  padding: 8rem 2.5rem 4rem;
  text-align: center;
  background: var(--green-dark);
  color: var(--white);
}

.page-hero__tag {
  display: inline-block;
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero__desc {
  color: rgba(255,255,255,.65);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Calendar */
.calendar {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2.5rem 6rem;
}

.calendar__month {
  margin-bottom: 3.5rem;
}

.calendar__month-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--green-dark);
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.calendar__month-title span {
  font-size: .85rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-weight: 400;
}

.event {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem 1.5rem;
  align-items: start;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: .75rem;
  border-left: 4px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.event--fishing { border-left-color: var(--green-light); }
.event--social  { border-left-color: var(--gold); }
.event--work    { border-left-color: #8a9a7a; }
.event--exam    { border-left-color: #5a8abf; }
.event--boat    { border-left-color: #bf7a5a; }
.event--kav     { border-left-color: #a05abf; }

.event__date {
  text-align: center;
  background: var(--cream);
  border-radius: 8px;
  padding: .5rem .25rem;
}

.event__day {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--green-dark);
  font-weight: 700;
}

.event__weekday {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}

.event__info {}

.event__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: .2rem;
}

.event__meta {
  font-size: .83rem;
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.event__meta span {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.event__badge {
  align-self: center;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .7rem;
  border-radius: 50px;
  white-space: nowrap;
}

.badge--fishing { background: rgba(61,122,80,.12); color: var(--green-mid); }
.badge--social  { background: rgba(201,162,39,.15); color: #8a6f0a; }
.badge--work    { background: rgba(138,154,122,.15); color: #5a6a4a; }
.badge--exam    { background: rgba(90,138,191,.15); color: #2a5a8f; }
.badge--boat    { background: rgba(191,122,90,.15); color: #8f4a2a; }
.badge--kav     { background: rgba(160,90,191,.15); color: #6a2a8f; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2.5rem 6rem;
}

.contact-info__title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info__desc {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: .97rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item__icon {
  width: 44px; height: 44px;
  background: var(--green-dark);
  color: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item__label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .2rem;
}

.contact-item__value {
  font-size: .97rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-item__value a {
  color: var(--green-mid);
  transition: var(--transition);
}

.contact-item__value a:hover { color: var(--green-dark); }

/* Form */
.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form__title {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.form__sub {
  color: var(--text-muted);
  font-size: .92rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,90,61,.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form__submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: var(--radius);
  margin-top: .5rem;
}

.form__note {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Success Message */
.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form__success svg {
  width: 56px; height: 56px;
  color: var(--green-mid);
  margin: 0 auto 1rem;
}

/* ===== MAP ===== */
.map-section {
  height: 360px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(.85);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.65);
  padding: 4rem 2.5rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer__logo {
  height: 38px;
}

.footer__brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
}

.footer__desc {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer__col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer__links a:hover { color: var(--gold-light); }

.footer__contact-item {
  font-size: .88rem;
  margin-bottom: .6rem;
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}

.footer__contact-item strong {
  color: rgba(255,255,255,.8);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom a { color: var(--gold-light); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===== GALLERY HOVER ===== */
.gallery-img {
  transition: transform .5s ease;
}
.gallery-img:hover {
  transform: scale(1.04);
}
.gallery-img--strip:hover {
  transform: scale(1.06);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__img { height: 320px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 1.5rem 5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  /* Gallery responsive */
  .gallery-main {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
  }
  .gallery-main > div:first-child {
    grid-row: auto !important;
  }
  .gallery-strip { display: none !important; }
}

@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--green-dark);
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav__hamburger { display: flex; }

  .event {
    grid-template-columns: 64px 1fr;
  }

  .event__badge { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero__content {
    padding: 0 1.5rem;
    margin-left: 0;
  }

  .section { padding: 4rem 1.5rem; }

  .calendar { padding: 0 1.5rem 4rem; }
}
