/* 
  Architekturbüro Felix Müller, Endingen - Website Stylesheet 
  Aesthetic: Swiss Architectural Minimalism
  Website: http://arch-mueller.ch/
*/

:root {
  --primary-color: #1a1a1a;
  --bg-color: #faf9f6; /* Warmes Schweizer Naturweiss */
  --text-color: #1a1a1a;
  --text-muted: #666666;
  --border-color: #e5e0d8;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  font-family: var(--font-sans);
  color: var(--text-color);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
}

/* Floorplan Hintergrundzeichnung */
.blueprint-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
  filter: grayscale(100%);
  transition: opacity 0.5s ease;
}

/* Dekorative Gitter-Linie im Schweizer Layout */

body::before {
  content: '';
  position: fixed;
  top: 0;
  right: 64px;
  width: 1px;
  height: 100vh;
  background-color: rgba(26, 26, 26, 0.04);
  z-index: 10;
  pointer-events: none;
}


.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* Layout-Hauptbereiche */
.site-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  padding: 48px 0;
}

/* Header */
header {
  padding-bottom: 24px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.logo-container {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-sans);
  font-weight: 350;
  font-size: 24px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-color);
  line-height: 1.2;
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: opacity 0.2s;
  border-bottom: 1px solid transparent;
}

nav a:hover {
  opacity: 0.6;
}

/* Hauptinhalt (Zentrum) */
main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 780px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.divider-line {
  width: 64px;
  height: 1px;
  background-color: var(--text-color);
  margin-bottom: 40px;
}

.slogan {
  font-size: 48px;
  font-weight: 200;
  line-height: 1.25;
  margin-bottom: 32px;
  color: var(--text-color);
  letter-spacing: -0.015em;
}

@media (max-width: 768px) {
  .slogan {
    font-size: 32px;
  }
}

.italic-text {
  font-style: italic;
  font-weight: 300;
  color: #555555;
}

.main-paragraph {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}

/* Fusszeile / Footer */
footer {
  border-top: 1px solid #eeeeee;
  padding-top: 32px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-blocks {
  display: flex;
  gap: 64px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .footer-blocks {
    flex-direction: column;
    gap: 24px;
  }
}

.footer-block-title {
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  opacity: 0.6;
  margin-bottom: 8px;
}

.footer-block-text {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-color);
}

.footer-block-text a {
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.footer-block-text a:hover {
  border-bottom-color: var(--text-color);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

@media (max-width: 768px) {
  .footer-right {
    align-items: flex-start;
  }
}

.copyright, .webmaster-credit, .privacy-link {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  opacity: 0.7;
}

.webmaster-credit a, .privacy-link a {
  color: var(--text-muted);
  text-decoration: underline;
  transition: opacity 0.2s, color 0.2s;
}

.webmaster-credit a:hover, .privacy-link a:hover {
  opacity: 1;
  color: var(--text-color);
}
