/* ============================================
   Hotel Alpenblick – Global Styles
   Fonts: Zodiak (serif) + General Sans
   ============================================ */

@import url('https://fonts.bunny.net/css?family=general-sans:400,500,600|cormorant-garamond:400,500,700');




/* ── CSS Custom Properties ─────────────────── */
:root {
  /* Typography Scale */
  --text-hero:  clamp(48px, 10vw, 128px);
  --text-2xl:   clamp(32px, 5vw,   56px);
  --text-xl:    clamp(24px, 3.5vw, 36px);
  --text-lg:    clamp(18px, 2.5vw, 24px);
  --text-base:  clamp(16px, 1.5vw, 18px);
  --text-sm:    clamp(14px, 1.2vw, 16px);
  --text-xs:    clamp(12px, 1vw,   14px);

  /* Fonts */
  --font-serif:  'Cormorant Garamond', 'Georgia', serif;
  --font-sans:   'General Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Colors (Basis – später verfeinern) */
  --color-bg:       #fafaf8;
  --color-text:     #1a1a1a;
  --color-muted:    #6b6b6b;
  --color-accent:   #3d5a47;   /* Wallis-Grün */
  --color-border:   #e0ddd8;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ─────────────────────────────── */
.t-hero {
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

h1, .t-page-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

h2, .t-section-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h3, .t-subtitle {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-xs);
}

p, .t-body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.t-nav, .t-button {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.t-meta, .t-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

/* ── Layout ─────────────────────────────────── */
main {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-md);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
