/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

* {
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    margin-top: 0;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    font-size: 16px;

}

main {
     background-color: #5eff00;
}


.banner {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: 500px;
    background-color: #5eff00;
    justify-content: center;
    align-items: center;
    font-family: "dm-sans", "Helvetica", "sans serif";
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.two-names {
    padding-bottom: 6vw;
}

.featured-title {
    font-weight: 600;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    padding-top: 4vw;
    margin: 0;
}

.description {
    font-family: "dm-sans";
    font-weight: 200;
    position: absolute;
    bottom: 20px;
    left: 30px;
    padding: 10px;
    max-width: 80%;
    box-sizing: border-box;
    text-align: left;
}


.title-banner {
    width: 100%;
    height: auto;
    display: grid;
    margin-left: 30px;
}

.image-caption, .image-caption-1 {
    text-align: left;
    margin-left: 15px; /* Ensure there’s no unnecessary margin pushing the caption */
    display: block; /* Keep block display for control */
    width: 100%;
    margin-top: 7px;
}

.featured-subtitle {
    font-family: "dm-sans", Arial, Helvetica, sans-serif;
    line-height: 10vh;
    padding-top: 7vw;
    padding-bottom: 2vw;
    padding-left: 7vw;
    font-weight: 100;
}
.group {
    display: flex;
    width: 100%;
    gap: 20px;
}


.col-1 {
    width: 60%;
}

.col-2 {
    width: 30%;
}





.description, .article-text-1 {
    max-width: 100%; /* Ensure the content doesn't exceed the viewport */
    overflow-wrap: break-word; /* Break long words */
    word-wrap: break-word;
    word-break: break-word;
}

#article-text-1 {
    font-family: "dm sans", Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

#rooms {
    padding-top: 5vh;
    
}



.image-container-1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0px;
    margin: 0px;
    margin-bottom: 40px;
}



.image-1 {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
}



em {
    font-style: italic;
    font-weight: 200; /* Ensure emphasis is italicized */
}

sup {
    font-size: 0.5rem;
    vertical-align: super;
}


.notes {
    display: flex;
    width: 60%;
    height: auto;
    margin-left: 25vw;
    line-height: 1;
    gap: 20px;
}

.primary-column {
    display: inline-block;
    width:10%;

}

.secondary-column {
    display: inline-block;
    width:45%;
}

.numbers {
  
    margin: 0;
    padding: 0;
    text-align: right; /* Align numbers to the right */
}



.footnotes {
    margin-left: 8vw;
    margin-top: 2vw;
    margin-bottom: 4vw;
}

.info {
    display: flex;
    width: 70%;
    height: auto;
    font-family: "dm-sans", Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 2vw;
    margin-bottom: 4vw;
    line-height: 1;
    gap: 20px;
}

.courtesy {
    display: inline-block;
    width:20%;

}

.artist-bio {
    display: inline-block;
    width: 50%;
}

@media (min-width: 1367px) {
    .info {
        margin-bottom: 4vw;
    }

    #article-text-1{
        font-size: 1.2rem;
    }

   
}

@media (max-width: 1367px) {
    .info {
        margin-bottom: 4vw;
    }

    #article-text-1{
        font-size: 1.1rem;
    }

}

@media (max-width: 1170px) {
    .info {
        margin-bottom: 4vw;
    }

    #article-text-1{
        font-size: 1rem;
    }

    .col-1 {
        width: 50%;
    }
    
    .col-2 {
        width: 45%;
    }

   
@media (max-width: 1024px) {
    .info {
        margin-bottom: 4vw;
    }

    #article-text-1{
        font-size: 1rem;
    }

    .col-1 {
        width: 30%;
    }
    
    .col-2 {
        width: 65%;
    }

}


/* Mobile Phones (Landscape) and small tablets */
@media (max-width: 768px) {
   

    .banner, .group {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center child elements horizontally */
        text-align: center; /* Center text */
    }

    .col-1 {
        width: 80%;
    }

    .col-2 {
        width: 80%;
    }
   
    #article-text-1{
        font-size: 1.2rem;
        text-align: left;
    }




    .two-images, .two-images-2 {
        display: flex;  /* Keep this for flex properties */
        flex-direction: column;  /* Change to column */
        width: 100%;
        height: auto;
        text-align: left;
    }

    .two-images-2 {
        margin-top: 30px;
        margin-left: 0px;
        gap: 30px;
    }
    
    .image-solo {
        display: flex;
        justify-content: flex-start; /* Aligns the solo image */
        width: 100%; /* Full width */
    }


    .image-solo-2 {
        display: flex;
        justify-content: flex-start; /* Aligns the solo image */
        width: 100%;
        padding: 0; /* Full width */
    }

    /* Ensure images also adapt to a column layout */
    .main-image-container, .image-container-1, .image-container-1-1, .image-container-2, .image-container-3, .image-container-4, .image-container-5, .image-container-6, .image-container-7  {
        width: 100%; /* Full width */
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content:  center;
        align-items: center;
        padding: 0px;
        margin: 0px;
        margin-bottom: 40px;
    }


    .image-1, .image-2 {
        width: 100%; /* Ensure images take full width */
        height: auto;
        object-fit: cover;
        object-position: center center;
    }


    .image-4 {
        max-width: 70%; /* Ensure images take full width */
        height: auto;
        object-fit: cover;
        object-position: center;
    }


   

        
        .image-caption-1 {
            padding-left: 15vw;
        }

        .info {
            padding-top: 7vw;
            padding-bottom: 7vw;
            width: 100%;
        }   
    
        .artist-bio {
            width: 70%;
        }
}

/* Mobile Phones (Portrait) */
@media (max-width: 480px) {
   

   .image-solo, .two-images, .two-images-2 {
        display: flex;  /* Keep this for flex properties */
        flex-direction: column;  /* Change to column */
        width: 100%;
        height: auto;
        text-align: left;
    }

    .two-images-2 {
        margin: 0;
        padding: 0;
    }

    .image-container-1, .image-container-2 {
       
        margin-bottom: 7vw;
        
    }



    .image-1, .image-2, .image-3, .image-5, .image-6 {
        width: 100%; /* Ensure images take full width */
        height: auto;
        object-fit: cover;
        object-position: center center;
    }

    .image-4 {
        max-width: 70%; /* Ensure images take full width */
        height: auto;
        object-fit: cover;
        object-position: center;
    }

}