/* Base */
:root {
  --page-max-width: 1200px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-6: 24px;
  --spacing-10: 40px;
  --accent: #ff7a00; /* orange */
  --text: #0a0a0a;
  --muted: #6b7280;
  --bg: #ffffff;
  --surface: #f6f7f9;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius-xl: 24px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.page {
  /*max-width: var(--page-max-width);*/
  margin: 0 auto;
  padding: 48px 30px 30px;
  width: 100%;
}
/* Header / Title */
header { text-align: center; }
.title {
  margin: 0 0 var(--spacing-10);
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
}

.title .accent { color: var(--accent); }

/* CTA */
.cta {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 160ms ease;
  background: rgba(255, 122, 0, 0.08);
}

.cta:hover { background: var(--accent); color: white; }

/* Visual block */
.visual { 
    margin-top: 48px; 
    background-image: url(img/bg_M.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    display: block;
    width: 100%;
    height: 100%;
}

.bands {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    width: 100%;
    height: 100%;
    min-height: 500px;
    flex-wrap: wrap;
    align-content: center;
}
.bands img {
    width: 100%;
    height: 100%;
    max-width: 430px;
}
.bands img.band-1 {
    max-width: 400px;
}
.bands img.band-2 {
    max-width: 300px;
}


/* Small screens tweaks */
@media (max-width: 480px) {
body { align-items: flex-start; }
  .page { padding: 28px 16px 40px; }
  .cta { padding: 9px 16px; }
}

@media (max-height: 760px) {
    body { align-items: flex-start; }
  }


