@font-face {
  font-family: 'Satoshi-Regular';
  src: url('fonts/Satoshi-Regular.woff2') format('woff2'),
       url('fonts/Satoshi-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Chapman-MediumCondensed';
  src: url('fonts/Chapman-MediumCondensed.woff2') format('woff2'),
       url('fonts/Chapman-MediumCondensed.woff') format('woff');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

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

:root {
  --color-bg:         #0a0e17;
  --color-surface:    rgba(255, 255, 255, 0.06);
  --color-border:     rgba(255, 255, 255, 0.15);
  --color-text:       black;
  --color-muted:      black;
  --color-accent:     #F08015;
  --color-accent-dim: rgba(201, 168, 76, 0.25);
  --font-display:     'Chapman-MediumCondensed', Georgia, serif;
  --font-body:        'Satoshi-Regular', sans-serif;
  --transition:       0.35s ease;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================================
   Background Image + Overlay
   ============================================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  /* 
    Replace the URL below with your own background image, e.g.:
    url('images/attnang-puchheim.jpg')
    
    Using a beautiful Austrian landscape from Unsplash as placeholder:
  */
  background-image: url('assets/ATT_Hintergrundbild.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
}

/* All children above overlay */
.site-header,
.main-content,
.site-footer {
  position: relative;
  z-index: 2;
}

/* ============================================================
   Header / Logo
   ============================================================ */
.site-header {
  padding: 2rem 2rem 0;
  display: flex;
  justify-content: center;
  animation: fadeDown 0.9s ease both;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-accent);
}

.logo-icon svg {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.45));
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ============================================================
   Main Content
   ============================================================ */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

.content-wrapper {
  max-width: 800px;
  width: 100%;
}

/* Eyebrow */
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

/* Headline */
.headline {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.9;
  color: var(--color-text);
  /*text-shadow: 0 4px 40px rgba(0,0,0,0.5);*/
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 14vw, 8.5rem);
	text-transform: uppercase;
}

.line-1 {
  display: block;
  font-size: clamp(4rem, 14vw, 8.5rem);
  animation: fadeUp 0.8s 0.2s ease both;
}

.line-2 {
  display: block;
  font-size: clamp(4rem, 14vw, 8.5rem);
  font-style: italic;
  color: var(--color-accent);
  animation: fadeUp 0.8s 0.3s ease both;
}

/* Divider */
.divider {
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin: 0 auto 1.8rem;
  animation: scaleIn 0.6s 0.5s ease both;
}

/* Subtext */
.subtext {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s 0.55s ease both;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.subtext strong {
  color: var(--color-text);
  font-weight: 400;
}

/* ============================================================
   Countdown
   ============================================================ */
.countdown {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  animation: fadeUp 0.8s 0.7s ease both;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.count {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.5rem 0.8rem;
  min-width: 70px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition);
}

.count:hover {
  background: var(--color-accent-dim);
}

.countdown-item .label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  padding-top: 0.45rem;
  user-select: none;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding: 1.8rem 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
  animation: fadeUp 0.8s 0.85s ease both;
  background: white;
	font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: black;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.footer-link-2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: black;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  margin-top: 0.85rem;
}

.footer-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--transition);
  transition: stroke var(--transition);
}

.footer-link:hover {
  color: var(--color-accent);
}


.footer-link-2:hover {
  color: var(--color-accent);
}

.footer-link:hover svg {
  opacity: 1;
  stroke: var(--color-accent);
}

.footer-sep {
  color: var(--color-border);
  font-weight: 300;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(240, 237, 230, 0.3);
  letter-spacing: 0.05em;
	margin-top: 0.8rem;
}

/* ============================================================
   Keyframe Animations
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 600px) {
  .site-header {
    padding-top: 1.5rem;
  }

  .countdown {
    gap: 0.3rem;
  }

  .countdown-item {
    min-width: 56px;
  }

  .count {
    min-width: 56px;
    padding: 0.4rem 0.5rem;
  }

  .footer-sep {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.6rem;
  }
}

@media (max-width: 380px) {
  .countdown-sep {
    display: none;
  }
}
