:root {
    --cream: #ede7e2;
    --dark-cream: #dacbbf;
    --dark-green: #354a1d; /*#546343*/
    --brown: #472f29;
    --light-brown: #797270;
    --brown-highlight: #d8d2cf;
    --ocre: #dda15e;
    --copper: #bc6c25;
}

* {
    margin: 0;
    padding: 0;
}

/*Fonts*/
@font-face {
    font-family: 'recoleta';
    src: url('../assets/fonts/recoleta_bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'recoleta';
    src: url('../assets/fonts/recoleta_regular.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'recoleta';
    src: url('../assets/fonts/recoleta_light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

body {
    background-color: var(--cream);
    overflow-x: hidden;
    margin: 0;
    padding: 0;

    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.subhead-typo {
    font-family: 'recoleta', sans-serif;
    font-weight: 700;
}

/*#region header*/
header {
    width: 100%;
    height: 10vh;
    max-height: 1000px;
    background-color: var(--cream);

    position: relative;
}

#header-logo-container {
    background-color: var(--dark-green);

    padding: 50px;

    position: absolute;
    left: -20px;
    top: -40px;
    z-index: 10;

    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;

    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;

    transition: border-radius 0.3s ease;
}
#header-logo-container:hover {
    cursor: pointer;
    border-radius: 48% 52% 60% 40% / 40% 50% 50% 60%;
}

#header-logo {
    max-width: 180px;
}

#header-links-container {
    position: relative;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    width: 100%;
    height: 50px;

    margin-bottom: 20px;
}
#header-links-spacer {
    width: 100%;
}

.header-link {
    color: var(--dark-green);
    text-decoration: none;

    font-size: 1.5em;

    margin-top: 10px;

    transition: 200ms ease;
}
.header-link:hover {
    color: var(--light-brown);
}

#magic-line-container {
    width: 45%;
    max-width: 300px;
}

.magic-line {
    position: absolute;

    height: 2px;

    bottom: 0;
    left: 0;
    
    background-color: var(--brown);
}

#location-container-mobile {
    background-color: var(--dark-cream);
    width: 100%;
    height: 40px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#mobile-menu {
    position: fixed;
    inset: 0; 
    z-index: 9999;
    background-color: var(--dark-cream);

    display: none; 
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#mobile-menu.active {
    display: flex;
}

.mobile-link {
    font-size: 2rem;
    margin: 20px 0;
    text-decoration: none;
    color: var(--dark-green); 
    transform: translateY(20px);
    opacity: 0;
    max-width: 250px;
}

#burger-menu {
    max-width: 60px;
}

#location-container-desktop {
    width: 100%;
}

#location-content-desktop {
    width: 300px;
    text-align: center;

    font-family: 'recoleta', serif;
    font-weight: 500;
    font-size: 1.2rem;

    color: var(--light-brown);
}


/*#endregion*/

/*#region main*/

main {
    flex: 1;
    height: 100%;
    margin-top: 2.5vh;
    
    max-width: 1600px; 
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.main-bg-imgs {
    position: absolute;

    max-width: 600px;

    transform-origin: top center;
}

#bg-img-01 {
    left: -10%;
    width: 525px;
}
#bg-img-02 {
    width: 400px;
}
#bg-img-03 {
    width: 500px;
}

.mirror-container {
    position: absolute;
    transform: scaleX(-1);
    right: -5%;
}
#mirror-01 {
    z-index: 10;
}
#mirror-02 {
    top: 20%;
    right: -10%;
}


#hero-carousel {
    width: 100%;
    height: 40vh;

    position: relative;

    overflow: hidden;

    background-color: white;
}

#carousel-track {
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;

    padding: 16px;

    transform: translateY(-50%);
    background-color: rgba(121, 114, 112, 0.5);
    color: white;
    
    border: none;
    cursor: pointer;

    font-size: 18px;

    transition: background-color 0.3s;
    z-index: 10;
}
.carousel-btn:hover {
  background-color: rgba(121, 114, 112, 0.8);
}
.prev-btn {
    left: 10px;
}
.next-btn {
    right: 10px;
}

#main-content-container {
    width: 100%;
    padding: 2vh 0 5vh 0;
}

#manifest {
    text-align: center;
    font-family: 'recoleta', sans-serif;
}

#manifest-title {
    font-weight: 700;
    font-size: 3rem;
    color: var(--brown);
    
    position: relative;
    display: inline-block;
    z-index: 1;
    
    max-width: 100%; 
    padding: 30px 50px; 
    box-sizing: border-box; 
}
#title-highlight {
    color: var(--dark-green);
}
#manifest-text {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
}

#manifest-title::before {
    content: "";
    position: absolute;
    top: 70%;
    left: 55%;
    transform: translate(-50%, -50%);
    
    width: 85%;  
    height: 110%;
    
    background-color: var(--brown-highlight);
    border-radius: 85% 15% 45% 55% / 60% 25% 75% 40%;
    z-index: -1; 
}

.underlined-title {
    font-family: 'recoleta', sans-serif;

    font-weight: 700;
    font-size: 2.5rem;
    color: var(--brown);
}

.section-link {
    font-family: 'recoleta', sans-serif;

    font-weight: 500;
    font-size: 1.5rem;
}
.section-link a {
    position: relative;

    text-decoration: none;
    color: var(--dark-green);
}
.section-link a:hover {
    color: var(--light-brown);
}
.section-link a::before {
    content: '';
    position: absolute;

    width: 100%;
    height: 2px;

    background-color: var(--brown);
    bottom: -6px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.section-link a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

/*#endregion*/

/*#region footer */

footer {
    background-color: var(--dark-green);

    height: 200px;
    
    padding: 20px;

    font-family: 'arial-nova', serif;
    color: var(--cream);
}

#footer-logo-container {
    width: 50%;
}

#vertical-line {
    background-color: var(--cream);

    width: 2px;
    height: 40px;
}

/*#endregion*/

@media (min-width: 1200px) {
    #header-logo-container {
        position: absolute;
        left: 0;
    }
}