:root {
	/* COLORS */
	--light-surface: #fff2e6;
	--light-surface-container: #f9e9da;
	--light-on-surface-emphasis: #222222;
	--light-on-surface-default:  #603813;
	--light-on-surface-de-emphasis: #da8252;
	--light-on-surface-primary: #da8252;
	--light-divider: #ffe4cc;
	
	/* TYPOGRAPHY */
	--caption-size: 12px;
	/* SPACING */
	
}

.centered {
  display: -webkit-flex;
  display: flex;
  flex-direction:column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

a, a:visited {
	color: var(--light-on-surface-emphasis);
}

h1, h2 {
	color: var(--light-on-surface-primary);
	font-size: 24px;
	line-height: 28px;
	margin-bottom:24px;
	font-family: 'Homemade Apple', sans-serif;
	font-weight: 700;
}
h2 {
	font-size: 20px;
	line-height: 22px;
	margin-bottom: 0px;
	
}
 /* BASE STYLES */
body {
    font-family: 'Merriweather', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
    padding: 0;
    background-color: var(--light-surface);
    color: var(--light-on-surface-default);
}
iframe {
	background: var(--surface-container);
}
.video-container-container {
	display: block;
	margin: 0px 20px 12px 20px;
}
.video-container {
    /* Establishes the aspect ratio using padding */
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9 / 16 * 100) */
    height: 0;
    overflow: hidden;
    max-width: 100%; /* Ensures it doesn't overflow parent container */
    border-radius: 12px;
 
}
.video-container iframe {
    /* Stretches the iframe to fill the container defined by the padding */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.spotify-player-container {
	padding: 0px 20px;
}
.article-text {
	max-width: 40em;
	width: 100vw;
	margin: 24px 24px 24px 24px;
}
.article-text h1 {
	padding: 0px 16px;
}
.article-text p {
	padding: 0px 16px;
}

.image-full-width {
  display: flex;
  width: 100%;
  max-height: 360px; /* Example fixed height for the container */
  overflow: hidden; /* Ensures any cropped parts are hidden */
}
.image-full-width img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}

/*********************************/
/****** STICKY NAV HEADER ********/
/*********************************/
#sticky-nav {
    position: sticky;
    top: 0px;
    z-index: 50;
    background-color: var(--light-surface);
    border-bottom: 1px solid var(--light-divider);
    padding: 4px 0px
}

/* Nav Container for centering and max width */
.nav-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative; /* Needed for absolute positioning of mobile menu */
}

/* Flex layout for the navigation bar */
.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

/* Logo Styling */
#site-logo {
    margin-top:8px;
    margin-bottom:8px;
}
#site-logo img {
    width: 200px;
}

#site-logo .primary-color {
    color: #2563eb; /* Blue color for the accent */
}

/* Mobile Menu Button - Hidden by default on desktop */
#menu-button {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #1f2937;
    border-radius: 9999px;
    transition: 0.3s;
}

/* Navigation Links container (Desktop styles) */
#nav-links {
    /* Desktop Layout */
    margin-left: 2.5rem; /* Space from logo on large screens */
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

/* Default Navigation Item styles */
.nav-item {
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    color: var(--light-on-surface-de-emphasis);
    min-width: 60px;
    margin-right:20px;
    font-size: 12pt;
    font-weight: 400;
    transition: color 0.15s ease-in-out;
    position: relative;
    white-space: nowrap;
    text-align: center;
}

.nav-item:hover {
    color: #a9773a;
}

/* Custom styles for the selected link (from original request) */
.nav-selected {
    font-weight: 600; /* Bold */
    color: #5b3200 !important; /* Darker blue color */
    position: relative;
}

/* Custom underline effect for the selected link (Desktop Only) */
.nav-selected::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px; /* Position below the link */
    width: 100%;
    height: 2px;
    background-color: #a9773a;
    border-radius: 9999px;
}

/* ========================================================= */
/* Bio boxes */
/* ========================================================= */

.bio-container-parent {
	max-width: 900px;
	margin-top: 20px;
}
.bio-container {
	display: flex;
	flex-direction: row-reverse;
	background-color: var(--light-surface-container);
	margin:0px 20px 12px 20px;
	overflow: hidden;
	border-radius: 16px;
}
.bio-image-container {
	flex: 0 0 auto;
	width: 300px;
	overflow: hidden;
}
.bio-image-container img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.bio-text-container {
	display: flex;
	flex-direction: column;
	flex-basis: auto;
	padding: 12px 20px;
}
.bio-text-container h2 {
	
}
.bio-text {
	
}
.bio-text-container a {
	background-color: var(--light-surface);
	padding: 6px 6px;
	border-radius: 8px;
	
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	margin:12px 12px 12px -6px;
	color: var(--light-on-surface-primary);
}
/* ========================================================= */
/* FOOTER */
/* ========================================================= */

footer {
	display: -webkit-flex;
	display: flex;
	flex-direction:column;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	background-color: var(--light-surface-container);
	padding: 24px 24px 24px 24px;
	color: var(--light-on-surface-default);
}
.footer-content {
	width: 100%;
	max-width: 40em;
	-webkit-align-items: flex-start;
	align-items:flex-start;
	-webkit-justify-content: flex-start;
	justify-content:flex-start;
}
footer ul {
	list-style: none;
	padding: 0px;
	margin: 0px;	
}
footer li {
	font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    color: var(--light-on-surface-primary)
}
footer a, footer a:visited {
	color: var(--light-on-surface-primary);
}
footer .centered {
	webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin-top:48px;
	color: var(--light-on-surface-de-emphasis);
	font-size: var(--caption-size);
}

/* ========================================================= */
/* Mobile Viewport Styles (Below 500px) */
/* ========================================================= */
@media (max-width: 600px) {
    body {
	    font-size: 14px;
    }
    h1 {
	    font-size: 22px;
		line-height: 36px;
		margin-bottom:24px;
    }
    h2 {
	    font-size: 18px;
	    line-height: 24px;
	    margin-bottom:0px;
    }
	.bio-container {
		flex-direction: column;
		padding-bottom: 16px;
	}
	.bio-image-container {
		width: 100%;
	}
    /* Show the hamburger menu button and push it to the right */
    #menu-button {
        display: block;
        margin-left: auto; 
    }
    .video-container-container {
		margin: 0px 16px 12px 16px;
	}
    .spotify-player-container {
		padding: 0px 16px;
	}
	
    /* Hide the desktop nav links by default */
    #nav-links {
        display: none; 
        
        /* Full width dropdown positioning */
        position: absolute;
        top: 100px; /* Below the 64px header height */
        left: 0;
        right: 0;
        width: 100%;
        
        /* Vertical layout */
        flex-direction: column;
        background-color: white;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e5e7eb;
        
        /* Remove desktop layout properties */
        margin-left: 0;
        gap: 0;
    }
    
    /* Toggle state: Show the menu */
    #nav-links.menu-open {
        display: flex;
    }
    
    /* Make links full width and block-level */
    .nav-item {
        display: flex;
        align-items: center;
        padding: 12px 24px;
        text-align: left; 
        color: #444;
        font-weight: 400;
        font-size: 16pt;
        width: 100%;
        min-height:44px
    }
    
    .nav-item:hover {
        background-color: #fffbee;
    }
    
    /* Adjust selected style for mobile dropdown */
    .nav-selected::after {
        content: none; /* Remove desktop underline */
    }
    .nav-selected {
        background-color: #fff6d8; /* Light gold background for selected item */
        color: #5b3200 !important;
    }
    .nav-flex {
	    height: 96px;
    }
   
    #site-logo img {
	    width: 140px;
    }
}