/* =============================================
   PRINT POWER EXPERIENCE — styles.css
   Brand: dark (#1a1a1a) + blue (#036EEE)
   Fonts: Bebas Neue / Barlow Condensed / Barlow
   Mobile-first, breakpoints: 480 / 768 / 1024 / 1280px
   ============================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- CSS Custom Properties --- */
:root {
  --color-bg: #1a1a1a;
  --color-bg-dark: #0d0d0d;
  --color-bg-card: #2a2a2a;
  --color-accent: #036EEE;
  --color-accent-hover: #2585ff;
  --color-text: #ffffff;
  --color-text-muted: #cccccc;
  --color-text-dim: #999999;
  --color-border: #333333;
  --color-success: #28a745;
  --color-error: #dc3545;
  --font-heading: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-subheading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', Arial, sans-serif;
  --section-padding: 72px 20px;
  --max-width: 1200px;
  --nav-height: 70px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg-dark);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.main-nav.scrolled {
  background: rgba(13, 13, 13, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-logo img {
  max-height: 50px;
  width: auto;
}

/* Mobile: nav-menu hidden by default */
.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-bg-dark);
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
  gap: 0;
}

.nav-menu.open {
  display: flex;
}

.nav-menu a {
  color: var(--color-text);
  padding: 12px 0;
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s ease;
}

.nav-menu a:last-child {
  border-bottom: none;
}

.nav-menu a:hover {
  color: var(--color-accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  font-size: 0.9rem;
  padding: 10px 20px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X when active */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Desktop nav */
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    border: none;
    gap: 24px;
    align-items: center;
  }

  .nav-menu a {
    padding: 4px 0;
    border: none;
    font-size: 1rem;
  }

  .hamburger {
    display: none;
  }

  .nav-cta {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-accent-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(3, 110, 238, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--color-accent);
  color: #ffffff;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.2rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../assets/hero.webp') center center / cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-pretitle {
  display: block;
  font-family: var(--font-subheading);
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 0.95;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-family: var(--font-subheading);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-event-data {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 40px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--color-text-muted);
  font-family: var(--font-subheading);
}

.hero-event-data span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-event-data svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

/* =============================================
   SECTION BASE
   ============================================= */
.section {
  padding: var(--section-padding);
}

.section > *:not(.section-cta) {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-dark {
  background: var(--color-bg-dark);
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  text-align: center;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-family: var(--font-subheading);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* =============================================
   FEATURES GRID (Section 2)
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 0;
}

.feature-card {
  background: var(--color-bg-card);
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.feature-card h3 {
  font-family: var(--font-subheading);
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   EQUIPMENT GRID (Section 3)
   ============================================= */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.equipment-card {
  background: var(--color-bg-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: border-color 0.3s ease;
}

.equipment-card:hover {
  border-color: var(--color-accent);
}

.equipment-image {
  aspect-ratio: 16 / 9;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-body {
  padding: 20px;
}

.equipment-body h3 {
  font-family: var(--font-subheading);
  font-size: 1.2rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.equipment-body p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.equipment-body .btn {
  margin-top: 14px;
  font-size: 0.8rem;
  padding: 8px 20px;
}

@media (min-width: 768px) {
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .equipment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =============================================
   MASTERCLASS (Section 4)
   ============================================= */
.masterclass-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.instructor-photo {
  aspect-ratio: 3 / 4;
  background: var(--color-bg-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  margin: 0 auto;
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masterclass-text h3 {
  font-family: var(--font-subheading);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--color-accent);
  letter-spacing: 0.5px;
}

.masterclass-text p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.session-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
  padding: 20px;
  background: var(--color-bg-card);
  border-radius: 8px;
  border-left: 3px solid var(--color-accent);
}

.session-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.session-label {
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  min-width: 80px;
}

.session-date {
  color: var(--color-text);
  font-family: var(--font-subheading);
  font-size: 1.05rem;
}

@media (min-width: 768px) {
  .masterclass-content {
    grid-template-columns: 1fr 1.6fr;
  }

  .instructor-photo {
    max-width: 100%;
    margin: 0;
  }
}

/* =============================================
   LOCATION (Section 5)
   ============================================= */
.location {
  text-align: center;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  align-items: center;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-family: var(--font-subheading);
  text-align: left;
  max-width: 500px;
}

.location-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

.location-item strong {
  color: var(--color-text);
  display: block;
  margin-bottom: 2px;
}

.map-container {
  height: 400px;
  border-radius: 8px;
  margin-top: 32px;
  border: 1px solid var(--color-border);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.map-container:hover {
  filter: grayscale(60%);
  -webkit-filter: grayscale(60%);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================
   TARGET AUDIENCE (Section 6)
   ============================================= */
.target-audience {
  text-align: center;
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: left;
}

.audience-list li {
  padding: 12px 16px 12px 42px;
  position: relative;
  background: var(--color-bg-card);
  border-radius: 4px;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.audience-list li:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

.audience-list li::before {
  content: "→";
  color: var(--color-accent);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}

@media (min-width: 768px) {
  .audience-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   FAQ (Section 7)
   ============================================= */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px 20px 0;
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  list-style: none;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.3s ease, content 0.3s ease;
  line-height: 1;
  font-family: var(--font-body);
  font-weight: 300;
}

details[open] .faq-question {
  color: var(--color-accent);
}

details[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* =============================================
   REGISTRATION FORM (Section 8)
   ============================================= */
.registration {
  background: var(--color-bg-dark);
  text-align: center;
}

.registration h2 {
  margin-bottom: 8px;
}

#registration-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label:not(.radio-label) {
  display: block;
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23cccccc' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--color-bg-card);
  color: var(--color-text);
}

.form-group input:not([type="radio"]):focus,
.form-group select:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 2px rgba(3, 110, 238, 0.2);
}

.form-group input:not([type="radio"]).error,
.form-group select.error {
  border-color: var(--color-error);
}

.form-group input:not([type="radio"])::placeholder {
  color: var(--color-text-dim);
}

.field-error {
  display: block;
  color: var(--color-error);
  font-size: 0.85rem;
  margin-top: 4px;
  min-height: 1.2em;
  font-family: var(--font-body);
}

/* Masterclass session selector */
.masterclass-optional {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-text-dim);
}

.masterclass-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s;
}

.radio-label:hover {
  border-color: var(--color-accent);
  background: rgba(3, 110, 238, 0.05);
}

.radio-label input[type="radio"] {
  appearance: auto;
  -webkit-appearance: radio;
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
  margin: 0;
}

.radio-label input[type="radio"]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.radio-label input[type="radio"]:disabled + span,
.radio-label:has(input:disabled) {
  opacity: 0.5;
  cursor: not-allowed;
}

.mc-status {
  font-size: 0.8rem;
  margin-left: auto;
  font-weight: 600;
}

.mc-full {
  color: var(--color-error);
}

.mc-available {
  color: #22c55e;
}

.form-error {
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid var(--color-error);
  color: var(--color-error);
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 0.95rem;
}

/* RGPD checkbox */
.form-group-checkbox {
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}

.checkbox-label input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--color-accent);
  margin-top: 2px;
  cursor: pointer;
  padding: 0;
}

.checkbox-label a {
  color: var(--color-accent);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
}

/* Spinner */
.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 16px auto 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Registration success */
.registration-success {
  text-align: center;
  padding: 60px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  max-width: 500px;
  margin: 0 auto;
}

.registration-success.visible {
  opacity: 1;
  transform: translateY(0);
}

.registration-success h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.registration-success p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-success);
  color: #ffffff;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  line-height: 1;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-bg-dark);
  padding: 60px 20px 30px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  max-height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-logo img:hover {
  opacity: 1;
}

.footer-logo-placeholder {
  display: flex;
  align-items: center;
}

.footer-brand-text {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-text-dim);
  text-transform: uppercase;
}

.footer-contact {
  margin-bottom: 16px;
}

.footer-contact a {
  color: var(--color-text-muted);
  font-family: var(--font-subheading);
  font-size: 1rem;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--color-text);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copyright {
  color: var(--color-text-dim);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* 480px — small phones landscape / large portrait */
@media (min-width: 480px) {
  :root {
    --section-padding: 80px 28px;
  }

  .hero-event-data {
    gap: 20px 32px;
  }
}

/* 768px — tablet */
@media (min-width: 768px) {
  :root {
    --section-padding: 96px 40px;
  }

  .hero-title {
    font-size: clamp(4rem, 10vw, 7rem);
  }
}

/* 1024px — small desktop */
@media (min-width: 1024px) {
  :root {
    --section-padding: 112px 60px;
  }
}

/* 1280px — wide desktop */
@media (min-width: 1280px) {
  :root {
    --section-padding: 120px 80px;
  }

  .hero-title {
    font-size: 7rem;
  }

  .section h2 {
    font-size: 3.5rem;
  }
}

/* No horizontal scroll */
body {
  overflow-x: hidden;
}
