:root {
    --root-bg-main: rgba(255, 255, 255, 1);
    --root-bg-secondary: rgb(0, 0, 0);
    --root-bg-accent: rgba(242, 243, 247, 1);
    --root-bg-accent-secondary: rgba(35, 74, 224, 1);
    --root-color-main: rgb(255, 255, 255);
    --root-color-secondary: rgb(0, 0, 0);
    --root-font-family: "roboto", 'helvetica', arial, sans-serif;
    --root-line-height: 1.25rem;
    --root-font-weight: 400;
    --root-font-weight-med: 600;
    --root-font-weight-bold: 700;
    --root-font-style: normal;
    --font-size-sm: clamp(0.8rem, 0.07vi + 0.78rem, 0.84rem);
    --font-size-base: clamp(1rem, 0.19vi + 0.96rem, 1.13rem);
    --font-size-md: clamp(1.25rem, 0.38vi + 1.16rem, 1.5rem);
    --font-size-lg: clamp(1.56rem, 0.66vi + 1.41rem, 2rem);
    --font-size-xl: clamp(1.95rem, 1.07vi + 1.7rem, 2.66rem);
    --font-size-xxl: clamp(2.44rem, 1.67vi + 2.05rem, 3.55rem);
    --font-size-xxxl: clamp(3.05rem, 2.53vi + 2.46rem, 4.73rem);
}


/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

Set shorter line heights on headings and interactive elements h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.3;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-inline-size: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
  font-family: "roboto", Arial, Helvetica, sans-serif;
  background-color: var(--root-bg-secondary);
  color: var(--root-color-main);
}


.top-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-block: 1rem;
    padding-inline: min(2rem, 4%);
}

.logo-wordmark {
    grid-column-start: 2;
    justify-self: center;
    min-width: 250px;
}

.logo-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    justify-self: center;
}

.social-media-links {
    justify-self: center;
}


/* STYLING FOR MENU WITH TEXT AND MULTIPLE ICONS */

/* .menu-items-stacked {
    grid-column-start: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-self: right;
    padding-right: 2rem;
} */

/* .top-nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
} */

/* .social-media-links {
    display: flex;
    gap: 1rem;
} 
    
/* li {
    text-decoration: none;
    list-style: none;
}

li a {
    text-decoration: none;
}

li:hover {
    text-decoration: underline;
    text-underline-offset: 8px;
    transition: opacity 0.3s ease;
}

ul {
    margin: 0;
    padding: 0;
} */


.social-media-links img {
  max-width: 32px;
}

.main-wrapper {
    max-width: 100%;
    margin: 0 auto;
    width: 1440px;
    padding-inline: min(2rem, 4%);
}

.artist-bio-layout {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    gap: 2rem;
    padding-block: 2rem;
}


.bio-image-container img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.artist-text-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 550px;
}

.artist-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
}

.artist-socials img {
    max-width: 42px;
}

.spotify-widget {
    text-align: center;
}

.spotify-widget iframe {
    min-width: 100%;
}

.artist-name {
    padding-top: 0.2rem;
    letter-spacing: 0.1rem;
}

.artist-bio-text {
    line-height: 1.8rem;
}

@media screen and (min-width: 1024px) {
    .menu-items-stacked {
    grid-column-start: 3;
    justify-self: right;
}
}

.divider-line {
  opacity: 30%;
}

.footer-wrapper {
    padding-block: 2rem;
    background-color: var(--root-bg-secondary);
    text-align: center;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    align-items: center;
}

.footer-layout img {
  justify-self: center;
  padding-block: 1rem;
}

.social-media-links-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.insta-icon-footer {
  max-width: 32px;
  justify-self: center;
  text-align: center;
}

.social-media-links-footer a {
  text-decoration: none;
}
