@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    margin: 0;
    background-color: #1F1D29;
}

a:link, a:visited {
    color: inherit; 
}

img {
  max-width: 100%;
}

sup {
    font-size: .7rem;
}

header {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    position: sticky;
    top: 0;
    color: #1F1D29;
    background-color: #EFF2FA;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-top: 4px solid #1F1D29;
    z-index: 1000;
}

h1 {
    font-family: 'PT Serif', serif;
    max-width: 600px; 
    text-align: left; 
    color: #1F1D29;
}

h1 span {
    display: inline-block; 
    text-align: left; 
}

footer {
    display: flex;
    padding: 10px;
    background: #1F1D29;
    color: #fff;
    justify-content: center;
}

.header-link, .header-link a:link, .header-link a:visited {
    height: 30px;
    font-size: 1.5rem;
    text-decoration: none;
    color: #1F1D29;
    font-family: 'Nunito Sans', sans-serif;
}



.sticky-header-bar {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
}

.sticky-header-bar-plain {
    margin: 0 auto;
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
}


.small-logo {
    width: 20px; 
    height: auto; 
    vertical-align: middle; 
    margin-left: 5px; 
}

.hamburger-menu {
    cursor: pointer;
    font-size: 1em;
    color: #898989;
}

.navbar {
    opacity: 0.8;
    display: none;
    position: absolute;
    right: 0; 
    top: 100%; 
    background-color: #fff; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border-radius: 5px; 
    width: 200px; 
 
}

.navbar.show {
    display: block;
}

.navbar a {
    display: block;
    padding: 10px 15px;
    color: #000; 
    text-decoration: none;
}

.navbar a:hover {
    background-color: #f2f2f2; 
}

.top-bar {
    font-family: 'PT Serif', serif;
    text-align: center;
    background-color: #1F1D29;
    color: white;
    padding: 5px;
}

.bar-text {
    font-size: 1em;
}

.header-banner {
    width: 340px; 
    height: auto; 
    vertical-align: center; 
}

.content-section {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #EFF2FA;

}

.sub-content-block {
    max-width: 600px; /* Maximum width of the content block */
    width: 100%; /* Make it responsive, taking up 100% of its parent's width up to 600px */
    margin: auto; /* Center it within its parent */
    text-align: left; /* Text alignment */
    padding: 20px; /* Add some padding inside the block */
    box-sizing: border-box; /* Include padding in the element's total width and height */
}

.sub-content-block h1 {
    margin-top: 20px;
}

.main-button, .main-button:visited {
    font-family: 'Nunito Sans', sans-serif;
    color: #1F1D29;
    display: block; /* Use block to allow margin: auto to center the button */
    width: calc(100% - 40px); /* Adjust width to account for padding */
    max-width: 600px; /* Ensure it does not exceed 600px */
    margin: auto; /* Center the button */
    align-items: center;
    justify-content: center;
    background-color: #FFC925;
    border: none;
    padding: 10px 20px; /* Adjust padding as needed */
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.main-button:hover {
    background-color: #D8DADF;
}

/* Director Profile section formatting */

.profile-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px; /* Adjust gap as needed */
    padding: 10px 0; /* Add some vertical padding */
    max-width: 600px;
    margin: auto;
}

.user-profile {
    width: 100%; 
    margin-bottom: 20px;
    text-align: left;
}

.user-image {
    width: 100%;
    height: auto;
    border-radius: 20%; 
    margin-bottom: 10px;
}

.user-name {
    margin: 5px 0;
    color: #1F1D29; 
}

.social-links a {
    display: inline-block;
}

.social-links img {
    width: 15px; 
    height: auto;
}

/* Rounds Page specific: Accordian Menu's and steplist (large numbering)*/

.accordion-button {
    background-color: #EFF2FA;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Adjusts content to start and end */
    cursor: pointer;
    padding: 0px;
    width: 100%;
    border: none;
    outline: none;
    transition: 0.4s;
    font-family: 'PT Serif', serif;
}

.accordion-button:after {
    content: '\002B'; /* Plus symbol */
    font-size: 20px; 
    line-height: 0; /* Adjust line-height for vertical alignment */
    margin-left: 20px; /* Space between text and symbol */
    transition: transform 0.2s; /* Smooth transform */
}

.accordion-button.active:after {
    content: "\2212"; /* Unicode character for "-" sign */
    transform: rotate(0deg); /* Adjust rotation if desired */
}

.panel {
    padding: 0 18px;
    background-color: #EFF2FA;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.steplist {
  list-style: none; 
  padding: 0; 
  counter-reset: step-counter; 
  padding-left: 25px; 
  padding-top: 10px;
}

.steplist li {
  counter-increment: step-counter; 
  margin-bottom: 15px; 
  font-size: 16px; 
  line-height: 1.5; 
  position: relative; 
  padding-left: 20px; 
    padding-bottom: 10px;
    max-width: 500px;
}

.steplist li::before {
  content: counter(step-counter) ".";
  position: absolute; 
  left: -20px; 
  font-size: 32px; 
  line-height: 32px; 
  font-weight: bold; 
}

/* Program Art specific classes: Artist Content Block*/

.artwork-block {
    display: flex;
    align-items: flex-end; 
    background-color: #EFF2FA;
}

.artwork-block img {
    width: 75%;
    max-height: 93vh; 

    object-fit: scale-down; 
    object-position: center; 
}

.art-details {
    width: 25%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}


.art-details hr {
    border: none;
    height: 1px;
    margin: 10px 0;
    width: 100%; 
    background-color: #76858B;
}

.artist-name {
    color: #76858B;
    font-size: 0.9em;
    margin-bottom: 0px;
    font-style: italic;
}

.art-title {
    color: #1F1D29;
    font-size: h2;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 0px;
}

.medium, .artist-info, .image-use {
    color: #76858B;
    font-size: 0.8em;
    margin-bottom: 5px;
}

.mint-button {
    width: calc(100% - 10px); 
    margin: 5px; 
    background-color: #1F1D29;
    color: white;
    border: none;
    padding: 5px 80px;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'PT Serif', serif;
}

.mint-button:hover {
    background-color: lightgrey;
}

.mint-button a {
    color: #666;
    text-decoration: none;
}

.mint-button a:hover {
    color: #666;
    text-decoration: none;
    cursor: pointer;
}










/* New styles for Artist Page */

.artist-social-links {
    display: flex;
    justify-content: left;
    gap: 6px;
    margin: 5px 0;
}

.artist-social-links img {
    width: 18px;  /* Small, icon-sized images */
    height: auto;
    vertical-align: middle;

    margin: 10px 0;
    padding: 0 6px;
}

.artist-program-round {

    color: #666;
    font-size: 1em;
    text-align: left;
    margin: 6px 0;
    padding: 0 6px;


}

.view-artwork-link {
    text-decoration: none;
    color: #666;
    padding: 5px 6px;
    text-align: left;
    margin-top: 5px;
    border-radius: 5px;
    font-size: 0.9em;
}



.gallery-image-container .artist-social-links a img {
    width: 16px !important; /* Force width */
    height: auto !important; /* Maintain aspect ratio */
    display: inline-block; /* Adjust display property */
}









/* Formatting for PPP Page */

.big-container {
    max-width: 100%;
    margin: auto;
    padding: 10px;
    font-family: 'PT Serif', serif;
    background-color: #EFF2FA;
    text-align: left;
}

.intro-text {
    font-family: 'PT Serif', serif;
    text-align: center;
    color: #1F1D29; 
    padding: 5px; 
    margin: 20px;
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
}



.grid-view .gallery-image-container {
    break-inside: avoid; 
    margin-bottom: 5px;
    width: 100%; 
    padding: 0px; 
    text-align: left; 
    background-color: #EFF2FA; 
    border-radius: 5px; 
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); 
}



.ppp-profile-button {
    background-color: lightgrey; 
    color: white; 
    border: none; 
    padding: 2px 6px; 
    margin-bottom: 5px; 
    margin-left: 5px; 
    margin-right: 5px; 
    border-radius: 3px; 
    cursor: pointer; 
    font-size: 10px; 
}

.ppp-profile-button:hover {
    background-color: #1F1D29; 
}

.ppp-profile-button a {
    color: #666; 
    text-decoration: none; 
}

.ppp-profile-button a:hover {
    color: #666; 
    text-decoration: none; 
    cursor: pointer; 
}

.gallery-image-container {
    width: 100%; /
    text-align: left;
}

.gallery-image-container img {
    width: 100%; 
    height: auto; 
    display: block; 
}

.grid-view .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5px;
}

.ppp-artist-name,
.ppp-art-title {
    color: #666;
    font-size: 0.6em;
    text-align: left;
    margin: 6px 0;
    padding: 0 6px;
}



.grid-view .ppp-artist-name,
.grid-view .ppp-art-title {
    display: block; 
}




.ap-artist-name {
    color: #666;
    font-size: 1em;
    text-align: left;
    margin: 6px 0;
    padding: 0 6px;
    display: block; 
}






/* Formatting for smaller screen sizes below */



@media (max-width: 700px) {
 

.profile-section {
        grid-template-columns: repeat(3, 1fr); /* Keep 3 columns layout for mobile */
        gap: 10px; /* Optionally adjust gap for smaller screens */
    }

    .user-profile {
        width: calc(33.333% - 10px); /* Adjust the width for 3 profiles per row, accounting for the gap */
        margin-bottom: 10px; /* Ensure there's space between rows */
    }

     .content-section, .sub-content-block {
        padding: 0 10px; /* Adjust padding for smaller screens */
    }

    .header-banner, .main-button {
        width: 90%; /* Adjust the width for smaller screens */
        margin: 10px auto; /* Center these elements within their containers */
    }

    .user-profile {
        width: 100%; /* Full width for smaller screens to prevent overflow */
    }


     .navbar {
        width: 100%;
        right: 0;
    }

    .header-link {
        font-size: 1.2rem;
    

    
    .content-section {
        padding: 10px; 
    }


     .user-profile {
        width: 28%; 
        text-align: left; 
    }

    .header-banner {
        width: 80%;
        height: auto; 
    }


    .artwork-block {
        flex-direction: column;
    }

    .artwork-block img {
        width: 100%; 
        max-height: 93vh; 
    }

    .art-details {
        width: 100%;
        padding: 10px;
        box-sizing: border-box; 
        text-align: justify;
    }

    .artist-name, .medium, .artist-info, .image-use {
        font-size: 0.9em; 
    }

    .art-title {
        font-size: h2;
    }

    .mint-button {
        padding: 5px 20px; 
        font-size: 0.8rem; 
    }


    .grid-view .gallery {
        grid-template-columns: 1fr; 
    }

}
/*End of 700px media code *\



