@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Inter:wght@300;400;500&display=swap');

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

:root {
    --gold: #C9A84C;
    --dark: #0D0D0D;
    --card: #161616;
    --border: #2a2a2a;
    --text: #E0E0E0;
    --muted: #888;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.7;
}

/* - HERO - */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
    background-image: url('img/migo-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* - dark overlay text is readable - */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.45) 50%,
        rgba(13,13,13,0.92) 100%
    );
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 23vw, 12rem);
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    text-shadow: 0 4px 24px rgba(0,0,0,0.7);
}

.hero-tagline {
    font-size: clamp(0.85rem, 2vw, 1rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 10px;
    font-weight: 600;
}

.hero-location {
    margin-top: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-cta {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 13px 32px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid var(--gold);
}

.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: #e5bf6a; border-color: #e5bf6a; }
.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #000; }

/* PHOTO SLIDER */
.photos {
  background: var(--dark);
}

.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 6px;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: var(--gold);
}


/* - Sections - */

section { padding: 80px 24px; }

.container { max-width: 960px; margin: 0 auto; }

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.2;
}

.divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 32px;
}

/* - about - */
.about { background: var(--dark); }

.about p {
    font-size: 1.25rem;
    color:#bbb;
    max-width: 680px;
    line-height: 1.9;
}

/* - soundcloud player - */
.soundcloud-embed {
  margin-top: 36px;
  max-width: 680px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 0 6px var(--dark);
  transition: border-color 0.2s;
}

.soundcloud-embed:hover {
  border-color: var(--gold);
}

/* - genres - */
.genres { background: #111;}

.genre-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.genre-tag {
    padding: 8px 20px;
    border: 1px solid var(--border)
}

.genre-tag {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s;
}

.genre-tag:hover { border-color: var(--gold); color: var(--gold); }

/* venues and events */
.resume { background: var(--dark); }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 640px) {
    .hero {
        background-size: 250%; /* zoom in more for small screens */
        background-position: center center;
    }
    
    .two-col {
        grid-template-columns: 1fr; /* your existing rule */
    }
}

.resume-block h3 {
    font-family: 'montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.resume-list { list-style: none; }

.resume-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resume-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* - contact - */
.contact { background: #111; text-align: center; }

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px 36px;
    min-width: 220px;
    transition: border-color 0.2s;
}

.contact-card:hover { border-color: var(--gold); }  

.contact-card .icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.contact-card .label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-card .value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
    word-break: break-all;
}

.contact-card a { color: var(--gold); text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }   

/* - footer - */
footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 28px 24px;
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

footer span { color: var(--gold); }