/* ===== mitgereist – Martina Muth – Reiseberichte =====
   Standalone Nachbau der Wix-Website */

:root{
  --gold:#d4a23a;
  --gold-light:#eaba4f;
  --header-bg:#1d2a26;
  --header-bg2:#16201d;
  --text:#222;
  --muted:#666;
  --page-bg:#e9e8e4;
  --accent:#ea492e;
  --maxw:1000px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:Arial, "Helvetica Neue", Helvetica, sans-serif;
  color:var(--text);
  background-color:var(--page-bg);
  background-image:
    linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,.5)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/></svg>");
  line-height:1.5;
}
img{max-width:100%;display:block;}
a{color:var(--accent);text-decoration:none;}
a:hover{text-decoration:underline;}

/* fonts */
.font-title{font-family:'Fredericka the Great', Georgia, serif;}

/* ===== Header / Navigation ===== */
.site-header{
  position:sticky;top:0;z-index:1000;
  background:linear-gradient(180deg,var(--header-bg),var(--header-bg2));
  box-shadow:0 2px 8px rgba(0,0,0,.25);
}
.nav-wrap{
  max-width:1180px;margin:0 auto;padding:0 18px;
  display:flex;align-items:center;gap:22px;min-height:70px;
}
.logo{
  font-family:'Fredericka the Great', Georgia, serif;
  font-size:34px;color:var(--gold);line-height:1;white-space:nowrap;
  text-shadow:1px 1px 2px rgba(0,0,0,.4);
}
.logo:hover{text-decoration:none;color:var(--gold-light);}
.nav{margin-left:auto;display:flex;align-items:center;gap:4px;}
.nav > ul{list-style:none;display:flex;margin:0;padding:0;gap:2px;align-items:center;}
.nav li{position:relative;}
.nav a.navlink{
  display:block;padding:10px 14px;color:#e7e7e2;font-size:15px;border-radius:4px;
  transition:color .15s,background .15s;
}
.nav a.navlink:hover{color:#fff;text-decoration:none;background:rgba(255,255,255,.07);}
.nav a.navlink.active{color:var(--gold-light);}
.nav .has-sub > .navlink::after{content:" \25BE";font-size:10px;opacity:.8;}

/* dropdown */
.submenu{
  position:absolute;top:100%;left:0;min-width:240px;
  background:#243531;border-top:3px solid var(--gold);
  box-shadow:0 8px 22px rgba(0,0,0,.35);
  list-style:none;margin:0;padding:6px 0;
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:opacity .18s,transform .18s,visibility .18s;
}
.nav li.has-sub:hover > .submenu,
.nav li.has-sub:focus-within > .submenu,
.submenu.open{opacity:1;visibility:visible;transform:translateY(0);}
.submenu a{display:block;padding:9px 18px;color:#dcdcd6;font-size:14px;white-space:nowrap;}
.submenu a:hover{background:rgba(212,162,58,.18);color:#fff;text-decoration:none;}

/* search */
.search-box{position:relative;}
.search-box input{
  width:150px;padding:8px 12px;border:none;border-radius:20px;
  background:rgba(255,255,255,.12);color:#fff;font-size:14px;outline:none;
}
.search-box input::placeholder{color:#b9c2bd;}
.search-results{
  position:absolute;top:110%;right:0;min-width:240px;background:#243531;
  border-top:3px solid var(--gold);box-shadow:0 8px 22px rgba(0,0,0,.35);
  border-radius:0 0 6px 6px;display:none;max-height:340px;overflow:auto;z-index:50;
}
.search-results.show{display:block;}
.search-results a{display:block;padding:9px 16px;color:#dcdcd6;font-size:14px;}
.search-results a:hover{background:rgba(212,162,58,.18);color:#fff;text-decoration:none;}
.search-results .none{padding:10px 16px;color:#9aa6a1;font-size:13px;}

/* burger */
.burger{display:none;background:none;border:none;cursor:pointer;margin-left:auto;padding:8px;}
.burger span{display:block;width:26px;height:3px;background:#e7e7e2;margin:5px 0;border-radius:2px;transition:.3s;}

/* ===== Footer ===== */
.site-footer{
  background:linear-gradient(180deg,var(--header-bg),var(--header-bg2));
  color:#cfd3d0;padding:34px 18px;margin-top:50px;
}
.footer-inner{max-width:var(--maxw);margin:0 auto;display:flex;flex-wrap:wrap;gap:24px;justify-content:space-between;align-items:flex-start;}
.footer-inner h3{font-family:'Fredericka the Great',Georgia,serif;color:var(--gold);margin:0 0 10px;font-size:24px;font-weight:400;}
.footer-inner p{margin:3px 0;font-size:14px;}
.footer-inner a{color:#cfd3d0;}
.footer-social{display:flex;gap:12px;margin-top:6px;}
.footer-social img{width:34px;height:34px;}
.footer-bottom{max-width:var(--maxw);margin:22px auto 0;border-top:1px solid rgba(255,255,255,.12);padding-top:14px;font-size:12px;color:#9aa6a1;display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;}
.footer-bottom a{color:#9aa6a1;}

/* ===== Generic page ===== */
.page{max-width:var(--maxw);margin:0 auto;padding:30px 18px 10px;}
.page-narrow{max-width:760px;}
h1.page-title,h2.section-title{
  font-family:'Fredericka the Great',Georgia,serif;font-weight:400;color:var(--gold);
  text-shadow:1px 1px 1px rgba(0,0,0,.15);
}
h1.page-title{font-size:40px;margin:.2em 0 .6em;}
h2.section-title{font-size:30px;margin:1.4em 0 .5em;}

/* ===== Home hero ===== */
.home-hero{position:relative;height:calc(100vh - 70px);min-height:480px;overflow:hidden;}
.home-hero img{width:100%;height:100%;object-fit:cover;}
.home-card{
  position:absolute;left:0;right:0;bottom:0;
  background:linear-gradient(180deg,rgba(255,255,255,0),rgba(255,255,255,.85) 55%);
  padding:60px 24px 22px;text-align:center;
}
.home-card .name{font-family:'Fredericka the Great',Georgia,serif;font-size:26px;color:#2a2a2a;}
.home-card p{margin:2px 0;color:#333;font-size:15px;}
.home-card .social{display:flex;gap:12px;justify-content:center;margin-top:10px;}
.home-card .social img{width:34px;height:34px;}

/* ===== Report hero ===== */
.report-hero{position:relative;max-width:1100px;margin:24px auto 0;padding:0 18px;}
.report-hero .hero-img{position:relative;border-radius:4px;overflow:hidden;box-shadow:0 6px 20px rgba(0,0,0,.25);}
.report-hero .hero-img img{width:100%;max-height:620px;object-fit:cover;}
.report-hero .hero-title{
  position:absolute;left:0;right:0;bottom:18px;text-align:center;
  font-family:'Fredericka the Great',Georgia,serif;color:var(--gold-light);
  font-size:clamp(34px,6vw,64px);text-shadow:2px 2px 6px rgba(0,0,0,.8);
  padding:0 14px;
}
.report-buttons{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin:18px 0 6px;}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  background:linear-gradient(180deg,#2c3f3a,#1d2a26);color:var(--gold-light);
  padding:10px 20px;border-radius:24px;font-size:15px;border:1px solid rgba(212,162,58,.4);
  cursor:pointer;transition:transform .12s,box-shadow .12s;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 5px 14px rgba(0,0,0,.25);text-decoration:none;color:#fff;}

/* ===== Table of contents ===== */
.toc{
  background:#fff;border:1px solid #ddd;border-left:4px solid var(--gold);
  border-radius:4px;padding:18px 22px;margin:26px auto;max-width:760px;
  box-shadow:0 2px 10px rgba(0,0,0,.06);
}
.toc h3{margin:0 0 10px;font-family:'Fredericka the Great',Georgia,serif;color:var(--gold);font-weight:400;font-size:22px;}
.toc ul{margin:0;padding-left:0;list-style:none;}
.toc li{margin:5px 0;}
.toc a{color:#2c3f3a;font-size:14.5px;}
.toc a:hover{color:var(--accent);}

/* ===== Article ===== */
.article{max-width:820px;margin:0 auto;padding:10px 18px 20px;}
.article p{margin:0 0 14px;font-size:16px;color:#2a2a2a;}
.article h2.sec{
  font-family:'Fredericka the Great',Georgia,serif;font-weight:400;color:var(--gold);
  font-size:32px;margin:1.5em 0 .5em;scroll-margin-top:90px;
}
.article h3.day{
  font-size:20px;color:#1d2a26;margin:1.8em 0 .4em;font-weight:bold;
  border-bottom:2px solid var(--gold);padding-bottom:6px;scroll-margin-top:90px;
}
.article figure{margin:18px 0;text-align:center;}
.article figure img{display:inline-block;border-radius:3px;box-shadow:0 3px 12px rgba(0,0,0,.18);max-height:680px;width:auto;max-width:100%;cursor:zoom-in;}
.article figcaption{font-style:italic;font-size:13.5px;color:#666;margin-top:7px;}
.to-top{display:inline-block;font-size:12px;color:#999;margin:6px 0 0;}

/* ===== Tiles grid (Reiseberichte overview) ===== */
.tiles{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
  gap:16px;margin:18px 0 30px;
}
.tile{position:relative;display:block;aspect-ratio:1/1;border-radius:6px;overflow:hidden;box-shadow:0 3px 10px rgba(0,0,0,.18);background:#000;}
.tile img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.tile:hover img{transform:scale(1.08);}
.tile .label{
  position:absolute;left:0;right:0;bottom:0;padding:22px 8px 8px;
  background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.75));
  color:#fff;font-weight:bold;font-size:14px;text-align:center;text-shadow:1px 1px 3px #000;
}
.tile.soon{box-shadow:none;background:transparent;display:flex;align-items:center;justify-content:center;color:var(--muted);font-style:italic;}

/* ===== Gallery grid ===== */
.gallery{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(170px,1fr));gap:12px;margin:20px 0;
}
.gallery img{width:100%;height:200px;object-fit:cover;border-radius:4px;cursor:zoom-in;box-shadow:0 2px 8px rgba(0,0,0,.15);transition:transform .25s;}
.gallery img:hover{transform:scale(1.03);}

/* ===== About / animals ===== */
.about-grid{display:flex;flex-wrap:wrap;gap:30px;align-items:flex-start;}
.about-grid .txt{flex:1 1 320px;}
.about-grid .pic{flex:1 1 300px;}
.about-grid .pic img{width:100%;border-radius:6px;box-shadow:0 4px 14px rgba(0,0,0,.18);}
.animal{margin:0 0 26px;}
.animal h2{font-family:'Fredericka the Great',Georgia,serif;font-weight:400;color:var(--gold);font-size:26px;margin:0 0 6px;}

/* ===== Contact + forms ===== */
.contact-banner img{width:100%;max-height:300px;object-fit:cover;border-radius:6px;margin-bottom:24px;box-shadow:0 4px 14px rgba(0,0,0,.18);}
.form{background:#fff;border:1px solid #ddd;border-radius:6px;padding:24px;box-shadow:0 2px 10px rgba(0,0,0,.06);max-width:620px;}
.form label{display:block;font-size:14px;font-weight:bold;margin:14px 0 5px;color:#333;}
.form input,.form textarea{
  width:100%;padding:11px 13px;border:1px solid #ccc;border-radius:5px;font-size:15px;font-family:inherit;
}
.form input:focus,.form textarea:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(212,162,58,.18);}
.form textarea{min-height:130px;resize:vertical;}
.form .btn-submit{
  margin-top:18px;background:linear-gradient(180deg,#2c3f3a,#1d2a26);color:var(--gold-light);
  border:1px solid rgba(212,162,58,.4);padding:12px 26px;border-radius:24px;font-size:16px;cursor:pointer;
}
.form .btn-submit:hover{color:#fff;transform:translateY(-2px);}
.form-note{font-size:13px;color:#777;margin-top:10px;}
.contact-info{margin-bottom:22px;font-size:16px;line-height:1.7;}
.contact-info .social{display:flex;gap:12px;margin-top:10px;}
.contact-info .social img{width:34px;height:34px;}

/* ===== Comments ===== */
.comments{max-width:820px;margin:40px auto;padding:0 18px;}
.comments h2{font-family:'Fredericka the Great',Georgia,serif;font-weight:400;color:var(--gold);font-size:30px;scroll-margin-top:90px;}
.comment-form{background:#fff;border:1px solid #ddd;border-radius:6px;padding:18px;margin:14px 0 22px;box-shadow:0 2px 10px rgba(0,0,0,.06);}
.comment-form input,.comment-form textarea{width:100%;padding:10px 12px;border:1px solid #ccc;border-radius:5px;font-size:15px;font-family:inherit;margin-bottom:10px;}
.comment-form textarea{min-height:90px;resize:vertical;}
.comment-form button{background:linear-gradient(180deg,#2c3f3a,#1d2a26);color:var(--gold-light);border:1px solid rgba(212,162,58,.4);padding:10px 22px;border-radius:22px;font-size:15px;cursor:pointer;}
.comment-form button:hover{color:#fff;}
.comment-list{list-style:none;margin:0;padding:0;}
.comment-list li{background:#fff;border:1px solid #e3e3e3;border-radius:6px;padding:14px 16px;margin-bottom:12px;}
.comment-list .meta{font-size:13px;color:#888;margin-bottom:5px;}
.comment-list .meta b{color:#2c3f3a;font-size:15px;}
.comment-empty{color:#888;font-style:italic;}

/* ===== Lightbox ===== */
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.92);display:none;align-items:center;justify-content:center;z-index:5000;}
.lightbox.open{display:flex;}
.lightbox img{max-width:92vw;max-height:88vh;border-radius:4px;box-shadow:0 0 40px rgba(0,0,0,.6);}
.lightbox .lb-close,.lightbox .lb-prev,.lightbox .lb-next{
  position:absolute;background:rgba(255,255,255,.12);color:#fff;border:none;cursor:pointer;
  font-size:30px;width:54px;height:54px;border-radius:50%;display:flex;align-items:center;justify-content:center;
}
.lightbox .lb-close{top:20px;right:20px;}
.lightbox .lb-prev{left:18px;top:50%;transform:translateY(-50%);}
.lightbox .lb-next{right:18px;top:50%;transform:translateY(-50%);}
.lightbox button:hover{background:rgba(255,255,255,.25);}

/* ===== Responsive ===== */
@media (max-width:900px){
  .burger{display:block;}
  .nav{
    position:fixed;top:70px;right:0;bottom:0;width:280px;max-width:85vw;
    background:#16201d;flex-direction:column;align-items:stretch;
    transform:translateX(100%);transition:transform .3s;overflow-y:auto;padding:10px 0;
    box-shadow:-6px 0 20px rgba(0,0,0,.4);
  }
  .nav.open{transform:translateX(0);}
  .nav > ul{flex-direction:column;align-items:stretch;width:100%;gap:0;}
  .nav a.navlink{padding:13px 22px;border-bottom:1px solid rgba(255,255,255,.06);}
  .nav .has-sub > .navlink::after{float:right;}
  .submenu{
    position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border-top:none;
    background:rgba(0,0,0,.25);display:none;min-width:0;
  }
  .submenu.open{display:block;}
  .search-box{padding:12px 22px;}
  .search-box input{width:100%;}
  .search-results{left:22px;right:22px;}
}
@media (max-width:600px){
  .logo{font-size:28px;}
  h1.page-title{font-size:30px;}
  .article p{font-size:15px;}
  .gallery img{height:150px;}
}
