* {
box-sizing: border-box;
}
body {
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url("Graphics/IMG_1091\ CS\ Hat\ NM\ Crop\ for\ desktop\ 4005x3889.JPG");
    background-color: #222;
    background-size: cover;       /* fill the screen */
    background-position: top center;  /* centeres */
    background-repeat: no-repeat; /* prevents tiling */
    color: white;
}
.container{
  display:grid;
  grid-template-rows: auto 1fr auto;
  height:100vh;
}
/* NAVBAR BASE */
nav {
    width: 100%;
    background: #222;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

@font-face {
  font-family: myFont;
  src: url(./Graphics/Fonts/BAUHS93.TTF);
  font-weight: bold;
}

.logo{
    font-family: myFont;
}
nav a {
    color: inherit;          /* same color as surrounding text */
    text-decoration: none;   /* remove underline */
    font-weight: normal;     /* optional: keep it unbolded */
    transition: 0.2s ease;   /* smooth hover */
}

nav a:hover {
    color: #fff;             /* or whatever highlight color you want */
    text-decoration: underline; /* optional hover underline */
}


.logo {
    font-size: 1.3rem;
    font-weight: bold;
}

/* NAV LINKS */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li {
    cursor: pointer;
    white-space: nowrap;
}

/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* MOBILE NAV HIDDEN BY DEFAULT */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #222;
        padding: 10px 0;
        margin-top: 10px;
    }

    nav ul.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* DESKTOP VIDEO LAYOUT */
.row {
    display: flex;
    justify-content: space-between;   /* left column left, right column right */
    align-items: flex-start;
    padding-top: 50px;
    padding: 20px;
    gap: 400px;  
}

.left-column,
.right-column {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.video-wrapper {
    width: 100%;
    max-width: 350px;
}

iframe {
    width: 100%;       
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 10px;

}
.spotify-embed {
    padding-top: 0px;
    display:flex;
    width: 50%;
    margin: 0 auto;
}

.bio-text{
    text-align: center;
    width: 75%;
}

h1{
    text-align: center;
}


/* MOBILE CAROUSEL */
@media (max-width: 768px) {
    body{
        margin: 0;
        font-family: Arial, sans-serif;
        background-image: url("Graphics/IMG_1091\ CS\ Hat\ NM\ Crop\ for\ iPhone\ 1800x3200\ \(1\).JPG");
        background-size: cover;       /* fill the screen */
        background-position: top center;  /* centeres */
        background-repeat: no-repeat; /* prevents tiling */
        color: white;        
    }


    .row {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;   /* stack vertically */
        overflow-x: visible;      /* no horizontal scroll needed */
        scroll-snap-type: none;   /* disable carousel if not needed */
        gap: 30px;
    }
    

}

.site-footer {
    width: 100%;
    padding: 10px 10px;
    font-size: 0.85rem;/* or whatever fits your theme */
    text-align: center;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-socials img{
    width: 60px;
}