/* CSS RESET & BASE STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Gomb alaphelyzete - Asztali nézetben nyomtalanul rejtve */
.menu-toggle {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
    pointer-events: none;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #453e3b;
    line-height: 1.6;
    background-image: url('../bcgrnd.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
}

.main-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto !important;
    background-color: #ffffff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: block;
}

.container {
    width: 100%;
    padding: 0 30px;
}

/* TOP HEADER */
.top-header {
    background-color: #f2f2f2;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-area h1 {
    font-family: 'Oswald', sans-serif;
    color: #7e7674;
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info {
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid #d0d0d0;
    margin-left: 20px;
}

.contact-info .phone {
    display: block;
    font-family: 'Oswald', sans-serif;
    color: #7e7674;
    font-size: 18px;
    font-weight: 500;
}

.contact-info .address {
    display: block;
    color: #8c8481;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.social-icons a {
    color: #7e7674;
    text-decoration: none;
    font-size: 20px;
    margin-left: 15px;
    display: inline-block;
}

/* NAVIGATION */
.main-nav {
    background-color: #ffffff;
    border-bottom: 3px solid #e0e0e0;
    padding: 15px 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 15px;
    flex-wrap: wrap;
}

.menu li {
    border-right: 1px solid #e0e0e0;
    padding-right: 19px;
    cursor: pointer;
}

.menu li:last-child {
    border-right: none;
}

.menu li a {
    text-decoration: none;
    color: #453e3b;
    font-family: 'Oswald', sans-serif;
    font-size: 19px !important;
    font-weight: 500;
    display: block;
    text-transform: uppercase;
}

.menu li a span {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 9px;
    color: #9c9491;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: -2px;
}

/* IDŐPONTFOGLALÁS GOMB */
.booking-btn-container {
    display: block;
    flex-shrink: 0;
}

.booking-btn {
    display: inline-block;
    background-color: #453e3b !important;
    color: #ffffff !important;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    padding: 12px 22px;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.booking-btn:hover {
    background-color: #5c5350 !important;
}

/* HERO SLIDER */
.hero-slider-section {
    padding: 25px 0;
    background-color: #f9f9f9;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* SECTION BANNER */
.section-banner {
    background-color: #453e3b;
    padding: 25px 0;
}

.section-banner h2 {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
}

/* CONTENT AREA */
.content-section {
    background-color: #ffffff;
    padding: 40px 0;
}

.content-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #453e3b;
    margin-bottom: 20px;
    font-weight: 500;
}

.content-box p {
    font-size: 15px;
    color: #555555;
    margin-bottom: 15px;
    text-align: justify;
}

.sub-quote {
    font-family: 'Oswald', sans-serif;
    color: #453e3b;
    font-size: 18px;
    margin: 25px 0 15px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.floated-about-image {
    float: right;
    width: 320px;
    margin-left: 25px;
    margin-bottom: 15px;
}

.floated-about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

footer {
    background-color: #332e2c;
    color: #8c8481;
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
}

/* ==========================================================================
   RESZPONZÍV MOBIL NÉZETEK (950PX ALATT)
   ========================================================================== */
@media (max-width: 950px) {
    body {
        padding: 0;
    }

    .container {
        padding: 0 20px;
    }

    .header-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-info {
        padding-left: 0;
        border-left: none;
        margin-left: 0;
    }

    .social-icons {
        margin-top: 5px;
        justify-content: center;
    }

    .social-icons a {
        margin: 0 10px;
    }

    /* Navigációs léc mobil rugalmas elrendezése */
    .nav-flex {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
    }

    /* GOMB KÉNYELMES ÉS SZÉP IGAZÍTÁSA */
    .menu-toggle {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 44px !important;
        height: 44px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer;
        pointer-events: auto !important;
        padding: 4px !important;
        z-index: 100;
    }

    /* Fixált, esztétikus méret az ikonoknak */
    .menu-toggle svg {
        width: 36px !important;
        height: 36px !important;
        fill: #453e3b !important;
        margin: 0 auto !important;
    }

    /* Alaphelyzet: csak a hamburger él, a bezáró X rejtve */
    .menu-toggle .icon-hamburger {
        display: block !important;
    }
    
    .menu-toggle .icon-close {
        display: none !important;
    }

    /* A menülista legördülő viselkedése */
    .main-nav .menu {
        display: none; 
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 0;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
        padding: 10px 0;
    }

    .menu li {
        border-right: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        padding: 12px 0 !important;
        width: 100% !important;
    }

    .menu li:last-child {
        border-bottom: none !important;
    }

    .booking-btn-container {
        margin-top: 0 !important;
    }
    
    .booking-btn {
        display: inline-block;
        padding: 10px 16px;
        font-size: 14px;
    }

    /* --- DINAMIKUS NYITOTT ÁLLAPOTOK --- */
    /* Menü lista megjelenítése */
    .main-nav.menu-open .menu {
        display: flex;
    }

    /* Ikonok cseréje: hamburger elrejt, X megjelenít */
    .main-nav.menu-open .menu-toggle .icon-hamburger {
        display: none !important;
    }

    .main-nav.menu-open .menu-toggle .icon-close {
        display: block !important;
    }

    .floated-about-image {
        float: none;
        margin: 20px auto;
        display: block;
        max-width: 100%;
    }

    .hero-slider {
        height: 250px;
    }
}

/* KISMÉRETŰ MOBILOK */
@media (max-width: 480px) {
    .logo-area h1 {
        font-size: 24px;
    }

    .hero-slider {
        height: 180px;
    }

    .section-banner h2 {
        font-size: 22px;
    }
}