/*
Theme Name:  Jürgens Hotelausstatter
Theme URI:   https://www.juergens.biz
Author:      Jürgens Internetlösungen
Author URI:  https://www.juergens.biz
Description: Premium WordPress Theme für Jürgens Hotelausstattung – exklusive Hotel-Ausrüstung für Deutschland, Österreich und die Schweiz. SEO-optimiert, responsiv, dark luxury design.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: juergens-hotelausstatter
Tags:        hotel, luxury, dark, business, seo, responsive
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
  /* Gold / Bronze */
  --gold:        #C8A96A;
  --gold-light:  #E0C48A;
  --gold-dark:   #A8844A;

  /* Backgrounds */
  --bg-main:     #0B0B0B;
  --bg-card:     #151515;
  --bg-layer:    #1E1E1E;

  /* Wood Tones */
  --wood-dark:   #6E4B2A;
  --wood-mid:    #8A623C;
  --wood-light:  #B08A5A;

  /* Text */
  --text-white:  #FFFFFF;
  --text-body:   #E5E5E5;
  --text-sec:    #BFBFBF;
  --text-meta:   #8A8A8A;

  /* Spacing */
  --section-gap: 100px;
  --nav-h:       80px;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-main);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold-light); }
ul  { list-style: none; }

/* ==========================================================================
   Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-main);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--bg-main);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,106,.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-main);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,106,.35);
}

.btn-dark {
  background: var(--bg-layer);
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,.12);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--bg-main);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}

#site-header.scrolled {
  background: rgba(11,11,11,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200,169,106,.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bg-main);
  border-radius: 2px;
  flex-shrink: 0;
  letter-spacing: -.02em;
}

.logo-text {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1.2;
}

.logo-sub {
  font-size: .6rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .1em;
  display: block;
}

/* Desktop Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-menu a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-sec);
  padding: 8px 14px;
  border-radius: 3px;
  transition: color .25s var(--ease);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}

.nav-menu a:hover,
.nav-menu a.current-menu-item {
  color: var(--text-white);
}

.nav-menu a:hover::after,
.nav-menu a.current-menu-item::after {
  transform: scaleX(1);
}

.nav-menu .nav-cta {
  margin-left: 16px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-main) !important;
  font-weight: 700;
  border-radius: 3px;
  letter-spacing: .1em;
}

.nav-menu .nav-cta::after { display: none; }
.nav-menu .nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,169,106,.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all .3s var(--ease);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,11,11,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: .06em;
  transition: color .25s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.juergens.biz/wp-content/uploads/2026/05/hotelausstatter-hero.webp');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11,11,11,.82) 0%,
    rgba(11,11,11,.55) 50%,
    rgba(11,11,11,.25) 100%
  );
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-main), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: var(--nav-h);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,106,.12);
  border: 1px solid rgba(200,169,106,.3);
  border-radius: 2px;
  padding: 6px 16px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-sec);
  margin-bottom: 40px;
  letter-spacing: .03em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-meta);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::before {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

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

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-sec);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.8;
}

/* ==========================================================================
   Product Cards Section
   ========================================================================== */
#products {
  padding-block: var(--section-gap);
  background: var(--bg-main);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  group: true;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(11,11,11,.92) 0%,
    rgba(11,11,11,.5) 40%,
    rgba(11,11,11,.1) 100%
  );
  z-index: 1;
  transition: background .4s var(--ease);
}

.product-card:hover::before {
  background: linear-gradient(to top,
    rgba(11,11,11,.96) 0%,
    rgba(11,11,11,.7) 55%,
    rgba(11,11,11,.3) 100%
  );
}

.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.product-card:hover img { transform: scale(1.06); }

.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 36px 32px;
  transform: translateY(0);
  transition: transform .35s var(--ease);
}

.card-category {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.card-desc {
  font-size: .88rem;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s .1s var(--ease), transform .3s .1s var(--ease);
}

.product-card:hover .card-desc {
  opacity: 1;
  transform: translateY(0);
}

.card-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 18px;
  transition: width .3s var(--ease);
}

.product-card:hover .card-divider { width: 70px; }

/* ==========================================================================
   USP / Feature Bar
   ========================================================================== */
#usp-bar {
  background: var(--bg-layer);
  border-top: 1px solid rgba(200,169,106,.15);
  border-bottom: 1px solid rgba(200,169,106,.15);
  padding: 50px 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200,169,106,.1);
}

.usp-item {
  background: var(--bg-layer);
  padding: 36px 28px;
  text-align: center;
  transition: background .3s var(--ease);
}

.usp-item:hover { background: var(--bg-card); }

.usp-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.usp-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 6px;
}

.usp-desc {
  font-size: .82rem;
  color: var(--text-meta);
  line-height: 1.5;
}

/* ==========================================================================
   Matratzenreinigung Section
   ========================================================================== */
#reinigung {
  padding-block: var(--section-gap);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

#reinigung::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(90deg, rgba(200,169,106,.04) 0%, transparent 100%);
  pointer-events: none;
}

.reinigung-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.reinigung-content { max-width: 520px; }

.reinigung-features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200,169,106,.15);
  border: 1px solid rgba(200,169,106,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--gold);
  stroke-width: 2.5;
  fill: none;
}

.feature-text {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.5;
}

.feature-text strong { color: var(--text-white); font-weight: 600; }

.reinigung-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.reinigung-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

.reinigung-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,169,106,.2);
  border-radius: 4px;
  pointer-events: none;
}

.reinigung-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bg-main);
  z-index: 2;
  padding: 10px;
  line-height: 1.3;
  box-shadow: 0 10px 30px rgba(200,169,106,.4);
}

/* ==========================================================================
   About / Trust Section
   ========================================================================== */
#about-strip {
  padding-block: var(--section-gap);
  background: var(--bg-main);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}

.about-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid rgba(200,169,106,.25);
  border-radius: 4px;
  pointer-events: none;
  z-index: -1;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.4;
  margin-block: 28px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.regions-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.region-tag {
  background: var(--bg-layer);
  border: 1px solid rgba(200,169,106,.2);
  border-radius: 2px;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   Footer
   ========================================================================== */
#site-footer {
  background: #0A0A0A;
  border-top: 1px solid rgba(200,169,106,.15);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-brand { max-width: 300px; }

.footer-brand p {
  font-size: .88rem;
  color: var(--text-meta);
  line-height: 1.75;
  margin-block: 18px;
}

.footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,169,106,.2);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .87rem;
  color: var(--text-meta);
  transition: color .25s, padding-left .25s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: .87rem;
  color: var(--text-meta);
  line-height: 1.5;
}

.footer-contact-item a {
  color: var(--text-meta);
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: 22px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: .78rem;
  color: var(--text-meta);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: .78rem;
  color: var(--text-meta);
}

.footer-legal a:hover { color: var(--gold); }

/* ==========================================================================
   Gold Divider
   ========================================================================== */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  margin-bottom: 24px;
}

/* ==========================================================================
   Animations / Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ==========================================================================
   Single Page / Archive Layout (Fallback)
   ========================================================================== */
.page-content {
  padding-block: var(--section-gap);
  min-height: 60vh;
}

.page-content h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 24px;
}

.page-content p { color: var(--text-body); margin-bottom: 16px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; }
  .reinigung-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
}

@media (max-width: 768px) {
  :root { --section-gap: 70px; }

  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
  .card-body { padding: 24px 20px; }
  .reinigung-badge { display: none; }
}
