/* ======================
   Variables
====================== */
:root {
  --text-color: #111;
  --font-serif: "DM Serif Display", serif;
  --font-sans: "Montserrat", sans-serif;
}

/* ======================
   Reset
====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text-color);
  background-image: #ffffff;
  background-image: url(BG-Famora.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
}

/* ======================
   Header
====================== */
.header {
  padding: 72px;
}

.logo video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ======================
   Main
====================== */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.main h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ======================
   Footer
====================== */
.footer {
  padding: 72px;
  font-size: 0.85rem;
}

.social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.social span {
  font-weight: 500;
}

.icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.icon:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}

.footer-text {
  max-width: 420px;
}

/* ======================
   Responsive
====================== */
@media (max-width: 768px) {

  .header {
    display: flex;
    justify-content: center;
  }

  .footer {
    text-align: center;
  }

  .social {
    justify-content: center;
  }

  .footer-text {
    margin: 0 auto;
  }
  .main h1 {
    letter-spacing: 0.05em;
  }
}
