

:root {
	/* COLORS */
	--light-surface: #fffbfa;
	--light-surface-container: #f7f2e8;
	--light-surface-container-primary: #ffecb3;
	--light-surface-container-button: #e6b245;
	--light-on-surface-emphasis: #1f1b13;
	--light-on-surface-default: #4a463e;
	--light-on-surface-de-emphasis: #7a766d;
	--light-on-surface-primary: #805600;
	--light-on-surface-link: #005FAF;
	--light-on-surface-inverted: #FFFFFF;
	--light-divider: #D0c6b5;
	
	/* TYPOGRAPHY */
	--body-size: 16px;
	--body-lg-size: 18px;
	--title-sm-size: 12px;
	--title-lg-size: 14px;
	--caption-size: 12px;
	/* SPACING */
	
	/* ANIMATED HEADER COLORS */
	 --brand-glow: #FFF0C2;
	 --brand-tint: #FFF9F2;
	 --surface-white: #FFFBFA;
	 --arch-divider: #E6E0D5;
	
}


/* Shifting Light Keyframes */
@keyframes shiftingLight {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

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

.homepage {
	margin-top: -58px;
	margin-bottom:12px;
}
.homepage .divider {
	width: 100%;
	height: 2px;
	background-color: var(--light-surface-container);
}

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

h1, h2 {
	color: var(--light-on-surface-primary);
	font-size: 28px;
	line-height: 32px;
	margin-bottom: 24px;
	font-family: 'DM Serif Display', sans-serif;
	font-weight: 600;
}
h2 {
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 0px;
	
}
 /* BASE STYLES */
body {
    font-family: 'Merriweather', sans-serif;
    font-weight: 400;
    font-size: var (--body-size);
    line-height: 24px;
    margin: 0px;
    padding: 0px;
    background-color: var(--light-surface);
    color: var(--light-on-surface-default);
}
.page-content {
	margin-top: 120px;
}
ul, li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

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: 100%;
	margin: 24px 24px 24px 24px;
}

.article-text section {
	padding: 0px 20px;
}
.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;
}
.round-top-corners {
	border-radius: 16px 16px 0px 0px;
}
.bigButton {

	display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;  
    min-width: 200px; 
    padding: 8px 12px;  
    background-color: var(--light-surface-container-primary); /* #ffc64d */
    color: var(--light-on-surface-primary); /* High-contrast text */
    text-decoration: none;
    font-family: 'Montserrat', sans-serif; /* Recommended button font */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    
    transition: all 0.1s ease-in-out;
    border: 2px solid transparent;
}

.bigButton:hover {
    background-color: #e6b245; /* Slightly darker gold */
 
}

/*********************************/
/****** STICKY NAV HEADER ********/
/*********************************/

#sticky-nav {
	position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 90;  
    width: 100%;
    background-color: var(--light-surface);
    
    /* Smooth transition for any interactions */
    transition: padding 0.3s ease;
}
/* Nav Container for centering and max width */
.nav-container {
  padding-left: 20px;
  padding-right: 16px;
  text-align: center;
}

.site-header {
}

.header-content { 
}


/* 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-container .bigButton {
	background-color: var(--light-surface-container-button);
	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-emphasis);
}
.bio-container .bigButton:hover {
	background-color: var(--light-surface-container-primary);
}

.events-list { 
	list-style: none; 
	padding: 12px 0px 24px 0px ; 	
}

.event-item { 
	display: flex; 
	flex-direction: row;
	justify-content: space-between; 
	align-items: center; 
	background-color: var(--light-surface-container);
	border-radius: 8px;
	margin-bottom: 12px;
}
.event-item:last-child {
	margin-bottom: 0px;
}

.event-details { 
	flex-grow: 1;
	padding-left: 12px;
}
.event-actions {
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	padding: 12px 12px;
}
.event-actions > *:last-child {
	margin-bottom: 0px;
}
.event-date { 	
	color: var(--light-on-surface-emphasis);
	font-size: var(--title-sm-size);
	margin-bottom: 0px;
	text-transform: uppercase;
}
.event-venue { 
	font-size: var(--body-size);
	color: var(--light-on-surface-default);
	font-weight: 600;
}
.event-location {
	color: var(--light-on-surface-emphasis);
	font-size: var(--body-lg-size);
	font-weight: bold;
	
}

.ticket-link, .map-link { 
	background-color: var(--light-surface);
	padding: 6px 6px;
	border-radius: 8px;	
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--light-on-surface-primary); 
	text-align: center;
	margin-bottom: 8px;
}

.past-event { 
	opacity: 1 
}
/* ========================================================= */
/* 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 700px) */
/* ========================================================= */
@media (max-width: 700px) {
    body {
	    font-size: 15px;
	    line-height: 28px;
    }
    h1 {
	    font-size: 24px;
		line-height: 36px;
		margin-bottom:24px;
    }
    h2 {
	    font-size: 20px;
	    line-height: 24px;
	    margin-bottom:0px;
    }
    .page-content {
	    margin-top: 96px;
    }
    .article-text {
	    padding: 0px 16px;
    }

	.bio-container {
		flex-direction: column;
		padding-bottom: 0px;
	}
	.bio-image-container {
		width: 100%;
	}
    /* Show the hamburger menu button and push it to the right */
    #menu-button {
        display: block;
        margin-left: auto; 
    }

    .bigButton {
	    display: flex;   /* Switch to block-level flex */
        width: 100%;     /* Stretch to full width of container */
    }
    .video-container-container {
		margin: 0px 0px 12px 0px;
	}
    .spotify-player-container {
		padding: 0px 0px;
	}

    /* Hide the desktop nav links by default */
    #nav-links {
        display: none; 
   
        /* Full width dropdown positioning */
        position: absolute;
        top: 96px; /* 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: 0px;
        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: 120px;
    }
}