/* ============================================
   MINIMOROCCOLISM — Luxury Landing Page
   Single-page, single-section hero design
   ============================================ */

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

html,
body {
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  background-color: #0A0A0A;
  color: #F5F0E8;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for mobile */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Background Image ---- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: cinematic-zoom 25s ease-in-out infinite;
  will-change: transform;
}

/* ---- Dark Overlay ---- */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.65) 50%,
    rgba(10, 10, 10, 0.75) 100%
  );
}

/* ---- Content ---- */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  max-width: 900px;
}

/* ---- Logo ---- */
.hero__logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #F5F0E8;
  line-height: 1.2;
  margin-bottom: 48px;
}

/* ---- Main Heading ---- */
.hero__heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.5px;
  line-height: 1.15;
  color: #F5F0E8;
  max-width: 800px;
  margin-bottom: 24px;
}

/* ---- Subheading ---- */
.hero__subheading {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.3vw, 18px);
  letter-spacing: 0.3px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.75);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ---- CTA Button ---- */
.hero__cta {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid rgba(245, 240, 232, 0.4);
  border-radius: 100px;
  background: transparent;
  color: #F5F0E8;
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

.hero__cta:hover {
  background: #C9A96E;
  border-color: #C9A96E;
  color: #0A0A0A;
}

/* ---- Contact Text ---- */
.hero__contact {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 20px;
}

/* ============================================
   Cinematic Zoom Animation
   ============================================ */
@keyframes cinematic-zoom {
  0% {
    transform: scale(1.0);
  }
  80% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1.0);
  }
}

/* ============================================
   Responsive Adjustments
   ============================================ */

/* Tablet & below: shift background for mobile framing */
@media (max-width: 768px) {
  .hero__bg {
    background-position: 30% center;
  }

  .hero__logo {
    letter-spacing: 4px;
  }

  .hero__cta {
    padding: 14px 32px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__content {
    padding: 20px;
  }

  .hero__subheading {
    max-width: 320px;
  }
}
