:root {
    /* GREEN (Primary / Brand color: 1B4D3E) */
    --green-100: #eaf5f1;
    --green-200: #c2dad0;
    --green-300: #97c5b6;
    --green-400: #47906a;
    --green-500: #1b4d3e; /* Base color */
    --green-600: #164033;
    --green-700: #102e24;
    --green-800: #091e16;
    --green-900: #05100b;

    /* RED (Secondary: 690B22) */
    --red-100: #f6e9eb;
    --red-200: #e7c3c9;
    --red-300: #d495a0;
    --red-400: #a43952;
    --red-500: #690b22; /* Base color */
    --red-600: #5d0a1e;
    --red-700: #470817;
    --red-800: #320510;
    --red-900: #1c0308;

    /* YELLOW/ORANGE (Error / Accent color: E07A5F) */
    --yellow-100: #fbece9;
    --yellow-200: #f4c7bb;
    --yellow-300: #edb09b;
    --yellow-400: #e5927c;
    --yellow-500: #e07a5f; /* Base color */
    --yellow-600: #c85b40;
    --yellow-700: #b24a32;
    --yellow-800: #9c3824;
    --yellow-900: #852614;

    /* NEUTRAL (Tertiary / Background color: F1E3D3) - Nova skala */
    --neutral-100: #ffffff;
    --neutral-200: #fdf6f1;
    --neutral-300: #f7ebe1;
    --neutral-400: #f3e6da;
    --neutral-500: #f1e3d3; /* Base color */
    --neutral-600: #e8d5c3;
    --neutral-700: #d1beaa;
    --neutral-800: #a99683;
    --neutral-900: #7d6956;

    --header-bg: var(--green-700);
    --main-bg: var(--neutral-200);
    --text-color: var(--green-900);
    --link-color: var(--neutral-100);
    --link-hover-color: var(--yellow-400);
    --button-bg: var(--red-500);
    --button-hover-bg: var(--red-600);
    --button-text: var(--neutral-100);
}

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

html,
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Vend Sans";
    font-size: 20px;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--main-bg);
    min-height: 700px;
}

header {
    background-color: var(--neutral-300);
    width: 100%;
    position: fixed;
    z-index: 10;
}

.banner {
    display: flex;
    justify-content: space-between;
    justify-items: baseline;
    padding: 1rem 2rem;
}

nav {
    margin-top: 3rem;
}

@media all and (max-width: 460px) {
    .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .banner h1 {
        font-size: 1.5rem;
    }
    .welcome-text-fixed {
        font-size: 1.10rem;
    }


}

.banner ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.hamburger-menu {
    display: none;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 0.25rem;
}

.banner nav a {
    text-decoration: none;
    color: var(--text-color);
    padding: 0 10px;
}

@media all and (max-width: 890px) {
    
    .banner nav {
        display: none;
    }
    .hamburger-menu {
        display: block;
        cursor: pointer;
        margin-top: 2rem;
        margin-right: 2rem;
        margin-bottom: 0.5rem;
    }
    .banner nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 8rem;
        width: 100%;
        height: 100vh;
        left: 0;
        z-index: 10;
        background-color: var(--neutral-300);
    }
    .banner nav.open ul {
        flex-direction: column;
    }
    .banner nav.open ul li {
        text-align: center;
        padding: 10px 0;
        border-top: 1px solid var(--neutral-300);
    }
}

#main-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#greeting {
    text-align: center;
    font-size: 2.5em;
    color: var(--red-600);
    padding: 1rem;
    margin-bottom: 3rem;
}

.intro-text {
    padding: 0 2rem;
    line-height: 2;
}

.welcome-text-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding-top: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 5;
    background-color: var(--main-bg);
}
.welcome-text-fixed p {
    max-width: 80%;
    margin-bottom: 1rem;
}



.map-scroller {
    margin-top: 100vh;
    width: 100%;
    z-index: 7;
    position: relative;
    background-color: var(--main-bg);
}

.map-screenshot-section {
    width: 100%;
    min-height: 400px;
    background-image: url("img/CTA-map.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

h3 {
    text-align: center;
}

.rest-of-content {
    padding: 2rem 10rem;
    background-color: var(--main-bg);
    line-height: 2;
    text-align: justify;
}

.rest-of-content h2 {
    text-align: center;
}

.gallery {
    margin: 0;
    gap: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 20rem;
    width: 100%;
    align-items: stretch;
    margin-bottom: 5rem;
}

.gallery-img {
    flex: 4;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media all and (max-width: 700px) {
    .rest-of-content {
        padding: 2rem 1rem;
        font-size: 1.15rem;
        line-height: 1.8;
        padding-bottom: 5rem;
    }
    .big-screen-img {
        display: none;
    }
    .gallery {
        display: flex;
        flex-flow: row wrap;
    }
    .gallery-img {
        flex: 1 1 25%;
    }
}

.CTA-button {
    text-decoration: none;
    display: inline-block;
    padding: 1.5rem 3rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--button-text, white);
    background-color: var(--button-bg);
    border-radius: 5px;
    cursor: pointer;
}

.CTA-button:hover{
    background-color: var(--red-400);
}
footer {
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    background-color: var(--green-700);
    color: var(--neutral-100);
    position: relative;
    z-index: 15;
}
.breadcrumbs {
    width: 100%;
    max-width: 1200px;
    margin: 1rem;
    text-align: left;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.breadcrumbs li + li:before {
    content: "/";
    padding: 0 0.5rem;
    color: var(--text-color);
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--green-600);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs li {
    color: var(--red-500);
    font-weight: bold;
}

#sightseeing {
    margin-top: 10rem;
    padding: 2rem;
}
.food-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    text-align: justify;
    padding: 1rem;
}

@media all and (min-width: 1395px) {
    .back-food {
        display: none;
    }
}

@media all and (max-width: 1394px) {
    .food-container {
        display: flex;
        flex-direction: column;
    }
    .back-food {
        display: none;
    }
}

@media all and (max-width: 875px) {
    .food-container {
        display: flex;
        flex-direction: column;
        padding-left: 1rem;
    }
    .breadcrumbs {
        margin-top: 2rem;
    }
}

.sightseeing-grid {
    padding: 3rem 2rem;
    max-width: 1200px; 
    margin: 2rem auto; 
}

.sightseeing-grid h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--green-700);
    font-size: 2.5rem;
}

.grid-item {
    display: flex;
    align-items: center; 
    margin-bottom: 4rem; 
    gap: 2rem; 
    background-color: var(--neutral-300);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.grid-image {
    flex: 0 0 40%;
    max-width: 40%; 
}

.grid-image img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    border-radius: 4px;
}

.grid-description {
    flex: 1; 
    padding: 1rem 0;
}

.grid-description h3 {
    text-align: left;
    color: var(--red-600);
    margin-top: 0;
    font-size: 1.8rem;
}

.grid-description p {
    line-height: 1.8;
}

.grid-description ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    font-size: 0.95em;
}

.grid-description ul li {
    margin-bottom: 0.5rem;
    color: var(--green-900);
}

.grid-item.reverse-order {
    flex-direction: row-reverse;
}

@media all and (max-width: 900px) {
    .grid-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        margin-bottom: 3rem;
    }

    .grid-item.reverse-order {
        flex-direction: column; 
    }

    .grid-image {
        flex: 1 1 100%; 
        max-width: 100%; 
        margin-bottom: 1rem;
    }

    .grid-image img {
        height: 200px;
    }

    .grid-description {
        padding: 0.5rem 0;
    }

    .grid-description h3 {
        text-align: center;
        font-size: 1.5rem;
    }
}


#transport {
    margin-top: 10rem;
    text-align: justify;
    line-height: 2rem;
}

@media all and (max-width: 840px) {
    #transport .breadcrumbs {
        margin-top: 13rem;
    }
}

#transport h3 {
    text-align: center;
}

.transport-facts {
    padding: 1rem 5rem;
}

.transport-div {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 1rem 5rem;
}

.transport-menu {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1rem;
    background-color: var(--neutral-400); 
    border-radius: 5px;
}

#transport-options {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 2rem; 
}

#transport-options a {
    text-decoration: none;
    color: var(--green-700);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 1px solid var(--green-400);
    border-radius: 20px; 
}

#transport-options a:hover {
    background-color: var(--green-200);
}
.back-to-top {
    text-align: end;
}
#parking{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.CTA-garage {
    color: var(--button-text);
    background-color: var(--button-bg);
    border: none;
    padding: 0.3rem 2rem;
    margin: 0;
    width: fit-content;
    border-radius: 5px;
    text-decoration: none;
    align-self: center;
    text-align: center;
}

#train {
    display: flex;
    flex-direction: row;
    gap: 3rem;

}
#bus {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
}
@media all and (max-width: 910px) {
    #train {
        display: flex;
        flex-direction: column;
    }
}
.vienna-bus {
    float: right;
    width: 100%;
    height: auto;
    max-width: 500px;
    margin-top: 2rem;
    border-radius: 3px;
}
@media all and (max-width: 1600px) {
    #bus {
        display: flex;
        flex-direction: column;
    }
}
#dance-page {
    margin-top: 10rem;
}

@media all and (min-width: 821px) {

    #dance-page-fixed {
        height: 100vh; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 5;
        overflow: hidden;
    }

    #dance-page-fixed 
    .vienna-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    #dance-page-content {
        margin-top: calc(100vh - 2rem); 
        z-index: 6; 
        position: relative; 
        background-color: var(--neutral-100); 
        padding-top: 2rem; 
    }
}

@media all and (max-width: 820px) {
    #dance-page-fixed {
        position: relative; 
        height: auto;
    }
    
    #dance-page-content {
        margin-top: 0;
        z-index: 10;
        padding-top: 0;
    }
}

#dance-page-content {
    background-color: var(--neutral-300);
}


.dancing-list {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: var(--neutral-300);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dancing-list ul {
    list-style-type: none;
}

.dancing-list a {
    text-decoration: none;
    color: var(--red-700)
}

@media all and (max-width: 700px) {
    
    .dancing-list {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}


#review {
    margin-top: 10rem;
}

.review-form {
    margin: 3rem;
    line-height: 3rem;
}

.vienna-img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    box-shadow: inset 0 0 30px 10px rgba(0, 0, 0, 0.5);
}

.image-area {
    text-align: center;
}

.submit-button {
    color: var(--button-text);
    background-color: var(--button-bg);
    border: none;
    padding: 0.3rem;
    border-radius: 5px;
}

.submit-button:hover {
    background-color: var(--red-400);
}



@media all and (max-width: 700px) {
    #review {
        padding-top: 5rem;
    }
}

@media all and (max-width: 480px) {
    #review {
        padding-top: 3rem;
    }
    .breadcrumbs ol {
        font-size: 0.7rem;
    }
}

.footer-content {
    font-size: 0.7rem;
}

.footer-content a {
    text-decoration: none;
    color: var(--neutral-800);
}

.follow-text {
    color: var(--green-300);
}

.logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}

#facebook-logo {
    background-image: url(img/icons/facebook.svg);
}

#instagram-logo {
    background-image: url(img/icons/instagram.svg);
}

#youtube-logo {
    background-image: url(img/icons/youtube.svg);
}

#facebook-logo,
#instagram-logo,
#youtube-logo {
    width: 3rem;
    height: 3rem;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
