/*
Theme Name: Decorrglow
Theme URI: https://www.decorrglow.online
Author: Decorrglow
Author URI: https://www.decorrglow.online
Description: Einseitiges Premium-WordPress-Theme für Wohndekor und Interior. Abschnitte Startseite, Über uns, Leistungen und Kontakt. Sprache: Deutsch.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: decorrglow
Tags: one-page, e-commerce, custom-menu, featured-images, translation-ready
*/

:root {
  --bg: #12141a;
  --bg-elevated: #1a1d26;
  --bg-card: #222633;
  --bg-soft: #2a2f3d;
  --text: #f2f0eb;
  --text-soft: #c8c4bc;
  --muted: #8b8794;
  --glow: #e8a849;
  --glow-bright: #f5cc78;
  --glow-soft: rgba(232, 168, 73, 0.14);
  --line: rgba(232, 168, 73, 0.18);
  --shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
  --radius: 4px;
  --header-h: 80px;
  --font-serif: "Playfair Display", "Georgia", serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--glow);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--glow);
}

h1,
h2,
h3,
.serif {
  font-family: var(--font-serif);
  font-weight: 500;
}

.section {
  padding: 108px 0;
}

.section-head {
  max-width: 580px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin: 16px 0 14px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid var(--glow);
  background: var(--glow);
  color: #151515;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  background: var(--glow-bright);
  border-color: var(--glow-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--glow);
  color: #151515;
}

.btn-full {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(18, 20, 26, 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.logo span {
  color: var(--glow);
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: currentColor;
}

.nav-toggle span {
  top: 50%;
}

.nav-toggle::before {
  top: 14px;
}

.nav-toggle::after {
  bottom: 14px;
}

.primary-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
}

.hero-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 48px) 6vw calc(var(--header-h) + 48px) 0;
  position: relative;
  z-index: 2;
}

.hero-content-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 120px;
  background: linear-gradient(90deg, var(--bg), transparent);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(46px, 6.5vw, 88px);
  line-height: 0.95;
  margin: 20px 0 22px;
  max-width: 10ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--glow);
}

.hero p {
  max-width: 440px;
  color: var(--text-soft);
  margin: 0 0 36px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  margin-top: 52px;
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hero-stats div {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 28px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.15) 0%, rgba(18, 20, 26, 0.55) 100%);
  z-index: 1;
}

.hero-float {
  position: absolute;
  left: -48px;
  bottom: 80px;
  z-index: 2;
  background: var(--glow);
  color: #151515;
  padding: 24px 28px;
  min-width: 160px;
  box-shadow: var(--shadow);
}

.hero-float strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1;
}

.hero-float span {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Collection */
.collection {
  background: var(--bg-elevated);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  border-color: var(--glow);
  transform: translateY(-3px);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--bg);
  color: var(--glow);
  border: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.product-body {
  padding: 20px 22px 24px;
  border-top: 1px solid var(--line);
}

.product-body h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.price {
  color: var(--glow);
  font-family: var(--font-serif);
  font-size: 22px;
}

.add-cart {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 12px;
}

.add-cart:hover {
  color: var(--glow);
}

/* About */
.about {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--glow-soft), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(232, 168, 73, 0.35);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  right: -28px;
  top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 20px 24px;
  text-align: center;
}

.about-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--glow);
  line-height: 1;
}

.about-badge span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--glow);
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* Services */
.services {
  background: var(--bg-elevated);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  padding: 28px 22px 30px;
  border: 1px solid var(--line);
  background: var(--bg);
  min-height: 260px;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--glow), transparent);
}

.service-num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--glow);
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 24px;
  margin: 0 0 10px;
}

.service-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.service-banner {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
}

.service-banner img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.service-banner-side {
  display: grid;
  gap: 16px;
}

.service-banner-side img {
  height: 162px;
}

/* Contact */
.contact {
  background: var(--bg);
}

.contact-map-full {
  position: relative;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.contact-map-full iframe {
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(0.6) invert(0.92) contrast(1.1);
}

.map-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 12px 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--glow);
}

.contact-body {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.info-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 22px 24px;
}

.info-block span {
  display: block;
  color: var(--glow);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-block strong,
.info-block a {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
}

.info-block p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.info-block a:hover {
  color: var(--glow);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 36px;
}

.contact-form h3 {
  font-size: 32px;
  margin: 0 0 6px;
}

.form-lead {
  color: var(--muted);
  margin: 0 0 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--glow);
}

.form-note {
  margin: 14px 0 0;
  min-height: 24px;
  color: var(--glow);
  font-size: 14px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--glow);
  color: #151515;
  padding: 14px 20px;
  z-index: 50;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  transform: translateY(120%);
  transition: transform 0.3s ease;
}

.toast.is-visible {
  transform: translateY(0);
}

@media (min-width: 981px) {
  .header-cta {
    display: inline-flex;
    min-height: 42px;
    padding: 0 20px;
    font-size: 10px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  .logo {
    justify-self: start;
  }

  .primary-nav {
    justify-self: center;
  }

  .header-cta {
    justify-self: end;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 52vh;
    order: 1;
  }

  .hero-content-wrap {
    order: 2;
    padding: 48px 0 56px;
  }

  .hero-content-wrap::after {
    display: none;
  }

  .hero-float {
    left: 16px;
    bottom: 16px;
  }

  .product-grid,
  .service-grid,
  .about-grid,
  .contact-body,
  .service-banner,
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .service-banner-side {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    gap: 32px;
  }

  .about-visual img {
    height: 420px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(18, 20, 26, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    padding: 18px 24px 28px;
    gap: 18px;
  }
}

@media (max-width: 680px) {
  .logo {
    font-size: 20px;
    letter-spacing: 0.14em;
  }

  .section {
    padding: 76px 0;
  }

  .product-grid,
  .service-grid,
  .stats,
  .hero-stats,
  .contact-body,
  .service-banner,
  .service-banner-side,
  .form-row {
    grid-template-columns: 1fr;
  }

  .about-badge {
    right: 12px;
    top: 12px;
  }

  .contact-form {
    padding: 24px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
}
