body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #101314;
    color: #FFFFFA !important;
}

#logo{
    height: 60px;
}

#main_logo {
    height: 35vh; 
    width: auto; 
}

.nav {
    background-color: #732427;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;

}

.nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

.menu {
    display: flex;
}

.menu a {
    display: inline-block;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color:white;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #101314;
    position: absolute;
    top: 0px;
    right: 0;
    width: 100%;
    padding: 10px;
    z-index: 1000;
}

.mobile-menu a {
    padding: 10px;
    text-align: center;
    color: white;
    text-decoration: none;
    display: block;
}


.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35vh; /* A kép magassága */
}

.button-image-container {
    position: relative;
    display: inline-block;
    height: 100%;
}

.button-image-container img {
    height: 100%;
    width: auto; 
    display: block;
}

.button-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%; 
    transform: translate(-50%, -50%);
    background-color: #732427;
    opacity: 0.85;
    text-align: center;
    padding: 2px 10px;
    font-weight: bold;
}

#booking-button{
    all: unset;
    cursor: pointer;
}

.accordion .content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    font-style: italic;
}

.accordion span{
    font-weight: bold;
    cursor: pointer;
}

.accordion .toggle::before {
    content: "▶";
    display: inline-block;
    margin-right: 5px;
    transition: transform 0.6s ease-in-out; 
}

.accordion.open .toggle::before {
    transform: rotate(90deg); 
}
.accordion{
    padding: 8px;
}

.accordion .content p {
    display: inline;
}

section{
    text-align: center;
    padding: 12px;
}

.lighter_section{
    background-color: #1C1F20;
}


.map-frame {
    width: 50vw;
    height: 300px;
    border: 0;
}

@media screen and (max-width: 768px) {
    .menu {
        display: none;
    }

    .hamburger {
        display: block;
    }
    .map-frame {
        width: 80vw;

    }
}


