/*
Text White == E6E6E6
Text Gray == 878787
*/

img {padding:0px}

/* Global */
.wrapper {
    border: solid 0px orange;
    max-width: 1528px;
    margin-left: auto;
    margin-right: auto;
}

.page {
    border: solid 0px pink;
    margin: 0px 0px;
    padding: 0 16px;
}

/* Header Section */
header-wrapper {

}

.header {
    border: solid 0px green;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 82px 0;
}

.logo-svg {
    border: solid 0px orange;
    flex-grow: 1;
    background-image: url("../images/logo-studio-romann-lt.svg");
    background-repeat: no-repeat;
    background-size: contain; /* Adjust as needed */
    background-size: 100px;
    height: 50px;
    width: 100px;
}

@media (max-width: 520px) {
.header {
    background-image: url("../images/logo-studio-romann-dk.svg");
    background-repeat: no-repeat;
    background-size: contain; /* Adjust as needed */
    background-size: 150px 200px;
    background-position: center center;
    padding: 24px 0 56px 0;
}
.logo-svg {
    display: none;
    }
    
}

.navlogo    {
    height: 50px;
    width: 100px;
}

studio-logo-bg {
    width: 100%;
    height: 100%;
    background-size: 100.02% 91.3%;
    background-position: 0.01% 50%;
    background-repeat: no-repeat;
}

.studio-name {
    border: solid 0px pink;
    flex-grow: 1;
    text-align: center;
}

@media (max-width: 520px) {
.studio-name {
    border: solid 0px pink;
    flex-grow: 1;
    text-align: left;
}
}

.navigation {
    border: solid 0px pink;
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: flex-end;
    font-weight: normal;
    flex-grow: 1;
}

nav-item {
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}

/* --Client List--- */
.work-lists {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.client-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
@media (max-width: 800px) {
.work-lists {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
}

/* Container */
.portfolio-container {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 0;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 16px;
    width: 100%;
}

@media (max-width: 800px) {
.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    width: 100%;
}
}

/* Portfolio Items */
.portfolio-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Portfolio Images */
.portfolio-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    padding: 16px 0 8px 0;
}


/* Hero Header */

.hero-header    {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.hero-text {
    border: solid 0px green;
    flex: 1 2 auto;
    text-align: left;
    padding: 16px 0;
}

/* Hero */

.hero   {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.hero-img   {
    max-width: 100%;
    height: auto;
}

.hero-bb    {
    margin-left: auto;
    margin-right: auto;
}

.shm-bb {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
 
.hero-shm-bb   {
    width: 286px;
    height: 505px;
}

.additional-work    {
    display: flex;
    flex-direction: column;
    gap: 62px;
    margin-bottom: 24px;    
}

/* Description */
.description-section {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap; wrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px 0;
}

.project-description {
    flex: 1 2 100%;
}

@media (max-width: 767px) {
.description-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-wrap; wrap;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 18px;
    line-height: 1.25;
}
}

.project-tags		{
    flex: 1 2 25%;
}


/* Footer Section */
.footer {
    border: solid 0px yellow;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-image: url("/resources/images/branding/sr-logo-dk.svg");
    background-repeat: no-repeat;
    background-size: contain; /* Adjust as needed */
    background-size: 200px 150px;
    background-position: center center;
    height: 150px;
    padding: 32px 0;
    margin-bottom: 68px;
}

.footer-content {
    flex: 1 1 auto;
    border: solid 0px green;
}


.footer-logo-svg {
    flex: 1 1 auto;
    width: 100%;
}

.footer-studio-logo {
    border: solid 0px pink;
    text-align: right;
}

media (max-width: 1024px) {
footer {
    border: solid 0px #41f453;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 64px;
    gap: 24px;
}
}






































