/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: #f6f3ee;
  color: #2f3b33;
}

/* COLORS */
:root {
  --green: #7c9a8e;
  --beige: #f6f3ee;
  --brown: #a08c7c;
  --dark: #2f3b33;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(246,243,238,0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  letter-spacing: 1px;
}

.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--dark);
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  height: 2px;
  width: 25px;
  background: var(--dark);
  margin: 4px;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: var(--green);
  color: white;
  text-decoration: none;
  border-radius: 20px;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  margin-bottom: 30px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.img-box {
  height: 300px;
  background: #ddd;
  border-radius: 10px;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery .img {
  height: 200px;
  background: #ccc;
}

/* CARDS */
.cards {
  display: flex;
  gap: 20px;
}

.card {
  flex: 1;
  padding: 20px;
  background: white;
  border-radius: 10px;
}

/* TESTIMONIAL */
.testimonial {
  background: white;
  padding: 30px;
  border-radius: 10px;
}

/* CONTACT */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
}

/* FOOTER */
.footer {
  padding: 30px;
  text-align: center;
  background: #e9e4dd;
}

.footer a {
  margin: 0 10px;
  color: var(--dark);
}

/* =========================
   PRICE LIST
========================= */
#preise{
    padding:100px 8% 40px;
   
}

.price-container{
    max-width:1300px;
    margin:auto;
}



.price-subtitle{
   
    color:#666;
    margin-bottom:60px;
}

.price-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.price-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    transition:.3s;
}

.price-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.price-card h3{
    margin-bottom:15px;
    font-size:1.7rem;
}

.price{
    font-size:2.5rem;
    font-weight:700;
    color:#7b5b32;
    margin-bottom:25px;
}

.price-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.price-card li{
    padding:10px 0;
    border-bottom:1px solid #eee;
    color:#555;
}

.price-card li:last-child{
    border:none;
}

.featured{
    border:3px solid #7b5b32;
    transform:scale(1.03);
}

.badge{
    position:absolute;
    top:-14px;
    right:25px;
    background:#7b5b32;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:.85rem;
    font-weight:600;
}

.extras{
    margin-top:70px;
    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.extras h3{
    margin-bottom:25px;
}

.extra-row{
    display:flex;
    justify-content:space-between;
    padding:18px 0;
    border-bottom:1px solid #eee;
}

.extra-row:last-child{
    border:none;
}

.price-info{
    margin-top:40px;
    padding:30px;
    border-left:5px solid #7b5b32;
    background:#fff;
    border-radius:10px;
    line-height:1.8;
    color:#555;
}

@media(max-width:700px){

    .price-container h2{
        font-size:2.3rem;
    }

    .featured{
        transform:none;
    }

    .extra-row{
        flex-direction:column;
        gap:5px;
    }
}

/* COOKIE */
.cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    flex-direction: column;
    background: white;
    padding: 20px;
  }

  .nav.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .grid,
  .price-table,
  .price-item,
  .cards,
  .gallery {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

/* =========================
   HOVER EFFECTS
========================= */

.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  background: #6f8f83;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.nav a {
  position: relative;
  transition: all 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: var(--green);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.card {
  transition: all 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.gallery .img {
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
}

.gallery .img:hover {
  transform: scale(1.03);
  filter: grayscale(0%);
}

/* soften inputs */
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(124,154,142,0.2);
}

/* =========================
   SCROLL ANIMATION BASE
========================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   HEADER (größer & moderner)
========================= */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 40px;
  background: rgba(246, 243, 238, 0.65);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.logo {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
}

/* =========================
   HERO (FULLSCREEN + FOTO)
========================= */

.hero {
  height: 100vh;
  width: 100%;
  background: url("bilder/hund9.jpg") center/cover no-repeat;

   display: flex;
  align-items: flex-end;
  justify-content: flex-start;

  position: relative;

  padding: 0 8vw 8vh 8vw;
}

/* dunkle + warme Overlay-Schicht */
.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(47, 59, 51, 0.35),
    rgba(246, 243, 238, 0.2)
  );
}

/* Content wirkt jetzt „floating cinematic“ */
.hero-content {
  position: relative;
  text-align: left;
  color: #fff;

  max-width: 700px;
  padding: 20px;

  animation: fadeUp 1.2s ease;
}

.hero h1 {
  font-size: 40px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* Button bleibt edel */
.btn {
  margin-top: 25px;
  padding: 14px 28px;
  border-radius: 30px;

  background: rgba(124, 154, 142, 0.9);
  color: white;

  display: inline-block;
  text-decoration: none;

  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);
  background: #6f8f83;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .header {
    padding: 15px 20px;
  }
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

html {
    scroll-behavior: smooth;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}


.cards{
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 515px));
    justify-content: center;
    gap: 30px;
}

@media (max-width: 768px){
    .cards{
        grid-template-columns: 1fr;
    }
}

.card{
    position:relative;
    height:400px;
    border-radius:18px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:flex-end;
    transition:.35s ease;
}

.card:hover{
    transform:translateY(-6px);
}

/* dunkles Overlay */
.card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.2)
    );
}

.overlay{
    position:relative;
    z-index:2;
    padding:25px;
    color:#fff;
}

.overlay h3{
    margin:0 0 8px;
    font-size:1.6rem;
}

.overlay p{
    margin:0;
    color:#ddd;
    line-height:1.5;
}

.hund{
    background-image:url("bilder/hund.jpg");
}

.pferd{
    background-image:url("bilder/pferd.jpg");
}

.people{
    background-image:url("bilder/people.jpg");
}

.oldtimer{
    background-image:url("bilder/auto.jpg");
}


.card {
    height: 340px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s;
    transform-style: preserve-3d;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    overflow: hidden;
    backface-visibility: hidden;
}


/* Vorderseite */
.card-front {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}


/* dunkler Verlauf fürs Bild */
.card-front::before {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.7),
        rgba(0,0,0,.15)
    );
}


.overlay {
    position:relative;
    z-index:2;
    padding:25px;
    color:white;
}


/* Rückseite */
.card-back {
    background:#404040;
    color:white;
    transform:rotateY(180deg);
    padding:35px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-align:center;
}


.card-back h3 {
    margin-bottom:15px;
}


.card-back p {
    line-height:1.6;
    color:#ddd;
}