@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --bg: hsl(40,33%,96%);
  --fg: hsl(150,25%,18%);
  --card: hsl(40,30%,98%);
  --card-fg: hsl(150,25%,18%);
  --primary: hsl(152,38%,28%);
  --primary-fg: hsl(40,33%,96%);
  --muted: hsl(36,20%,92%);
  --muted-fg: hsl(150,10%,45%);
  --border: hsl(36,20%,85%);
  --section-alt: hsl(36,25%,93%);
  --nature-light: hsl(152,30%,40%);
  --radius: 0.375rem;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Source Sans 3',system-ui,sans-serif;background:var(--bg);color:var(--fg);line-height:1.6}
h1,h2,h3,h4,h5,h6{font-family:'Cormorant Garamond',Georgia,serif;color:var(--fg)}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

/* Layout */
.page-wrap{min-height:100vh;display:flex;flex-direction:column}
main{flex:1;padding-top:92px}
@media(min-width:768px){main{padding-top:104px}}

/* Top bar */
.top-bar{background:var(--primary);color:var(--primary-fg);padding:0.5rem 1rem;font-size:0.875rem}
.top-bar-inner{max-width:72rem;margin:0 auto;display:flex;align-items:center;gap:1.5rem}
.top-bar a{color:var(--primary-fg);display:flex;align-items:center;gap:0.375rem;transition:opacity .2s}
.top-bar a:hover{opacity:.8}
.top-bar .hide-mobile{display:none}
@media(min-width:640px){.top-bar .hide-mobile{display:inline}.top-bar .show-mobile{display:none}}

/* Nav */
.nav-bar{background:hsla(40,30%,98%,0.95);backdrop-filter:blur(8px);border-bottom:1px solid var(--border)}
.nav-inner{max-width:72rem;margin:0 auto;padding:0 1rem;display:flex;align-items:center;justify-content:space-between;height:3.5rem}
@media(min-width:768px){.nav-inner{padding:0 2rem;height:4rem}}
.nav-logo img{height:72px;width:auto;object-fit:contain}
@media(min-width:768px){.nav-logo img{height:96px}}
.nav-links{display:none;gap:2rem}
@media(min-width:768px){.nav-links{display:flex}}
.nav-links a{font-size:1rem;font-weight:500;letter-spacing:0.025em;color:var(--muted-fg);transition:color .2s}
.nav-links a:hover,.nav-links a.active{color:var(--primary)}
.nav-toggle{display:flex;background:none;border:none;cursor:pointer;padding:0.5rem;color:var(--fg)}
@media(min-width:768px){.nav-toggle{display:none}}
.nav-toggle svg{width:20px;height:20px}
.mobile-nav{display:none;background:var(--card);border-bottom:1px solid var(--border);padding:0 1rem 1rem}
.mobile-nav.open{display:block}
.mobile-nav a{display:block;padding:0.5rem 0;font-size:0.875rem;font-weight:500;color:var(--muted-fg)}
.mobile-nav a:hover,.mobile-nav a.active{color:var(--primary)}
header{position:fixed;top:0;left:0;right:0;z-index:50}

/* Sections */
.section-padding{padding:4rem 1rem}
@media(min-width:768px){.section-padding{padding:6rem 2rem}}
.container-narrow{max-width:64rem;margin:0 auto}
.text-center{text-align:center}
.bg-alt{background:var(--section-alt)}

/* Buttons */
.btn-primary{display:inline-block;background:var(--primary);color:var(--primary-fg);padding:0.75rem 2rem;font-size:0.875rem;font-weight:500;letter-spacing:0.025em;transition:background .2s;border:none;cursor:pointer}
.btn-primary:hover{background:var(--nature-light)}
.btn-outline{display:inline-block;border:1px solid var(--primary);color:var(--primary);padding:0.75rem 2rem;font-size:0.875rem;font-weight:500;letter-spacing:0.025em;transition:all .2s;background:transparent}
.btn-outline:hover{background:var(--primary);color:var(--primary-fg)}
.btn-white{display:inline-block;background:hsla(40,30%,98%,0.9);color:var(--fg);padding:0.75rem 2rem;font-size:0.875rem;font-weight:500;letter-spacing:0.025em;transition:background .2s}
.btn-white:hover{background:var(--card)}

/* Hero */
.hero{position:relative;height:70vh;display:flex;align-items:center;justify-content:center;overflow:hidden}
@media(min-width:768px){.hero{height:85vh}}
.hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:rgba(30,50,35,0.4)}
.hero-content{position:relative;z-index:10;text-align:center;padding:0 1rem;max-width:48rem;margin-top:8rem}
@media(min-width:768px){.hero-content{margin-top:10rem}}
.hero h1{font-size:2.25rem;font-weight:600;color:var(--card);margin-bottom:1rem;line-height:1.1}
@media(min-width:768px){.hero h1{font-size:3.75rem}}
@media(min-width:1024px){.hero h1{font-size:4.5rem}}
.hero p{color:hsla(40,30%,98%,0.9);font-weight:300;letter-spacing:0.025em;margin-bottom:0.5rem}
.hero .subtitle{font-size:1.125rem}
@media(min-width:768px){.hero .subtitle{font-size:1.25rem}}
.hero .sub2{font-size:1rem;color:hsla(40,30%,98%,0.8)}
@media(min-width:768px){.hero .sub2{font-size:1.125rem}}
.hero-buttons{display:flex;flex-direction:column;gap:1rem;justify-content:center;margin-top:2rem}
@media(min-width:640px){.hero-buttons{flex-direction:row}}

/* Facts bar */
.facts-bar{background:var(--card);border-bottom:1px solid var(--border)}
.facts-grid{max-width:64rem;margin:0 auto;padding:2.5rem 1rem;display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
@media(min-width:768px){.facts-grid{grid-template-columns:repeat(5,1fr);gap:1rem;padding:3.5rem 1rem}}
.fact{display:flex;flex-direction:column;align-items:center;text-align:center;gap:0.5rem}
.fact svg{width:24px;height:24px;color:var(--primary)}
.fact span{font-size:0.875rem;font-weight:500}

/* Grid layouts */
.grid-2{display:grid;gap:3rem}
@media(min-width:768px){.grid-2{grid-template-columns:1fr 1fr}}
.grid-4{display:grid;gap:2rem}
@media(min-width:768px){.grid-4{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.grid-4{grid-template-columns:repeat(4,1fr)}}
.grid-5-3{display:grid;gap:3rem}
@media(min-width:768px){.grid-5-3{grid-template-columns:3fr 2fr}}

/* Ausstattung */
.ausstattung-list{list-style:none;padding:0}
.ausstattung-list li{display:flex;align-items:center;gap:0.5rem;font-size:0.875rem;color:var(--muted-fg);padding:0.25rem 0}
.ausstattung-list .dot{color:var(--primary)}

/* Gallery image */
.gallery-img{width:100%;height:16rem;object-fit:cover;object-position:center}
@media(min-width:768px){.gallery-img{height:24rem}}
.img-caption{font-size:0.75rem;color:var(--muted-fg);margin-top:0.5rem;text-align:center}

/* Page hero (sub pages) */
.page-hero{position:relative;height:50vh;display:flex;align-items:flex-end;overflow:hidden}
.page-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.page-hero .hero-overlay{background:rgba(30,50,35,0.3)}
.page-hero-content{position:relative;z-index:10;padding:0 1rem 2.5rem;max-width:72rem;margin:0 auto;width:100%}
@media(min-width:768px){.page-hero-content{padding:0 2rem 2.5rem}}
.page-hero h1{font-size:2.25rem;color:var(--card)}
@media(min-width:768px){.page-hero h1{font-size:3rem}}

/* Price card */
.price-card{max-width:28rem;margin:0 auto;background:var(--card);border:1px solid var(--border);padding:2rem 2.5rem;text-align:center;margin-bottom:3rem}
.price-card .label{font-size:0.75rem;text-transform:uppercase;letter-spacing:0.1em;color:var(--muted-fg);margin-bottom:0.5rem}
.price-card .big-price{font-family:'Cormorant Garamond',serif;font-size:3.5rem;margin-bottom:0.25rem}
@media(min-width:768px){.price-card .big-price{font-size:4rem}}
.price-card .unit{color:var(--muted-fg);margin-bottom:2rem}
.price-row{display:flex;justify-content:space-between;align-items:center;font-size:0.875rem;border-bottom:1px solid var(--border);padding-bottom:0.5rem;margin-bottom:0.75rem}
.price-row .nights{font-weight:500}
.price-row .amount{font-weight:600}
.price-note{font-size:0.75rem;color:var(--muted-fg);margin-top:0.25rem}
.check-list{list-style:none;padding:0;margin:2rem 0;text-align:left}
.check-list li{display:flex;align-items:center;gap:0.5rem;font-size:0.875rem;color:var(--muted-fg);padding:0.25rem 0}
.check-list svg{width:16px;height:16px;color:var(--primary);flex-shrink:0}

/* Booking placeholder */
.booking-placeholder{background:var(--section-alt);border:1px solid var(--border);padding:2rem 2.5rem;text-align:center}
@media(min-width:768px){.booking-placeholder{padding:3rem}}
.booking-placeholder h2{margin-bottom:1rem}
.booking-placeholder p{color:var(--muted-fg);margin-bottom:1.5rem}
.booking-buttons{display:flex;flex-direction:column;gap:1rem;justify-content:center}
@media(min-width:640px){.booking-buttons{flex-direction:row}}

/* Forms */
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-size:0.875rem;font-weight:500;margin-bottom:0.375rem}
.form-group input,.form-group textarea{width:100%;border:1px solid var(--border);background:var(--card);padding:0.625rem 1rem;font-size:0.875rem;font-family:inherit;color:var(--fg);outline:none;transition:box-shadow .2s}
.form-group input:focus,.form-group textarea:focus{box-shadow:0 0 0 2px var(--primary)}
.form-group textarea{resize:none}
.form-row{display:grid;gap:1.25rem}
@media(min-width:640px){.form-row{grid-template-columns:1fr 1fr}}

/* Contact info */
.contact-info{display:flex;flex-direction:column;gap:1rem}
.contact-item{display:flex;align-items:center;gap:0.75rem;font-size:0.875rem}
.contact-item svg{width:20px;height:20px;color:var(--primary);flex-shrink:0}
.contact-item a{color:var(--fg)}

/* Footer */
footer{background:var(--primary);color:var(--primary-fg)}
.footer-inner{max-width:72rem;margin:0 auto;padding:3rem 1rem 2rem}
@media(min-width:768px){.footer-inner{padding:4rem 2rem 2rem}}
.footer-grid{display:grid;gap:2rem}
@media(min-width:768px){.footer-grid{grid-template-columns:repeat(3,1fr)}}
.footer-grid h3{font-size:1.5rem;margin-bottom:1rem}
.footer-grid h4{font-size:1.125rem;margin-bottom:1rem}
.footer-grid p,.footer-grid a,.footer-grid span{font-size:0.875rem;opacity:0.8}
.footer-grid a:hover{opacity:1}
.footer-contact{display:flex;flex-direction:column;gap:0.5rem}
.footer-contact div{display:flex;align-items:center;gap:0.5rem}
.footer-contact svg{width:16px;height:16px;flex-shrink:0}
.footer-legal{display:flex;flex-direction:column;gap:0.5rem}
.footer-bottom{margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid hsla(40,33%,96%,0.2);text-align:center;font-size:0.75rem;opacity:0.6}

/* Legal pages */
.legal-content{max-width:48rem}
.legal-content h2{font-size:1.25rem;margin-bottom:0.5rem;margin-top:1.5rem;color:var(--fg)}
.legal-content h3{font-weight:500;color:var(--fg);margin-top:1rem;margin-bottom:0.25rem}
.legal-content p{font-size:0.875rem;color:var(--muted-fg);line-height:1.7;margin-bottom:1rem}

/* Responsive img */
.img-cover{width:100%;height:20rem;object-fit:cover}

/* Utilities */
.mb-1{margin-bottom:0.25rem}.mb-2{margin-bottom:0.5rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb-12{margin-bottom:3rem}
.mt-6{margin-top:1.5rem}
.mx-auto{margin-left:auto;margin-right:auto}
.max-w-2xl{max-width:42rem}
.text-muted{color:var(--muted-fg)}
.text-lg{font-size:1.125rem}
.leading-relaxed{line-height:1.75}

/* Animation */
@keyframes fadeInUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.animate-fade-in-up{animation:fadeInUp 0.6s ease-out both}
