@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&family=Mulish:wght@300;400;600&display=swap');

@font-face {
    font-family: 'P22 Allyson Pro';
    src: url('../font/p22allysonpro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Boita';
    src: url('../font/Boita Fonts/Boita-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Boita';
    src: url('../font/Boita Fonts/Boita-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Boita';
    src: url('../font/Boita Fonts/Boita-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Boita';
    src: url('../font/Boita Fonts/Boita-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../font/Open_Sans/static/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../font/Open_Sans/static/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../font/Open_Sans/static/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../font/Open_Sans/static/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

:root {

    /* Colors: */
    --unnamed-color-646f9a: #646F9A;
    --unnamed-color-ffffff: #ffffff;
    --unnamed-color-ffc670: #FFC670;
    --unnamed-color-e8efff: #E8EFFF;
    --menu-bg: rgba(20, 20, 20, 0.9);
}

html, body {
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fafaf3;
    overflow-x: hidden;
    overflow-x: clip;
    width: 100%;
    position: relative;
}

header {
    /* Layout Properties */

    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 155px;

    /* UI Properties */

    opacity: 1;
    position: fixed;
    z-index: 100;
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url('../images/felso_ives_vonal.svg') no-repeat center 80px;
    background-size: 100%;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

header.scrolled::before {
    opacity: 0;
}

header::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(240, 240, 230, 0.9) 80px, transparent 80px),
        url('../images/felso_ives_vonal_inzerv.svg') no-repeat center 80px;
    background-size: 100% 100%, 100% auto;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

header.scrolled::after {
    opacity: 1;
}

header.scrolled .bal span {
    background-color: #1a1a1a;
}

header.scrolled .jobb ul li a {
    color: #1a1a1a;
}

header.scrolled .jobb ul li a::after {
    background-color: rgba(26, 26, 26, 0.2);
}

header.scrolled .jobb ul li a:hover::after {
    background-color: #1a1a1a;
}

header.scrolled .jobb ul li:not(:last-child)::after {
    background-color: rgba(26, 26, 26, 0.2);
}

header .header-left {
    position: absolute;
    top: 29px;
    left: 284px;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 110;
}

header .bal {
    width: 28px;
    height: 22px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 1;
}

header .naptar-toggle {
    color: var(--unnamed-color-ffffff);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

header.scrolled .naptar-toggle {
    color: #1a1a1a;
}

header .bal.active+.naptar-toggle {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Calendar Sidebar & Overlay styles */
#calendar-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 104;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#calendar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.dontott {
    font-style: italic;
}

.vastag {
    font-weight: bold !important;
}

#calendar-sidebar {
    position: fixed;
    top: 0;
    left: -420px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: rgba(240, 240, 230, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.08);
    z-index: 105;
    transition: left 1.0s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
    padding: 120px 40px 40px;
    display: flex;
    flex-direction: column;
}

#calendar-sidebar.active {
    left: 0;
    transition: left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.calendar-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #1a1a1a;
    line-height: 1;
    padding: 0;
    transition: opacity 0.2s ease;
}

.calendar-close:hover {
    opacity: 0.6;
}

/* Calendar Widget UI */
.calendar-title {
    font-family: 'Boita', serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    font-family: 'Boita', serif;
    font-size: 24px;
    color: #1a1a1a;
    margin: 0;
}

.calendar-header button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #1a1a1a;
    padding: 5px 10px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.calendar-days span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 15px;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.calendar-days span:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.calendar-days span.today {
    border: 1px solid #1a1a1a;
    font-weight: bold;
}

.calendar-days span.selected {
    background-color: #1a1a1a;
    color: #ffffff;
}

.calendar-days span.prev-date,
.calendar-days span.next-date {
    color: #ccc;
    cursor: default;
    pointer-events: none;
}

.calendar-selected-info {
    margin-top: 30px;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
    text-align: center;
}

.calendar-text {
    margin-top: 15px;
    font-size: 14px;
    color: #4a4a4a;
    text-align: center;
    line-height: 1.5;
}

.calendar-booking-wrap {
    margin-top: 25px;
    text-align: center;
}

.calendar-booking-wrap .booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    border-radius: 30px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-booking-wrap .booking-btn:hover {
    background-color: transparent;
    color: #1a1a1a;
}

.calendar-days span.has-event {
    position: relative;
    font-weight: 600;
}

.calendar-days span.has-event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #8b1d1d;
}

.event-item {
    background-color: rgba(255, 255, 255, 0.5);
    border-left: 3px solid #8b1d1d;
    padding: 12px 15px;
    border-radius: 0 4px 4px 0;
    margin-top: 15px;
    text-align: left;
}

.event-title {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.event-time {
    font-size: 13px;
    color: #555;
}

.no-events {
    font-style: italic;
    color: #888;
    margin-top: 15px;
}

header .bal span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--unnamed-color-ffffff);
    transition: all 0.3s ease-in-out;
    opacity: 0.8;
}

/* X Animation */
header .bal.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

header .bal.active span:nth-child(2) {
    opacity: 0;
}

header .bal.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

header .kozep {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

header .kozep img {
    height: 98px;
    display: block;
    transition: opacity 0.4s ease;
}

header .kozep img.logo-sotet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

header.scrolled .kozep img.logo-vilagos {
    opacity: 0;
}

header.scrolled .kozep img.logo-sotet {
    opacity: 1;
}

header .jobb {
    position: absolute;
    top: 25px;
    right: 284px;


}

header .jobb ul {
    display: grid;
    grid-auto-flow: column;
    gap: 0px;
    list-style: none;
    padding: 0;
    margin: 0;
}

header .jobb ul li {
    padding: 0 12px 0;
    margin: 0 4px 0 0;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

header .jobb ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    margin-top: 3px;
    height: 30px;
    /* Itt állítható a vonal hossza */
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease;
}

header .jobb ul li:last-child {
    border-right: none;
}

header .jobb ul li a {
    color: var(--unnamed-color-ffffff);
    text-align: left;
    font: normal normal 600 15px/32px Open Sans;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;

    transition: transform 0.5s ease, color 0.3s ease;
    position: relative;
    text-decoration: none;
}

header .jobb ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease;
}

header .jobb ul li a:hover {}

header .jobb ul li a:hover::after {
    background-color: var(--unnamed-color-ffffff);
}

main {
    flex: 1;
}

.slider {
    width: 100%;
    height: 100vh;
    background-color: #000000;
    overflow: hidden;
    position: relative;
    -moz-user-select: none;
    -moz-user-drag: none;
}

/* duplicate .slider block removed */

@keyframes videoFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slider-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    animation: videoFadeIn 1.8s ease-in-out forwards;
    animation-delay: 0.3s;
}

.slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slider-bottom-box {
    position: absolute;
    bottom: 30px;
    left: 280px;
    right: 280px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.inner-box {
    height: 100%;
}



@keyframes titleSlideDown {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes descFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.cim {
    height: auto;
    min-height: 55px;
    color: var(--unnamed-color-ffffff);
    text-align: left;
    letter-spacing: 0px;
    color: #FFFFFF;
    font-size: 42px;
    font-family: Boita;
    font-weight: 500;
    opacity: 0;
    animation: titleSlideDown 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.3s;
}

.cim2 {
    height: auto;
    min-height: 27px;
    font: normal normal 300 20px/24px Open Sans;
    letter-spacing: 0.2px;
    color: var(--unnamed-color-ffffff);
    opacity: 0;
    animation: descFadeIn 0.8s ease forwards;
    animation-delay: 0.9s;
}

.kapcsolo1 {
    position: relative;
    height: auto;
    flex-shrink: 0;
    margin-bottom: 5px;
}

.kapcsolo1 button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--unnamed-color-ffffff);
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    width: auto;
    padding: 0 16px;
    height: 30px;
    border: 1px solid var(--unnamed-color-ffffff);
    background: transparent;
    border-radius: 100px;
    font: normal normal normal 16px/32px Open Sans;
    letter-spacing: 0px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.kapcsolo1 button:hover,
.kapcsolo1 button.active {
    background: var(--unnamed-color-ffffff);
    color: #285032;
}

.kapcsolo1 button img {
    width: 20px;
    height: 20px;
    margin: 0 5px 0 0;
    transition: filter 0.3s ease;
    filter: brightness(0) invert(1);
}

.kapcsolo1 button:hover img,
.kapcsolo1 button.active img {
    filter: brightness(0.2);
    /* Vagy invert(1) ha teljesen feketét szeretnél */
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes menuFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.kapcsolo1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-auto-flow: column;
    gap: 10px;
}

.kapcsolo1 ul li {
    opacity: 0;
    animation: slideInFromRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.kapcsolo1 ul li:nth-child(1) {
    animation-delay: 1.5s;
}

.kapcsolo1 ul li:nth-child(2) {
    animation-delay: 2s;
}

#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--menu-bg);
    z-index: 90;
    /* A header (100) alatt, de minden más felett */
    display: block;
    /* Módosítva flex-ről block-ra a pontos pozicionáláshoz */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}

.main-menu {
    position: absolute;
    top: 220px;
    left: 280px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu li {
    margin-bottom: 20px;
}

.main-menu li a {
    font-family: Boita;
    color: var(--unnamed-color-ffffff);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font: normal normal 300 28px/42px Boita;
    letter-spacing: 0.96px;
    opacity: 1;
}

.main-menu li a:hover {
    color: var(--unnamed-color-ffc670);
    padding-left: 5px;
}

.menu-right-box {
    position: absolute;
    bottom: 186px;
    right: 280px;
    width: 450px;
    /* Példa szélesség */
    color: var(--unnamed-color-ffffff);
    text-align: left;
    font: normal normal 300 16px/24px Open Sans;
    letter-spacing: -0.16px;
}

.menu-right-box .kapcsolo1 {
    margin-bottom: 20px;
}

.menu-right-box .kapcsolo1 button {
    width: auto;
    padding: 0 24px;
    height: 48px;
    font-size: 19px;
    font-weight: 600;
}

.menu-right-box .kapcsolo1 button img {
    width: 24px;
    height: 24px;
    margin: 0 8px 0 0;
}

#menu-overlay .kapcsolo1 ul li {
    opacity: 0;
    animation: none;
}

#menu-overlay.active .kapcsolo1 ul li {
    animation: slideInFromRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

#menu-overlay.active .kapcsolo1 ul li:nth-child(1) {
    animation-delay: 0.8s;
}

#menu-overlay.active .kapcsolo1 ul li:nth-child(2) {
    animation-delay: 1.0s;
}

/* Right-side contact list animation (fade and slide in from right to left) */
#menu-overlay .menu-right-box>ul>li {
    opacity: 0;
}

#menu-overlay.active .menu-right-box>ul>li {
    animation: slideInFromRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

#menu-overlay.active .menu-right-box>ul>li:nth-child(1) {
    animation-delay: 0.3s;
}

#menu-overlay.active .menu-right-box>ul>li:nth-child(2) {
    animation-delay: 0.4s;
}

#menu-overlay.active .menu-right-box>ul>li:nth-child(3) {
    animation-delay: 0.5s;
}

#menu-overlay.active .menu-right-box>ul>li:nth-child(4) {
    animation-delay: 0.6s;
}

.menu-right-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-right-box ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.menu-right-box ul li img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    filter: brightness(0) invert(1);
    /* Fehérre kényszerítés */
}

/* Main menu items animation (fade in one after another) */
#menu-overlay .main-menu li {
    opacity: 0;
}

#menu-overlay.active .main-menu li {
    animation: menuFadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

#menu-overlay.active .main-menu li:nth-child(1) {
    animation-delay: 0.1s;
}

#menu-overlay.active .main-menu li:nth-child(2) {
    animation-delay: 0.2s;
}

#menu-overlay.active .main-menu li:nth-child(3) {
    animation-delay: 0.3s;
}

#menu-overlay.active .main-menu li:nth-child(4) {
    animation-delay: 0.4s;
}

#menu-overlay.active .main-menu li:nth-child(5) {
    animation-delay: 0.5s;
}

#menu-overlay.active .main-menu li:nth-child(6) {
    animation-delay: 0.6s;
}

#menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments for header, slider, and menu overlay */
@media (max-width: 1400px) {
    header .header-left {
        left: 50px;
    }

    header .jobb {
        right: 50px;
    }

    .slider-bottom-box {
        left: 100px;
        right: 100px;
    }

    .main-menu {
        left: 100px;
    }

    .menu-right-box {
        right: 100px;
    }
}

@media (max-width: 992px) {
    header {
        height: 120px;
    }

    header::before {
        background-position: center 60px;
    }

    header.scrolled::after {
        background: rgba(240, 240, 230, 0.8);
    }

    header .header-left {
        top: 20px;
        left: 30px;
    }

    header .kozep img {
        height: 70px;
    }

    header .jobb {
        top: 18px;
        right: 30px;
    }

    .slider-bottom-box {
        left: 40px;
        right: 40px;
    }

    .main-menu {
        left: 40px;
        top: 180px;
    }

    .menu-right-box {
        right: 40px;
        bottom: 120px;
        width: 350px;
    }
}

@media (max-width: 768px) {
    header {
        position: absolute;
        height: 100px;
    }

    header::before {
        background-position: center 50px;
    }

    header .header-left {
        top: 15px;
        left: 20px;
    }

    header .kozep {
        top: calc(50% + 50px);
    }

    header .kozep img {
        height: 100px !important;
    }

    header .jobb {
        top: 12px;
        right: 20px;
    }

    .slider-bottom-box {
        flex-direction: column;
        align-items: flex-start;
        left: 20px;
        right: 20px;
        gap: 15px;
        bottom: 30px;
    }

    .cim {
        font-size: 28px;
        line-height: 1.2;
        min-height: auto;
    }

    .cim2 {
        font-size: 16px;
        line-height: 1.4;
        min-height: auto;
    }

    .kapcsolo1 {
        margin-bottom: 0;
    }

    #menu-overlay {
        height: 100vh;
    }

    .main-menu {
        top: 130px;
        left: 20px;
    }

    .main-menu li {
        margin-bottom: 12px;
    }

    .main-menu li a {
        font-size: 20px;
        line-height: 1.3;
    }

    .menu-right-box {
        left: 20px;
        right: 20px;
        bottom: 40px;
        width: auto;
    }
}

/* Udvozlet Section */
.udvozlet-section {
    padding: 80px 0;
    background-color: #fafaf3;
    text-align: center;
}

.udvozlet-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.udvozlet-title {
    font-family: 'Boita', serif;
    font-size: 68px;
    font-weight: 500;
    text-align: left;
    color: #1a1a1a;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.udvozlet-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.udvozlet-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.udvozlet-card {
    position: relative;
    width: 670px;
    height: 480px;
    border-radius: 2px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.udvozlet-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.udvozlet-card:hover {
    /* No movement */
    /* transform removed */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}




.udvozlet-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.udvozlet-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.udvozlet-card:hover::after {
    background: rgba(0, 0, 0, 0.30);
}

.udvozlet-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
}

.udvozlet-card:hover .udvozlet-card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55));
}

.udvozlet-card-text {
    font-family: 'P22 Allyson Pro', 'Pinyon Script', cursive;
    font-size: 112px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.9) translateY(10px);
    transition: opacity 0.8s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.udvozlet-card.revealed .udvozlet-card-text {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.udvozlet-card.revealed:hover .udvozlet-card-text {
    transform: scale(1.05);
    transition-delay: 0s !important;
}

/* Staggered transition delays for cards and their text */
.udvozlet-card:nth-child(1) {
    transition-delay: 0.1s;
}

.udvozlet-card:nth-child(1) .udvozlet-card-text {
    transition-delay: 0.5s;
}

.udvozlet-card:nth-child(2) {
    transition-delay: 0.3s;
}

.udvozlet-card:nth-child(2) .udvozlet-card-text {
    transition-delay: 0.7s;
}

.udvozlet-card:nth-child(3) {
    transition-delay: 0.1s;
}

.udvozlet-card:nth-child(3) .udvozlet-card-text {
    transition-delay: 0.5s;
}

.udvozlet-card:nth-child(4) {
    transition-delay: 0.3s;
}

.udvozlet-card:nth-child(4) .udvozlet-card-text {
    transition-delay: 0.7s;
}

/* Responsive design for udvozlet */
@media (max-width: 1460px) {
    .udvozlet-container {
        padding: 0 20px;


    }

    .udvozlet-cards {
        gap: 20px;

    }

    .udvozlet-card {
        width: 100%;
        max-width: 670px;
        height: 480px;
    }
}

@media (max-width: 768px) {
    .udvozlet-section {
        padding: 50px 0;
    }

    .udvozlet-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .udvozlet-card {
        max-width: 100%;
        width: 100%;
        height: 360px;
    }

    .udvozlet-card-text {
        font-size: 80px;
    }

    .udvozlet-title {
        font-size: 42px;
        margin-bottom: 30px;
    }
}

/* Boraszat Section */
.boraszat-section {
    padding: 80px 0;
    background-color: #fafaf3;
    text-align: center;
}

.boraszat-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.boraszat-title {
    font-family: 'Boita', serif;
    font-size: 68px;
    font-weight: 500;
    text-align: left;
    color: #1a1a1a;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.boraszat-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.boraszat-content {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.boraszat-image-card {
    position: relative;
    width: 670px;
    height: 640px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.boraszat-image-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.boraszat-image-card:hover {
    /* No movement */
    /* transform removed */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}




.boraszat-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.boraszat-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.boraszat-image-card:hover::after {
    background: rgba(0, 0, 0, 0.30);
}

.boraszat-slider {
    flex: 0 0 auto;
    margin-right: 0;
    position: relative;
    width: 670px;
    height: 640px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: grab;
    user-select: none;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.boraszat-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider navigation button styling */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fafaf3;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.05);
}

/* Boraszat carousel cards */
.boraszat-cards {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 20px;
}

.boraszat-card {
    flex: 0 0 100%;
    position: relative;
}

.boraszat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.boraszat-text-card {
    width: 670px;
    height: 640px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: left;
    padding: 0 0 0 60px;
    box-sizing: border-box;
}

.boraszat-paragraph {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #555555;
    margin: 0 0 24px 0;
    text-align: left;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.boraszat-text-card.revealed .boraszat-paragraph {
    opacity: 1;
}

/* Staggered delay for paragraphs reveal */
.boraszat-text-card.revealed .boraszat-paragraph:nth-of-type(1) {
    transition-delay: 0.2s;
}

.boraszat-text-card.revealed .boraszat-paragraph:nth-of-type(2) {
    transition-delay: 0.4s;
}

.boraszat-action {
    margin-top: 30px;
    text-align: right;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.boraszat-text-card.revealed .boraszat-action {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.9s;
}

.boraszat-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #285032;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 2px solid #285032;
    padding-bottom: 3px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.boraszat-link:hover {
    color: #1b3622;
    border-bottom-color: #1b3622;
}

/* Responsive design for boraszat */
@media (max-width: 1460px) {
    .boraszat-container {
        padding: 0 20px;
    }

    .boraszat-content {
        gap: 20px;
    }

    .boraszat-image-card,
    .boraszat-slider {
        width: 100%;
        max-width: 670px;
        height: 640px;
    }

    .boraszat-text-card {
        width: 100%;
        max-width: 670px;
        height: 640px;
    }
}

@media (max-width: 992px) {
    .boraszat-text-card {
        padding: 0 0 0 20px;
    }
}

@media (max-width: 768px) {
    .boraszat-section {
        padding: 50px 0;
    }

    .boraszat-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .boraszat-image-card,
    .boraszat-slider {
        max-width: 100%;
        width: 100%;
        height: 360px;
    }

    .boraszat-text-card {
        max-width: 100%;
        width: 100%;
        height: auto;
        padding: 40px 0 0 0;
    }

    .boraszat-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
}

/* Ajanlatok Section */
.ajanlat-section {
    padding: 80px 0;
    background-color: #fafaf3;
    overflow: hidden;
}

.ajanlat-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.ajanlat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.ajanlat-title {
    font-family: 'Boita', serif;
    font-size: 68px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.ajanlat-section.revealed .ajanlat-title {
    opacity: 1;
}

.ajanlat-nav {
    display: flex;
    gap: 20px;
    margin-top: 28px;
}

.ajanlat-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    width: 64px;
    height: 30px;
    border: 1px solid #1a1a1a;
    background: transparent;
    border-radius: 100px;
    font: normal normal normal 16px/32px Open Sans;
    letter-spacing: 0px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0;
    opacity: 0;
    transform: translateX(50px);
}

.ajanlat-section.revealed .ajanlat-nav-btn {
    opacity: 1;
    transform: translateX(0);
}

.ajanlat-section.revealed .ajanlat-nav-btn.prev-btn {
    transition-delay: 0s, 0s, 0.3s, 0.3s;
}

.ajanlat-section.revealed .ajanlat-nav-btn.next-btn {
    transition-delay: 0s, 0s, 0.5s, 0.5s;
}

.ajanlat-nav-btn img {
    width: 22px;
    height: 12px;
    transition: transform 0.3s ease;
}

/* Hover effects for buttons */
.ajanlat-nav-btn:hover {
    background-color: #285032;
    border-color: #285032;
}

/* Flips the left arrow SVG horizontally since it is identical to right arrow */
.ajanlat-nav-btn.prev-btn img {
    transform: scaleX(-1);
}

.ajanlat-nav-btn:hover img {
    filter: brightness(0) invert(1);
}

.ajanlat-cards-wrapper {
    width: 100%;
    overflow: visible;
}

.ajanlat-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px;
    padding-left: calc((100vw - 1280px) / 2);
    padding-right: calc((100vw - 1280px) / 2);
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -moz-user-select: none;
    -moz-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

.ajanlat-cards.active-drag {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
    cursor: grabbing !important;
}

.ajanlat-cards::-webkit-scrollbar {
    display: none;
}

.ajanlat-card {
    width: 440px;
    height: 480px;
    flex: 0 0 440px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.ajanlat-section.revealed .ajanlat-card {
    opacity: 1;
}

.ajanlat-section.revealed .ajanlat-card:nth-child(1) {
    transition-delay: 0.7s, 0s, 0s;
}

.ajanlat-section.revealed .ajanlat-card:nth-child(2) {
    transition-delay: 0.9s, 0s, 0s;
}

.ajanlat-section.revealed .ajanlat-card:nth-child(3) {
    transition-delay: 1.1s, 0s, 0s;
}

.ajanlat-section.revealed .ajanlat-card:nth-child(n+4) {
    transition-delay: 1.3s, 0s, 0s;
}

.ajanlat-card:hover {
    /* No movement - keep overlay only */
    /* transform removed */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ajanlat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.ajanlat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.ajanlat-card:hover::after {
    background: rgba(0, 0, 0, 0.30);
}

.ajanlat-card-overlay-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 400px;
    height: auto;
    min-height: 120px;
    background: #F0F0E6 0% 0% no-repeat padding-box;
    opacity: 0.9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    box-sizing: border-box;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.ajanlat-card-title {
    width: 270px;
    height: auto;
    text-align: left;
    font: normal normal bold 22px/24px 'Open Sans', sans-serif;
    letter-spacing: 0.22px;
    color: #000000;
    opacity: 1;
    margin: 0 0 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ajanlat-card-paragraph {
    width: 360px;
    height: auto;
    max-height: 94px;
    text-align: left;
    font: normal normal normal 16px/24px 'Open Sans', sans-serif;
    letter-spacing: 0.16px;
    color: #000000;
    opacity: 1;
    margin: 0 0 15px 0;
    overflow: hidden;
}

.ajanlat-card-action {
    display: flex;
    justify-content: flex-start;
}

.ajanlat-card-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #285032;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 2px solid #285032;
    padding-bottom: 3px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.ajanlat-card-link:hover {
    color: #1b3622;
    border-bottom-color: #1b3622;
}

/* Responsive design for ajanlatok */
@media (max-width: 1460px) {
    .ajanlat-container {
        padding: 0 20px;
    }

    .ajanlat-cards {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1200px) {
    .ajanlat-title {
        font-size: 52px;
    }

    .ajanlat-card {
        width: calc(100vw - 80px);
        max-width: 440px;
        flex: 0 0 calc(100vw - 80px);
    }

    .ajanlat-card-overlay-box {
        width: calc(100% - 40px);
        left: 20px;
    }

    .ajanlat-card-title {
        width: 100%;
    }

    .ajanlat-card-paragraph {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ajanlat-section {
        padding: 50px 0;
    }

    .ajanlat-header {
        margin-bottom: 40px;
    }

    .ajanlat-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .ajanlat-card {
        width: calc(100vw - 40px);
        max-width: 320px;
        flex: 0 0 calc(100vw - 40px);
        height: 440px;
    }

    .ajanlat-card-overlay-box {
        width: calc(100% - 40px);
        left: 20px;
        padding: 16px;
    }

    .ajanlat-card-title {
        font-size: 18px;
    }

    .ajanlat-card-paragraph {
        width: 100%;
        height: auto;
        max-height: 120px;
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Galeria Section */
.galeria-section {
    padding: 80px 0;
    background-color: #fafaf3;
    overflow: hidden;
}

.galeria-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.galeria-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.galeria-title {
    font-family: 'Boita', serif;
    font-size: 68px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.galeria-section.revealed .galeria-title {
    opacity: 1;
}

.galeria-nav {
    display: flex;
    gap: 20px;
    margin-top: 28px;
}

.galeria-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    width: 64px;
    height: 30px;
    border: 1px solid #1a1a1a;
    background: transparent;
    border-radius: 100px;
    font: normal normal normal 16px/32px Open Sans;
    letter-spacing: 0px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0;
    opacity: 0;
    transform: translateX(50px);
}

.galeria-section.revealed .galeria-nav-btn {
    opacity: 1;
    transform: translateX(0);
}

.galeria-section.revealed .galeria-nav-btn.prev-btn {
    transition-delay: 0s, 0s, 0.3s, 0.3s;
}

.galeria-section.revealed .galeria-nav-btn.next-btn {
    transition-delay: 0s, 0s, 0.5s, 0.5s;
}

.galeria-nav-btn img {
    width: 22px;
    height: 12px;
    transition: transform 0.3s ease;
}

/* Hover effects for buttons */
.galeria-nav-btn:hover {
    background-color: #285032;
    border-color: #285032;
}

/* Flips the left arrow SVG horizontally since it is identical to right arrow */
.galeria-nav-btn.prev-btn img {
    transform: scaleX(-1);
}

.galeria-nav-btn:hover img {
    filter: brightness(0) invert(1);
}

.galeria-cards-wrapper {
    /* ensure no image drag in Firefox */
    -webkit-user-drag: none;
    -moz-user-drag: none;
    user-drag: none;
    width: 100%;
    overflow: visible;
}

.galeria-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px;
    padding-left: calc((100vw - 1280px) / 2);
    padding-right: calc((100vw - 1280px) / 2);
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.galeria-cards.active-drag {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
    cursor: grabbing !important;
}

.galeria-cards::-webkit-scrollbar {
    display: none;
}

.galeria-card {
    width: 1130px;
    height: 640px;
    flex: 0 0 1130px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.galeria-section.revealed .galeria-card {
    opacity: 1;
}

.galeria-section.revealed .galeria-card:nth-child(1) {
    transition-delay: 0.7s, 0s, 0s;
}

.galeria-section.revealed .galeria-card:nth-child(2) {
    transition-delay: 0.9s, 0s, 0s;
}

.galeria-section.revealed .galeria-card:nth-child(3) {
    transition-delay: 1.1s, 0s, 0s;
}

.galeria-section.revealed .galeria-card:nth-child(n+4) {
    transition-delay: 1.3s, 0s, 0s;
}

.galeria-card:hover {
    /* No movement */
    /* transform removed */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}



.galeria-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.galeria-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.galeria-card:hover::after {
    background: rgba(0, 0, 0, 0.30);
}

/* Responsive design for galeria */
@media (max-width: 1460px) {
    .galeria-container {
        padding: 0 20px;
    }

    .galeria-cards {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1200px) {
    .galeria-title {
        font-size: 52px;
    }

    .galeria-card {
        width: calc(100vw - 80px);
        max-width: 1130px;
        flex: 0 0 calc(100vw - 80px);
        height: auto;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 768px) {
    .galeria-section {
        padding: 50px 0;
    }

    .galeria-header {
        margin-bottom: 40px;
    }

    .galeria-title {
        font-size: 36px;
    }

    .galeria-card {
        width: calc(100vw - 40px);
        max-width: 670px;
        flex: 0 0 calc(100vw - 40px);
        height: auto;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 480px) {
    .galeria-card {
        width: calc(100vw - 40px);
        max-width: 320px;
        flex: 0 0 calc(100vw - 40px);
        height: auto;
        aspect-ratio: 16 / 10;
    }
}

/* Hirek Section */
.hirek-section {
    padding: 80px 0;
    background-color: #fafaf3;
}

.hirek-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.hirek-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.hirek-title {
    font-family: 'Boita', serif;
    font-size: 68px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hirek-section.revealed .hirek-title {
    opacity: 1;
}

.hirek-header-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #285032;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 2px solid #285032;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-bottom-color 0.3s ease, opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateX(50px);
}

.hirek-section.revealed .hirek-header-link {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s, 0s, 0.3s, 0.3s;
}

.hirek-header-link:hover {
    color: #1b3622;
    border-bottom-color: #1b3622;
}

.hirek-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hirek-card {
    width: 440px;
    height: 480px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hirek-section.revealed .hirek-card,
.hirek-card.revealed {
    opacity: 1;
}

.hirek-section.revealed .hirek-card:nth-child(1) {
    transition-delay: 0.5s;
}

.hirek-section.revealed .hirek-card:nth-child(2) {
    transition-delay: 0.7s;
}

.hirek-section.revealed .hirek-card:nth-child(3) {
    transition-delay: 0.9s;
}

.hirek-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 20px;
}

.hirek-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hirek-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.hirek-card:hover .hirek-card-image::after {
    background: rgba(0, 0, 0, 0.30);
}

.hirek-card-content {
    display: flex;
    flex-direction: column;
}

.hirek-card-date {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12px;
    color: #888888;
    margin-bottom: 8px;
}

.hirek-card-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #000000;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.hirek-card-description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.12px;
}

/* Responsive design for hirek */
@media (max-width: 1460px) {
    .hirek-container {
        padding: 0 20px;
    }
}

@media (max-width: 1200px) {
    .hirek-title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .hirek-section {
        padding: 50px 0;
    }

    .hirek-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 40px;
    }

    .hirek-title {
        font-size: 36px;
    }

    .hirek-header-link {
        margin-bottom: 0;
    }

    .hirek-grid {
        gap: 30px;
        max-width: 440px;
        margin: 0 auto;
    }

    .hirek-card {
        width: 100%;
        max-width: 440px;
        height: auto;
    }

    .hirek-card-image {
        height: auto;
        aspect-ratio: 44 / 28;
    }
}

@media (max-width: 480px) {
    .hirek-grid {
        max-width: 320px;
    }
}

/* Kapcsolat Section */
.kapcsolat-section {
    padding: 80px 0;
    background-color: #f0f0e6;
    position: relative;
    overflow: hidden;
}

.kapcsolat-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.kapcsolat-title {
    font-family: 'Boita', serif;
    font-size: 68px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 60px 0;
    letter-spacing: 0.5px;
    line-height: 1.1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.kapcsolat-section.revealed .kapcsolat-title {
    opacity: 1;
}

.kapcsolat-content {
    display: flex;
    justify-content: space-between;
    gap: 55px;
    position: relative;
}

.kapcsolat-left {
    flex: 0 0 555px;
    width: 555px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.kapcsolat-section.revealed .kapcsolat-left {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.kapcsolat-map {
    width: 555px;
    height: 434px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.kapcsolat-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kapcsolat-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kapcsolat-details ul li {
    display: flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 0;

    ;
}

.kapcsolat-details ul li img {
    width: 20px;
    height: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.kapcsolat-right {
    flex: 0 0 670px;
    width: 670px;
    height: 630px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.kapcsolat-section.revealed .kapcsolat-right {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.kapcsolat-crest-watermark {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: auto;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.kapcsolat-form {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kapcsolat-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    position: relative;
}

.kapcsolat-form-group label {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.12px;
    color: #878787;
    margin-bottom: 6px;
    text-transform: capitalize;
    font-weight: bold;
}

.kapcsolat-form-group input,
.kapcsolat-form-group textarea {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: #1a1a1a;
    background: transparent;
    border: none;
    border-bottom: 1px solid #1a1a1a;
    padding: 8px 0;
    outline: none;
    transition: border-bottom-color 0.3s ease;
}

.kapcsolat-form-group textarea {
    resize: vertical;
}

.kapcsolat-form-group textarea~.fake-placeholder {
    top: 26px;
    bottom: auto;
}

.fake-placeholder {
    position: absolute;
    bottom: 11px;
    left: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: rgba(153, 153, 153, 1);
    pointer-events: none;
    transition: opacity 1s ease-in-out;
    opacity: 1;
    user-select: none;
}

.fake-placeholder.faded {
    opacity: 0;
}

/* Webkit (Chrome, Safari, Edge) */
.kapcsolat-form-group input::-webkit-input-placeholder,
.kapcsolat-form-group textarea::-webkit-input-placeholder {
    color: transparent;
}

.kapcsolat-form-group input:hover::-webkit-input-placeholder,
.kapcsolat-form-group input:focus::-webkit-input-placeholder,
.kapcsolat-form-group textarea:hover::-webkit-input-placeholder,
.kapcsolat-form-group textarea:focus::-webkit-input-placeholder {
    color: rgba(153, 153, 153, 0);
}

/* Firefox */
.kapcsolat-form-group input::-moz-placeholder,
.kapcsolat-form-group textarea::-moz-placeholder {
    color: rgba(153, 153, 153, 1);
    transition: color 1s ease-in-out;
}

.kapcsolat-form-group input:hover::-moz-placeholder,
.kapcsolat-form-group input:focus::-moz-placeholder,
.kapcsolat-form-group textarea:hover::-moz-placeholder,
.kapcsolat-form-group textarea:focus::-moz-placeholder {
    color: rgba(153, 153, 153, 0);
}

/* IE */
.kapcsolat-form-group input:-ms-input-placeholder,
.kapcsolat-form-group textarea:-ms-input-placeholder {
    color: rgba(153, 153, 153, 1);
    transition: color 1s ease-in-out;
}

.kapcsolat-form-group input:focus:-ms-input-placeholder,
.kapcsolat-form-group textarea:focus:-ms-input-placeholder {
    color: rgba(153, 153, 153, 0);
}

/* Standard */
.kapcsolat-form-group input::placeholder,
.kapcsolat-form-group textarea::placeholder {
    color: rgba(153, 153, 153, 1);
    transition: color 1s ease-in-out;
}

.kapcsolat-form-group input:hover::placeholder,
.kapcsolat-form-group input:focus::placeholder,
.kapcsolat-form-group textarea:hover::placeholder,
.kapcsolat-form-group textarea:focus::placeholder {
    color: rgba(153, 153, 153, 0);
}

.kapcsolat-form-group input:focus,
.kapcsolat-form-group textarea:focus {
    border-bottom-color: #285032;
}

.kapcsolat-form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 30px;
}

.kapcsolat-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;

}

.kap_box1 {}

.kapcsolat-checkbox-container input[type="checkbox"] {
    margin-top: 4px;
    accent-color: #285032;
    cursor: pointer;
}

.kapcsolat-checkbox-container label {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #555555;
    line-height: 1.4;
}

.kapcsolat-terms-link {
    color: #285032;
    text-decoration: underline;
    font-weight: 400;
    transition: color 0.3s ease;
}

.kapcsolat-terms-link:hover {
    color: #1b3622;
}

.kapcsolat-submit-btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #285032;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none;
    border: none;
    border-bottom: 1px solid #285032;
    padding: 0 0 3px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.kapcsolat-submit-btn:hover {
    color: #1b3622;
    border-bottom-color: #1b3622;
}

.submit-arrow,
.stretch-arrow {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    vertical-align: middle;
}

.submit-arrow::before,
.stretch-arrow::before {
    content: '';
    display: block;
    width: 10px;
    height: 1px;
    background: currentColor;
    transition: width 0.35s ease;
}

.submit-arrow::after,
.stretch-arrow::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
    margin-left: -4px;
    flex-shrink: 0;
}

.kapcsolat-submit-btn:hover .submit-arrow::before,
.hirek-header-link:hover .stretch-arrow::before,
.ajanlat-card-link:hover .stretch-arrow::before,
.boraszat-link:hover .stretch-arrow::before,
.wellness-grid-link:hover .stretch-arrow::before {
    width: 20px;
}

/* Responsive design for kapcsolat */
@media (max-width: 1460px) {
    .kapcsolat-container {
        padding: 0 20px;
    }
}

@media (max-width: 1200px) {
    .kapcsolat-title {
        font-size: 52px;
    }

    .kapcsolat-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .kapcsolat-content {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .kapcsolat-left {
        width: 100%;
        max-width: 555px;
        flex: 0 0 auto;
    }

    .kapcsolat-map {
        width: 100%;
        height: auto;
        aspect-ratio: 555 / 434;
    }

    .kapcsolat-right {
        width: 100%;
        max-width: 670px;
        height: auto;
        flex: 0 0 auto;
    }

    .kapcsolat-crest-watermark {
        right: 0;
        width: 350px;
    }

    .kapcsolat-form-bottom {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .kapcsolat-section {
        padding: 50px 0;
    }

    .kapcsolat-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .kapcsolat-form-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .kapcsolat-submit-btn {
        align-self: flex-end;
    }
}

/* Footer Section */
.site-footer {
    background-color: #f0f0e6;
    padding: 60px 0 80px 0;
    border-top: 1px solid #c8c8b8;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo img {
    height: 130px;
    width: auto;
    display: block;
}

.footer-kozep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.footer-socials {
    display: flex;
    justify-content: stretch;
    gap: 30px;


}

.footer-socials a {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
}

.footer-socials a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.footer-socials a .social-icon-hover {
    opacity: 0;
}

.footer-socials a:hover .social-icon {
    opacity: 0;
}

.footer-socials a:hover .social-icon-hover {
    opacity: 1;
}

.footer-legal {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-self: center;
}

.footer-legal-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #285032;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 1px solid #285032;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    color: #285032;
    border-bottom-color: #285032;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.32px;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-column a:hover {
    color: #285032;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* Desktop layout with exact column starts */
@media (min-width: 993px) {
    .kapcsolat-title {
        margin-left: -40px;
    }

    .kapcsolat-content {
        gap: 135px;
        margin-left: -40px;
        margin-right: -40px;
    }

    .footer-content {
        display: flex;
        align-items: center;
        position: relative;
        min-height: 100px;
    }

    .footer-bal {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .footer-kozep {
        position: absolute;
        left: 345px;
        top: 50%;
        transform: translateY(-50%);
        align-items: center;
    }

    .footer-jobb {
        position: absolute;
        left: 805px;
        top: 50%;
        transform: translateY(-50%);
    }

    .footer-links {
        display: flex;
        gap: 0;
    }

    .footer-column:nth-child(1) {
        width: 230px;
    }
}

/* Responsive design for footer */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-links {
        justify-content: center;
        width: 100%;
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0;
    }

    .footer-container {
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

/* Scroll Action Button (Double arrow scroll control) */
.scroll-action-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fafaf3;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.scroll-action-btn:hover {
    background-color: #1a1a1a;
    color: #fafaf3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.scroll-action-btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin: 0;
    padding: 0;
    display: block;
}

/* States */
.scroll-action-btn.scroll-down .arrow-up {
    opacity: 0;
    transform: translate(-50%, -150%);
}

.scroll-action-btn.scroll-down .arrow-down {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.scroll-action-btn.scroll-up .arrow-up {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.scroll-action-btn.scroll-up .arrow-down {
    opacity: 0;
    transform: translate(-50%, 50%);
}

/* Ensure arrow remains perfectly centered even during button hover */
.scroll-action-btn.scroll-up:hover .arrow-up {
    transform: translate(-50%, -50%);
}

.scroll-action-btn.scroll-down:hover .arrow-down {
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .scroll-action-btn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* ========================================
   SZÁLLÁS ALOLDAL — Hero Section
   ======================================== */

.szallas-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #111;
}

.szallas-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.szallas-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: videoFadeIn 1.8s ease-in-out forwards;
    animation-delay: 0.3s;
}

.szallas-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 2;
    pointer-events: none;
}

.szallas-hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.szallas-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.szallas-hero-title {
    font-family: 'P22 Allyson Pro', 'Pinyon Script', cursive;
    font-weight: 300;
    font-size: 180px;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: titleSlideDown 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.4s;
}

.szallas-hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    opacity: 0;
    animation: descFadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

.szallas-hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: descFadeIn 1s ease forwards;
    animation-delay: 1.6s;
}

.szallas-hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

@media (max-width: 1400px) {
    .szallas-hero-content {
        padding: 0 100px 80px;
    }
}

@media (max-width: 992px) {
    .szallas-hero-content {
        padding: 0 40px 70px;
    }

    .szallas-hero-title {
        font-size: 64px;
    }

    .szallas-hero-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .szallas-hero-content {
        padding: 0 20px 60px;
    }

    .szallas-hero-title {
        font-size: 48px;
    }

    .szallas-hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .szallas-hero-title {
        font-size: 38px;
    }

    .szallas-hero-subtitle {
        font-size: 14px;
        max-width: 90vw;
    }
}

/* ========================================
   SZÁLLÁS ALOLDAL — Intro Section
   (Borászat stílusra épül)
   ======================================== */

.szallas-intro-section {
    padding: 100px 0;
    background-color: #fafaf3;
}

.szallas-intro-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0;

}

.szallas-intro-title {
    font-family: 'Boita', serif;
    font-size: 68px;
    font-weight: 500;
    text-align: left;
    color: #1a1a1a;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.szallas-intro-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.szallas-intro-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.szallas-intro-image-card {
    position: relative;
    width: 560px;
    height: 640px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;

}

.szallas-intro-image-card.revealed {
    opacity: 1;
    transform: translateY(0);

}

/* No hover shadow or overlay for intro main image */

.szallas-intro-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}

.szallas-intro-text-card {
    width: 750px;
    height: 640px;
    flex-shrink: 1;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: left;
    padding: 0;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.15s, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}

.szallas-intro-text-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.szallas-intro-paragraph {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #555555;
    margin: 0;
    text-align: left;
    opacity: 0;
    transition: opacity 0.8s ease;
    margin-bottom: 20px;


}

.szallas-intro-text-card.revealed .szallas-intro-paragraph {
    opacity: 1;
}

.szallas-intro-text-card.revealed .szallas-intro-paragraph:nth-of-type(1) {
    transition-delay: 0.2s;
}

.szallas-intro-text-card.revealed .szallas-intro-paragraph:nth-of-type(2) {
    transition-delay: 0.4s;
}

.szallas-intro-action {
    margin-top: 30px;
    text-align: right;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.szallas-intro-text-card.revealed .szallas-intro-action {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.9s;
}

.szallas-intro-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #285032;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 2px solid #285032;
    padding-bottom: 3px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.szallas-intro-link:hover {
    color: #1b3622;
    border-bottom-color: #1b3622;
}

/* Secondary Two-Column Layout */
.szallas-intro-secondary {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.szallas-intro-secondary.revealed {
    opacity: 1;
    transform: translateY(0);
}

.szallas-intro-column-card {
    display: flex;
    flex-direction: column;
}

.szallas-intro-column-card.card-wide {
    width: 750px;
    flex: 0 0 750px;
    max-width: 750px;
}

.szallas-intro-column-card.card-narrow {
    width: 560px;
    flex: 0 0 560px;
    max-width: 560px;
}

.szallas-intro-paragraph a {
    color: #285032;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.szallas-intro-paragraph a:hover {
    color: #1b3622;
}

.szallas-intro-column-image {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.5s ease;
}

/* No hover overlay for intro column images */

.szallas-intro-column-card:hover .szallas-intro-column-image {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.szallas-intro-column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* No zoom for intro column images */

.szallas-intro-column-text {
    margin-top: 30px;
}

.szallas-intro-column-text .szallas-intro-paragraph {
    margin: 0;
    opacity: 1;
}

@media (max-width: 1460px) {
    .szallas-intro-container {
        padding: 0 20px;
    }

    .szallas-intro-content {
        gap: 40px;
    }

    .szallas-intro-image-card {
        width: 500px;
        height: 600px;
        flex-shrink: 0;
    }

    .szallas-intro-text-card {
        width: calc(100% - 540px);
        max-width: 750px;
        height: 600px;
    }

    .szallas-intro-secondary {
        gap: 40px;
    }

    .szallas-intro-column-card.card-wide {
        width: calc(100% - 540px);
        flex: 0 0 calc(100% - 540px);
        max-width: calc(100% - 540px);
    }

    .szallas-intro-column-card.card-narrow {
        width: 500px;
        flex: 0 0 500px;
        max-width: 500px;
    }

    .szallas-intro-column-image {
        height: 400px;
    }
}

@media (max-width: 1200px) {
    .szallas-intro-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .szallas-intro-image-card {
        width: 100%;
        max-width: 670px;
        height: auto;
        aspect-ratio: 560 / 640;
    }

    .szallas-intro-text-card {
        width: 100%;
        max-width: 750px;
        height: auto;
        padding: 0;
    }

    .szallas-intro-secondary {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        margin-top: 60px;
    }

    .szallas-intro-column-card.card-wide,
    .szallas-intro-column-card.card-narrow {
        width: 100%;
        max-width: 650px;
        flex: 0 1 auto;
    }

    .szallas-intro-column-image {
        height: auto;
        aspect-ratio: 750 / 450;
    }
}

@media (max-width: 768px) {
    .szallas-intro-section {
        padding: 60px 0;
    }

    .szallas-intro-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .szallas-intro-image-card {
        max-width: 100%;
        width: 100%;
        height: 360px;
    }

    .szallas-intro-text-card {
        max-width: 100%;
        width: 100%;
        height: auto;
        padding: 0;
    }

    .szallas-intro-title {
        font-size: 42px;
        margin-bottom: 36px;
    }
}

/* ========================================
   SZÁLLÁS ALOLDAL — Szobák Carousel
   (Ajánlatok stílusra épül)
   ======================================== */

.szallas-szobak-section {
    padding: 80px 0;
    background-color: #fafaf3;
    overflow: hidden;
}

.szallas-szobak-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0;
}

.szallas-szobak-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.szallas-szobak-title {
    font-family: 'Boita', serif;
    font-size: 68px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.szallas-szobak-section.revealed .szallas-szobak-title {
    opacity: 1;
}

/* Grid layout for rooms */
.szallas-szobak-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(27, 54, 34, 0.2);
    border-left: 1px solid rgba(27, 54, 34, 0.2);
    margin-top: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.szallas-szobak-section.revealed .szallas-szobak-grid {
    opacity: 1;
    transform: translateY(0);
}

.szallas-szoba-grid-item {
    border-right: 1px solid rgba(27, 54, 34, 0.2);
    border-bottom: 1px solid rgba(27, 54, 34, 0.2);
    box-sizing: border-box;
    padding: 40px;
    display: flex;
    flex-direction: column;
    background-color: #fafaf3;
    transition: background-color 0.4s ease;
}

.szallas-szoba-grid-item:hover {
    background-color: #f5f5eb;
}

.szallas-szoba-grid-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.szallas-szoba-grid-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.szallas-szoba-grid-item:hover .szallas-szoba-grid-image::after {
    background: rgba(0, 0, 0, 0.30);
}

.szallas-szoba-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.szallas-szoba-grid-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0 15px 0;
    text-align: left;
}

.szallas-szoba-grid-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 25px 0;
    text-align: left;
    flex-grow: 1;
}

.szallas-szoba-grid-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #285032;
    text-decoration: none;
    border-bottom: 2px solid #285032;
    padding-bottom: 3px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.szallas-szoba-grid-link:hover {
    color: #1b3622;
    border-bottom-color: #1b3622;
}

.szallas-szoba-grid-link:hover .stretch-arrow::before {
    width: 20px;
}

@media (max-width: 1460px) {
    .szallas-szobak-container {
        padding: 0 20px;
    }
}

@media (max-width: 1200px) {
    .szallas-szobak-title {
        font-size: 52px;
    }

    .szallas-szobak-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .szallas-szobak-section {
        padding: 50px 0;
    }

    .szallas-szobak-header {
        margin-bottom: 40px;
    }

    .szallas-szobak-title {
        font-size: 36px;
    }

    .szallas-szobak-grid {
        grid-template-columns: 1fr;
        border-left: none;
    }

    .szallas-szoba-grid-item {
        border-right: none;
        padding: 30px 10px;
    }
}

/* ========================================
   SZÁLLÁS ALOLDAL — Felszereltség Grid
   ======================================== */

.szallas-felszereltseg-section {
    padding: 80px 0;
    background-color: #f0f0e6;
}

.szallas-felszereltseg-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.szallas-felszereltseg-title {
    font-family: 'Boita', serif;
    font-size: 68px;
    font-weight: 500;
    text-align: left;
    color: #1a1a1a;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.szallas-felszereltseg-section.revealed .szallas-felszereltseg-title {
    opacity: 1;
    transform: translateY(0);
}

.szallas-felszereltseg-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 30px;
}

.szallas-felszereltseg-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.szallas-felszereltseg-section.revealed .szallas-felszereltseg-item {
    opacity: 1;
    transform: translateY(0);
}

.szallas-felszereltseg-section.revealed .szallas-felszereltseg-item:nth-child(1) {
    transition-delay: 0.2s;
}

.szallas-felszereltseg-section.revealed .szallas-felszereltseg-item:nth-child(2) {
    transition-delay: 0.3s;
}

.szallas-felszereltseg-section.revealed .szallas-felszereltseg-item:nth-child(3) {
    transition-delay: 0.4s;
}

.szallas-felszereltseg-section.revealed .szallas-felszereltseg-item:nth-child(4) {
    transition-delay: 0.5s;
}

.szallas-felszereltseg-section.revealed .szallas-felszereltseg-item:nth-child(5) {
    transition-delay: 0.6s;
}

.szallas-felszereltseg-section.revealed .szallas-felszereltseg-item:nth-child(6) {
    transition-delay: 0.7s;
}

.szallas-felszereltseg-section.revealed .szallas-felszereltseg-item:nth-child(7) {
    transition-delay: 0.8s;
}

.szallas-felszereltseg-section.revealed .szallas-felszereltseg-item:nth-child(8) {
    transition-delay: 0.9s;
}

.szallas-felszereltseg-icon {}

.szallas-felszereltseg-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.szallas-felszereltseg-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .szallas-felszereltseg-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 900px) {
    .szallas-felszereltseg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .szallas-felszereltseg-title {
        font-size: 48px;
    }
}

@media (max-width: 600px) {
    .szallas-felszereltseg-section {
        padding: 60px 0;
    }

    .szallas-felszereltseg-container {
        padding: 0 20px;
    }

    .szallas-felszereltseg-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .szallas-felszereltseg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 16px;
    }
}

/* Active menu item for sub-pages */
.active-menu-item {
    opacity: 0.6 !important;
    pointer-events: none;
}

/* ========================================
   ÉTTEREM ALOLDAL — Hero Section
   ======================================== */
.etterem-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #111;
}

.etterem-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.etterem-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: videoFadeIn 1.8s ease-in-out forwards;
    animation-delay: 0.3s;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.etterem-hero.loaded .etterem-hero-img {
    transform: scale(1);
}

.etterem-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 2;
    pointer-events: none;
}

.etterem-hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.etterem-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.etterem-hero-title {
    font-family: 'P22 Allyson Pro', 'Pinyon Script', cursive;
    font-weight: 300;
    font-size: 180px;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: titleSlideDown 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.4s;
}

.etterem-hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
    opacity: 0;
    animation: descFadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

.etterem-hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: descFadeIn 1s ease forwards;
    animation-delay: 1.6s;
}

.etterem-hero-scroll-hint span {
    display: block;
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    animation: scrollPulse 2s ease-in-out infinite;
}

@media (max-width: 1400px) {
    .etterem-hero-content {
        padding: 0 100px 80px;
    }
}

@media (max-width: 992px) {
    .etterem-hero-content {
        padding: 0 40px 70px;
    }

    .etterem-hero-title {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .etterem-hero-content {
        padding: 0 20px 60px;
    }

    .etterem-hero-title {
        font-size: 48px;
    }
}

/* ========================================
   ÉTTEREM ALOLDAL — Intro Section
   ======================================== */
.etterem-intro-section {
    padding: 100px 0;
    background-color: #fafaf3;
}

.etterem-intro-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0;
}

.etterem-intro-title {
    font-family: 'Boita', serif;
    font-size: 68px;
    font-weight: 500;
    text-align: left;
    color: #1a1a1a;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.etterem-intro-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.etterem-intro-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.etterem-intro-image-card {
    position: relative;
    width: 745px;
    height: 640px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.etterem-intro-image-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.etterem-intro-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.etterem-intro-text-card {
    width: 555px;
    height: 640px;
    flex-shrink: 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    text-align: left;
    padding: 0;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.15s, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}

.etterem-intro-text-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.etterem-intro-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #285032;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    display: block;
}

.etterem-intro-paragraph {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.16px;
    color: #555555;
    margin: 0;
    text-align: left;
    opacity: 0;
    transition: opacity 0.8s ease;
    margin-bottom: 20px;
}

.etterem-intro-paragraph a {
    color: #285032;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.etterem-intro-paragraph a:hover {
    color: #1b3622;
}

.etterem-intro-text-card.revealed .etterem-intro-paragraph {
    opacity: 1;
}

.etterem-intro-text-card.revealed .etterem-intro-paragraph:nth-of-type(1) {
    transition-delay: 0.2s;
}

.etterem-intro-text-card.revealed .etterem-intro-paragraph:nth-of-type(2) {
    transition-delay: 0.4s;
}

.etterem-intro-text-card.revealed .etterem-intro-paragraph:nth-of-type(3) {
    transition-delay: 0.6s;
}

@media (max-width: 1460px) {
    .etterem-intro-container {
        padding: 0 20px;
    }

    .etterem-intro-content {
        gap: 40px;
    }

    .etterem-intro-image-card {
        width: calc(100% - 595px);
        max-width: 745px;
        height: 600px;
        flex-shrink: 1;
    }

    .etterem-intro-text-card {
        width: 555px;
        flex-shrink: 0;
        height: 600px;
    }
}

@media (max-width: 1200px) {
    .etterem-intro-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .etterem-intro-image-card {
        width: 100%;
        max-width: 670px;
        height: auto;
        aspect-ratio: 560 / 640;
    }

    .etterem-intro-text-card {
        width: 100%;
        max-width: 750px;
        height: auto;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .etterem-intro-section {
        padding: 60px 0;
    }

    .etterem-intro-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .etterem-intro-image-card {
        max-width: 100%;
        width: 100%;
        height: 360px;
    }

    .etterem-intro-text-card {
        max-width: 100%;
        width: 100%;
        height: auto;
        padding: 0;
    }

    .etterem-intro-title {
        font-size: 42px;
        margin-bottom: 36px;
    }
}

/* ========================================
   ÉTTEREM ALOLDAL — Nyitvatartás & Foglalás
   ======================================== */
.etterem-felszereltseg-section {
    padding: 30px 0;

}

.etterem-felszereltseg-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 80px;
}

.etterem-felszereltseg-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.etterem-felszereltseg-section.revealed .etterem-felszereltseg-grid {
    opacity: 1;
    transform: translateY(0);
}

.etterem-felszereltseg-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;

}

.etterem-felszereltseg-col-title {
    font-family: 'Boita', serif;
    font-size: 36px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.etterem-felszereltseg-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
    width: 100%;
}

.etterem-felszereltseg-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.etterem-felszereltseg-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.etterem-felszereltseg-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.etterem-felszereltseg-label-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #285032;
    letter-spacing: 0.5px;
}

.etterem-felszereltseg-cim {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 0.16px;
}

.etterem-felszereltseg-label {
    font: normal normal 300 16px/24px Open Sans;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    line-height: 24px;
}

.etterem-felszereltseg-paragraph {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 10px 0;
}

.etterem-felszereltseg-paragraph-contact {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.etterem-felszereltseg-paragraph-contact a {
    color: #285032;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}

.etterem-felszereltseg-paragraph-contact a:hover {
    color: #1b3622;
}

.etterem-felszereltseg-note {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.16px;
    color: #000;
    margin: 0 0 0 52px;
}

@media (max-width: 1200px) {
    .etterem-felszereltseg-grid {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .etterem-felszereltseg-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .etterem-felszereltseg-col-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .etterem-felszereltseg-section {
        padding: 60px 0;
    }

    .etterem-felszereltseg-container {
        padding: 0 20px;
    }
}

/* ========================================
   ÉTTEREM ALOLDAL — Étlap/Kártyák Grid
   ======================================== */
.etterem-etlap-section {
    padding: 80px 0;
    background-color: #fafaf3;
    overflow: hidden;
}

.etterem-etlap-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0;
}

.etterem-etlap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(27, 54, 34, 0.2);
    border-left: 1px solid rgba(27, 54, 34, 0.2);
    margin-top: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.etterem-etlap-section.revealed .etterem-etlap-grid {
    opacity: 1;
    transform: translateY(0);
}

.etterem-etlap-grid-item {
    border-right: 1px solid rgba(27, 54, 34, 0.2);
    border-bottom: 1px solid rgba(27, 54, 34, 0.2);
    box-sizing: border-box;
    padding: 40px;
    display: flex;
    flex-direction: column;
    background-color: #fafaf3;
    transition: background-color 0.4s ease;
}

.etterem-etlap-grid-item:hover {
    background-color: #f5f5eb;
}

.etterem-etlap-grid-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.etterem-etlap-grid-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.etterem-etlap-grid-item:hover .etterem-etlap-grid-image::after {
    background: rgba(0, 0, 0, 0.30);
}

.etterem-etlap-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.etterem-etlap-grid-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0 15px 0;
    text-align: left;
}

.etterem-etlap-grid-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 25px 0;
    text-align: left;
    flex-grow: 1;
}

.etterem-etlap-grid-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #285032;
    text-decoration: none;
    border-bottom: 2px solid #285032;
    padding-bottom: 3px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.etterem-etlap-grid-link:hover {
    color: #1b3622;
    border-bottom-color: #1b3622;
}

.etterem-etlap-grid-link:hover .stretch-arrow::before {
    width: 20px;
}

@media (max-width: 1460px) {
    .etterem-etlap-container {
        padding: 0 20px;
    }
}

@media (max-width: 1200px) {
    .etterem-etlap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .etterem-etlap-section {
        padding: 50px 0;
    }

    .etterem-etlap-grid {
        grid-template-columns: 1fr;
        border-left: none;
    }

    .etterem-etlap-grid-item {
        border-right: none;
        padding: 30px 10px;
    }
}

/* ========================================
   WELLNESS ALOLDAL
   ======================================== */

.wellness-intro-section {
    padding: 80px 0;
    background-color: #fafaf3;
    text-align: center;
}

.wellness-intro-container {
    max-width: 1129px;
    margin: 0 auto;
    padding: 0 20px;
}

.wellness-intro-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.16px;
    color: #555555;
    margin-bottom: 15px;
}

.wellness-intro-text p.wellness-intro-email {
    font-family: 'Boita', serif;
    font-size: 20px;
    color: #285032;
    font-weight: 500;
    margin-top: 30px;
}

.wellness-intro-text p.wellness-intro-email a {
    color: #285032;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.wellness-intro-text p.wellness-intro-email a:hover {
    color: #1b3622;
}

/* Row sections (alternating image / text) */
.wellness-section-row {
    padding: 30px 0;
    background-color: #fafaf3;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.wellness-section-row.revealed {
    opacity: 1;
    transform: translateY(0);
}

.wellness-row-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.wellness-section-row:nth-of-type(even) .wellness-row-container {
    flex-direction: row-reverse;
}

.wellness-row-image {
    width: 745px;
    height: 640px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.wellness-row-image-narrow {
    width: 555px;
    height: 640px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.wellness-row-image-medium {
    height: 540px;
}

.wellness-row-image img,
.wellness-row-image-narrow img,
.wellness-row-image-medium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wellness-row-text {
    flex-grow: 1;
    max-width: 650px;
}

.wellness-row-text-wide {
    flex-grow: 1;
    max-width: 745px;
}

.wellness-row-title {
    font-family: 'Boita', serif;
    font-size: 40px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.wellness-row-paragraph {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.wellness-row-bullets {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.wellness-bullets-line {
    margin: 25px 0 0 0;
    padding: 0 0 0 20px;
    border-left: 1px solid #000;
}

.wellness-bullets-line li::before,
.wellness-row-bullets.wellness-bullets-line li::before {
    display: none !important;
}

.wellness-row-bullets li {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #555555;
    margin-bottom: 0px;
    line-height: 26px;
    display: flex;
    align-items: center;

}

.wellness-row-bullets li::before {
    content: '';
    display: inline-block;
    width: 11px;
    height: 10px;
    margin-right: 12px;
    background-image: url('../images/felsorolas_bulletpoint.svg');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Double column section (Jacuzzi / Indoor Pool) */
.wellness-columns-section {
    padding: 30px 0;
    background-color: #fafaf3;
}

.wellness-columns-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.wellness-column-card {
    display: flex;
    flex-direction: column;
}

.wellness-column-card:first-child {
    width: 555px;
    flex-shrink: 0;
}

.wellness-column-card:last-child {
    width: 745px;
    flex-shrink: 0;
}

.wellness-column-image {
    position: relative;
    width: 100%;
    height: 540px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.wellness-column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wellness-column-title {
    font-family: 'Boita', serif;
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 25px 0 15px 0;
}

.wellness-column-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #555555;
    margin: 25px 0 0 0;
}

/* Grid section */
.wellness-grid-section {
    padding: 80px 0;
    background-color: #fafaf3;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.wellness-grid-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.wellness-grid-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.wellness-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 454px);
    width: 908px;
    margin: 40px auto 0 auto;
    border-top: 1px solid rgba(27, 54, 34, 0.2);
    border-left: 1px solid rgba(27, 54, 34, 0.2);
}

.wellness-grid-item {
    border-right: 1px solid rgba(27, 54, 34, 0.2);
    border-bottom: 1px solid rgba(27, 54, 34, 0.2);
    box-sizing: border-box;
    padding: 40px;
    display: flex;
    flex-direction: column;
    background-color: #fafaf3;
    transition: background-color 0.4s ease;
}

.wellness-grid-item:hover {
    background-color: #f5f5eb;
}

.wellness-grid-image {
    position: relative;
    width: 100%;
    max-width: 374px;
    height: 327px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.wellness-grid-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.wellness-grid-item:hover .wellness-grid-image::after {
    background: rgba(0, 0, 0, 0.3);
}

.wellness-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wellness-grid-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0 15px 0;
}

.wellness-grid-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.wellness-grid-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #285032;
    text-decoration: none;
    border-bottom: 2px solid #285032;
    padding-bottom: 3px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.wellness-grid-link:hover {
    color: #1b3622;
    border-bottom-color: #1b3622;
}

/* Responsive Wellness styling */
@media (max-width: 1200px) {
    .wellness-row-container {
        flex-direction: column !important;
        gap: 40px;
    }

    .wellness-row-image,
    .wellness-row-image-narrow,
    .wellness-row-image-medium {
        width: 100%;
        height: 400px;
    }

    .wellness-row-text,
    .wellness-row-text-wide {
        max-width: 100%;
    }

    .wellness-columns-container {
        flex-direction: column;
        gap: 40px;
    }

    .wellness-column-card,
    .wellness-column-card:first-child,
    .wellness-column-card:last-child {
        width: 100%;
    }

    .wellness-column-image {
        height: 400px;
    }
}

@media (max-width: 960px) {
    .wellness-card-grid {
        grid-template-columns: 1fr;
        border-left: none;
        width: 100%;
    }

    .wellness-grid-item {
        border-right: none;
        padding: 30px 10px;
    }

    .wellness-grid-image {
        max-width: none;
        height: auto;
        aspect-ratio: 374 / 327;
    }
}

/* ========================================
   RENDEZVÉNY ALOLDAL
   ======================================== */

.rendezveny-intro-section {
    padding: 80px 0;
    background-color: #fafaf3;
    text-align: center;
}

.rendezveny-intro-container {
    max-width: 1129px;
    margin: 0 auto;
    padding: 0 20px;
}

.rendezveny-intro-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.16px;
    color: #555555;
    margin-bottom: 15px;
}

.rendezveny-intro-text p.rendezveny-intro-email {
    font-family: 'Boita', serif;
    font-size: 20px;
    color: #285032;
    font-weight: 500;
    margin-top: 30px;
}

.rendezveny-intro-text p.rendezveny-intro-email a {
    color: #285032;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.rendezveny-intro-text p.rendezveny-intro-email a:hover {
    color: #1b3622;
}

/* Row sections (alternating image / text) */
.rendezveny-section-row {
    padding: 30px 0;
    background-color: #fafaf3;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.rendezveny-section-row.revealed {
    opacity: 1;
    transform: translateY(0);
}

.rendezveny-row-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.rendezveny-section-row.reverse .rendezveny-row-container {
    flex-direction: row-reverse;
}

.rendezveny-row-image {
    width: 100%;
    max-width: 745px;
    height: 640px;
    flex-shrink: 1;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rendezveny-row-image-narrow {
    width: 100%;
    max-width: 555px;
    height: 640px;
    flex-shrink: 1;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rendezveny-row-image-medium {
    height: 540px;
}

.biliard-section .rendezveny-row-image {
    position: relative;
    left: -40px;
}

.rendezveny-row-image img,
.rendezveny-row-image-narrow img,
.rendezveny-row-image-medium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rendezveny-row-text {
    flex-grow: 1;
    max-width: 555px;
}

.rendezveny-row-text-wide {
    flex-grow: 1;
    max-width: 745px;
}

.rendezveny-row-title {
    font-family: 'Boita', serif;
    font-size: 40px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.rendezveny-row-paragraph {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.rendezveny-row-paragraph a {
    font-weight: 500;
    color: #285032;
}

.rendezveny-row-bullets {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.rendezveny-bullets-line {
    margin: 25px 0 0 0;
    padding: 0 0 0 20px;
    border-left: 1px solid #000;
}

.rendezveny-bullets-line li::before,
.rendezveny-row-bullets.rendezveny-bullets-line li::before {
    display: none !important;
}

.rendezveny-row-bullets li {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #555555;
    margin-bottom: 0px;
    line-height: 26px;
    display: flex;
    align-items: center;
}

.rendezveny-row-bullets li::before {
    content: '';
    display: inline-block;
    width: 11px;
    height: 10px;
    margin-right: 12px;
    background-image: url('../images/felsorolas_bulletpoint.svg');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Double column section (Venues) */
.rendezveny-columns-section {
    padding: 30px 0;
    background-color: #fafaf3;
}

.rendezveny-columns-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    gap: 60px;
}

.rendezveny-column-card {
    display: flex;
    flex-direction: column;
}

.rendezveny-column-card:first-child {
    width: 100%;
    max-width: 785px;
    flex-shrink: 1;
}

.rendezveny-column-card:last-child {
    width: 100%;
    max-width: 515px;
    flex-shrink: 1;
}

.rendezveny-column-image {
    position: relative;
    width: 100%;
    height: 540px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rendezveny-column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rendezveny-column-title {
    font-family: 'Boita', serif;
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 25px 0 15px 0;
}

.rendezveny-column-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #555555;
    margin: 25px 0 0 0;
}

/* Grid section */
.rendezveny-grid-section {
    padding: 80px 0;
    background-color: #fafaf3;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.rendezveny-grid-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.rendezveny-grid-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.rendezveny-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 454px);
    width: 908px;
    margin: 40px auto 0 auto;
    border-top: 1px solid rgba(27, 54, 34, 0.2);
    border-left: 1px solid rgba(27, 54, 34, 0.2);
}

.rendezveny-grid-item {
    border-right: 1px solid rgba(27, 54, 34, 0.2);
    border-bottom: 1px solid rgba(27, 54, 34, 0.2);
    box-sizing: border-box;
    padding: 40px;
    display: flex;
    flex-direction: column;
    background-color: #fafaf3;
    transition: background-color 0.4s ease;
}

.rendezveny-grid-item:hover {
    background-color: #f5f5eb;
}

.rendezveny-grid-image {
    position: relative;
    width: 100%;
    max-width: 374px;
    height: 327px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.rendezveny-grid-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.rendezveny-grid-item:hover .rendezveny-grid-image::after {
    background: rgba(0, 0, 0, 0.3);
}

.rendezveny-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rendezveny-grid-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0 15px 0;
}

.rendezveny-grid-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.rendezveny-grid-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #285032;
    text-decoration: none;
    border-bottom: 2px solid #285032;
    padding-bottom: 3px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.rendezveny-grid-link:hover {
    color: #1b3622;
    border-bottom-color: #1b3622;
}

/* Responsive Rendezvény styling */
@media (max-width: 1200px) {
    .rendezveny-row-container {
        flex-direction: column !important;
        gap: 40px;
    }

    .rendezveny-row-image,
    .rendezveny-row-image-narrow,
    .rendezveny-row-image-medium {
        width: 100%;
        height: 400px;
    }

    .rendezveny-row-text,
    .rendezveny-row-text-wide {
        max-width: 100%;
    }

    .biliard-section .rendezveny-row-image {
        left: 0;
    }

    .rendezveny-columns-container {
        flex-direction: column;
        gap: 40px;
    }

    .rendezveny-column-card,
    .rendezveny-column-card:first-child,
    .rendezveny-column-card:last-child {
        width: 100%;
    }

    .rendezveny-column-image {
        height: 400px;
    }
}

@media (max-width: 960px) {
    .rendezveny-card-grid {
        grid-template-columns: 1fr;
        border-left: none;
        width: 100%;
    }

    .rendezveny-grid-item {
        border-right: none;
        padding: 30px 10px;
    }

    .rendezveny-grid-image {
        max-width: none;
        height: auto;
        aspect-ratio: 374 / 327;
    }
}

/* ========================================
   RENDEZVÉNY — Jellemzők & Felszereltség
   ======================================== */
.rendezveny-felszereltseg-section {
    padding: 80px 0;
    background-color: #f0f0e6;
}

.rendezveny-felszereltseg-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.rendezveny-felszereltseg-title {
    font-family: 'Boita', serif;
    font-size: 68px;
    font-weight: 500;
    text-align: left;
    color: #1a1a1a;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.rendezveny-felszereltseg-section.revealed .rendezveny-felszereltseg-title {
    opacity: 1;
    transform: translateY(0);
}

.rendezveny-felszereltseg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

.rendezveny-felszereltseg-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.rendezveny-felszereltseg-section.revealed .rendezveny-felszereltseg-item {
    opacity: 1;
    transform: translateY(0);
}

.rendezveny-felszereltseg-section.revealed .rendezveny-felszereltseg-item:nth-child(1) {
    transition-delay: 0.1s;
}

.rendezveny-felszereltseg-section.revealed .rendezveny-felszereltseg-item:nth-child(2) {
    transition-delay: 0.2s;
}

.rendezveny-felszereltseg-section.revealed .rendezveny-felszereltseg-item:nth-child(3) {
    transition-delay: 0.3s;
}

.rendezveny-felszereltseg-section.revealed .rendezveny-felszereltseg-item:nth-child(4) {
    transition-delay: 0.4s;
}

.rendezveny-felszereltseg-section.revealed .rendezveny-felszereltseg-item:nth-child(5) {
    transition-delay: 0.5s;
}

.rendezveny-felszereltseg-section.revealed .rendezveny-felszereltseg-item:nth-child(6) {
    transition-delay: 0.6s;
}

.rendezveny-felszereltseg-section.revealed .rendezveny-felszereltseg-item:nth-child(7) {
    transition-delay: 0.7s;
}

.rendezveny-felszereltseg-section.revealed .rendezveny-felszereltseg-item:nth-child(8) {
    transition-delay: 0.8s;
}

.rendezveny-felszereltseg-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.rendezveny-felszereltseg-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .rendezveny-felszereltseg-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 900px) {
    .rendezveny-felszereltseg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .rendezveny-felszereltseg-title {
        font-size: 48px;
    }
}

@media (max-width: 600px) {
    .rendezveny-felszereltseg-section {
        padding: 60px 0;
    }

    .rendezveny-felszereltseg-container {
        padding: 0 20px;
    }

    .rendezveny-felszereltseg-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

/* ==========================================================================
   GALLERY GROUPS & ALBUMS PAGE (galeria_csoport.php)
   ========================================================================== */

.gallery-csoport-section {
    padding: 120px 0;
    background-color: #fafaf3;
    min-height: 800px;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    transition: opacity 0.4s ease;
}

.gallery-page-title {
    font-family: 'Boita', serif;
    font-size: 42px;
    font-weight: bold;
    color: #000000;
    margin: 0;
}

.gallery-tabs {
    display: flex;
    gap: 15px;
}

.gallery-tab-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #777777;
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.gallery-tab-btn:hover {
    color: #285032;
}

.gallery-tab-btn.active {
    color: #285032;
    border-bottom-color: #285032;
    font-weight: 700;
}

/* Album Selection Grid (3 columns) */
.gallery-album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-album-card {
    width: 100%;
    height: 480px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;

    /* Initial state for fade-in effect on scroll */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.gallery-album-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.gallery-album-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-album-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-album-card:hover::after {
    background: rgba(0, 0, 0, 0.30);
}

.gallery-album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* cover image zoom removed per request */

.gallery-album-card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: auto;
    min-height: 120px;
    background: #F0F0E6;
    opacity: 0.95;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    box-sizing: border-box;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.gallery-album-card-title {
    text-align: left;
    font: normal normal bold 22px/24px 'Open Sans', sans-serif;
    letter-spacing: 0.22px;
    color: #000000;
    margin: 0 0 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-album-card-paragraph {
    text-align: left;
    font: normal normal normal 16px/24px 'Open Sans', sans-serif;
    letter-spacing: 0.16px;
    color: #000000;
    margin: 0 0 15px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
}

.gallery-album-card-action {
    display: flex;
    justify-content: flex-start;
}

.gallery-album-card-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #285032;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 2px solid #285032;
    padding-bottom: 3px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.gallery-album-card:hover .gallery-album-card-link {
    color: #1b3622;
    border-bottom-color: #1b3622;
}

.gallery-album-card:hover .stretch-arrow::before,
.gallery-album-card-link:hover .stretch-arrow::before {
    width: 20px;
}

/* Detail Viewer (Album image list) */
.gallery-detail-viewer {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(40, 80, 50, 0.1);
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.gallery-back-btn {
    background: transparent;
    border: none;
    color: #285032;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.gallery-back-btn:hover {
    color: #1b3622;
    border-bottom-color: #1b3622;
}

.gallery-detail-title {
    font-family: 'Boita', serif;
    font-size: 36px;
    color: #000000;
    margin: 0;
}

.gallery-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-image-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    background-color: #f0f0e6;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.gallery-image-item.loaded {
    opacity: 1;
    transform: translateY(0);
}

.gallery-image-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-image-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-image-item:hover::after {
    background: rgba(0, 0, 0, 0.30);
}


/* Progressive Scroll Loader Spinner */
.gallery-scroll-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0 20px 0;
    width: 100%;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(40, 80, 50, 0.1);
    border-radius: 50%;
    border-top-color: #285032;
    animation: gallery-spin 1s linear infinite;
}

@keyframes gallery-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Premium Lightbox Modal */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(15, 15, 15, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 56px;
    font-weight: 300;
    cursor: pointer;
    line-height: 0.8;
    transition: color 0.3s ease;
    z-index: 2010;
}

.lightbox-close:hover {
    color: #FFC670;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2010;
}

.lightbox-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFC670;
    border-color: rgba(255, 255, 255, 0.3);
}

.lightbox-nav-btn.prev-btn {
    left: 40px;
}

.lightbox-nav-btn.next-btn {
    right: 40px;
}

.lightbox-nav-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.lightbox-nav-btn.prev-btn:hover svg {
    transform: translateX(-2px);
}

.lightbox-nav-btn.next-btn:hover svg {
    transform: translateX(2px);
}

.lightbox-content {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-lightbox.active .lightbox-content img {
    opacity: 1;
    transform: scale(1);
}

.lightbox-caption {
    color: #ffffff;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 25px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Styles for Gallery */
@media (max-width: 1200px) {
    .gallery-album-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gallery-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-csoport-section {
        padding: 80px 0;
    }

    .gallery-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        margin-bottom: 40px;
    }

    .gallery-page-title {
        font-size: 34px;
    }

    .gallery-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
    }

    .gallery-tab-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    .gallery-album-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-album-card {
        height: 420px;
    }

    .gallery-images-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-image-item {
        aspect-ratio: 4/3;
    }

    .gallery-detail-header {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .gallery-detail-title {
        font-size: 30px;
    }

    .lightbox-nav-btn {
        width: 48px;
        height: 48px;
    }

    .lightbox-nav-btn.prev-btn {
        left: 15px;
    }

    .lightbox-nav-btn.next-btn {
        right: 15px;
    }

    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 44px;
    }
}

/* ==========================================================================
   NEWS GROUPS & DETAILS PAGE (hirek_csoport.php)
   ========================================================================== */

.news-csoport-section {
    padding: 120px 0;
    background-color: #fafaf3;
    min-height: 800px;
    transition: opacity 0.4s ease;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-controls-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 30px;
}

/* Search Bar styling */
.news-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 440px;
}

.news-search-wrapper input {
    width: 100%;
    padding: 5px 35px 12px 0;
    border: none;
    border-bottom: 2px solid #1a1a1a;
    border-radius: 0;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    color: #000000;
    background-color: transparent;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: none;
}

.news-search-wrapper input:focus {
    border-bottom-color: #285032;
    box-shadow: none;
}

.news-search-btn {
    position: absolute;
    right: 0;
    background: transparent;
    border: none;
    color: #285032;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.3s ease;
}

.news-search-btn:hover {
    color: #1b3622;
}

/* Filter tabs styling */
.news-tabs {
    display: flex;
    gap: 10px;
}

.news-tab-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #777777;
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.news-tab-btn:hover {
    color: #285032;
}

.news-tab-btn.active {
    color: #285032;
    border-bottom-color: #285032;
    font-weight: 700;
}

/* Section Title layout */
.news-section-title-wrapper {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(40, 80, 50, 0.1);
    padding-bottom: 16px;
}

.news-grid-heading {
    font-family: 'Boita', serif;
    font-size: 32px;
    font-weight: bold;
    color: #000000;
    margin: 0;
}

/* Small Cards Grid (4 columns) */
.news-small-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.hirek-card-small {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.hirek-card-small.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hirek-card-small:hover {
    /* subtle shadow boost on hover */
}

.hirek-card-small-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hirek-card-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.hirek-card-small-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.hirek-card-small:hover .hirek-card-small-image::after {
    background: rgba(0, 0, 0, 0.25);
}

.hirek-card-small-content {
    display: flex;
    flex-direction: column;
}

.hirek-card-small-date {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1px;
    color: #888888;
    margin-bottom: 6px;
}

.hirek-card-small-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
    transition: color 0.3s ease;
}

.hirek-card-small:hover .hirek-card-small-title {
    color: #285032;
}

.hirek-card-small-description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #555555;
    margin: 0;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 65px;
}

/* Empty State styling */
.news-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    text-align: center;
    color: #777777;
}

.news-empty-state svg {
    color: #285032;
    margin-bottom: 24px;
}

.news-empty-state h3 {
    font-family: 'Boita', serif;
    font-size: 24px;
    color: #000000;
    margin: 0 0 10px 0;
}

.news-empty-state p {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    margin: 0;
}

/* News Detailed View Section */
.news-detail-section {
    background-color: #fafaf3;
    transition: opacity 0.4s ease;
}

.news-detail-banner {
    position: relative;
    width: 100%;
    height: 550px;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.news-detail-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.news-detail-banner-content {
    position: relative;
    width: 100%;
    z-index: 10;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.news-detail-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.news-detail-back-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.news-detail-back-btn:hover {
    color: #FFC670;
    border-bottom-color: #FFC670;
}

.news-detail-meta-date {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFC670;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.news-detail-main-title {
    font-family: 'Boita', serif;
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.news-detail-short-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    max-width: 960px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Detailed news header items delayed transition styling */
.news-detail-back-btn {
    opacity: 0;
    transform: translateY(-20px);
    transition: color 0.3s ease, border-bottom-color 0.3s ease, opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-detail-meta-date,
.news-detail-main-title,
.news-detail-short-desc {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-detail-section.active .news-detail-back-btn,
.news-detail-section.active .news-detail-meta-date,
.news-detail-section.active .news-detail-main-title,
.news-detail-section.active .news-detail-short-desc {
    opacity: 1;
    transform: translateY(0);
}

.news-detail-section.active .news-detail-back-btn {
    transition-delay: 0.1s;
}

.news-detail-section.active .news-detail-meta-date {
    transition-delay: 0.25s;
}

.news-detail-section.active .news-detail-main-title {
    transition-delay: 0.4s;
}

.news-detail-section.active .news-detail-short-desc {
    transition-delay: 0.55s;
}

/* Scroll reveal utility for detailed news content */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.news-detail-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 60px 20px 100px 20px;
    box-sizing: border-box;
}

.news-detail-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1360px;
    margin: 0 auto;
}

.news-detail-main-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.news-detail-left-image {
    flex: 0 0 515px;
    width: 515px;
    aspect-ratio: 16 / 10;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #f0f0e6;
}

.news-detail-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-detail-paragraphs {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #222222;
    line-height: 1.85;
    letter-spacing: 0.1px;
}

.news-detail-paragraphs p {
    margin: 0 0 25px 0;
}

.news-detail-paragraphs p:last-child {
    margin: 0;
}

/* Detail view inline gallery (images below article) */
.news-detail-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.detail-gallery-item {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #f0f0e6;
}

.detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.detail-gallery-item:hover img {
    transform: scale(1.02);
}

/* Social Sharing Bar styling */
.news-detail-social-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(40, 80, 50, 0.12);
    padding-top: 30px;
    margin-top: 60px;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
}

.social-left-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.back-page-btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #285032;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    background: transparent;
    border-bottom: 2px solid #285032;
    padding: 0 0 3px 0;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.back-page-btn:hover {
    color: #1b3622;
    border-bottom-color: #1b3622;
}

.back-page-btn .stretch-arrow {
    transform: translateY(1px);
}

.stretch-arrow.left {
    transform: scaleX(-1) translateY(1px);
    margin-left: 0;
    margin-right: 10px;
}

.news-detail-back-btn:hover .stretch-arrow::before,
.szallas-detail-back-btn:hover .stretch-arrow::before,
.gallery-back-btn:hover .stretch-arrow::before,
.back-page-btn:hover .stretch-arrow::before {
    width: 20px;
}

.social-bar-label {
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #666666;
}

.social-icons-wrapper {
    display: flex;
    gap: 12px;
}

.social-share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 30px;
    padding: 0 16px 2px 16px;
    background-color: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 100px;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-decoration: none;
}

.social-share-icon:hover {
    background-color: #285032;
    color: #ffffff;
    border-color: #285032;
}

.social-share-icon svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.social-share-icon:hover svg {
    transform: translateY(-1px);
}

/* Responsive Rules for News */
@media (max-width: 1200px) {
    .news-small-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .news-detail-main-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .news-controls-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }

    .news-search-wrapper {
        width: 100%;
    }

    .news-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .news-tab-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    .news-small-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .news-detail-banner {
        height: 460px;
    }

    .news-detail-main-title {
        font-size: 34px;
    }

    .news-detail-short-desc {
        font-size: 16px;
    }

    .news-detail-main-content {
        flex-direction: column;
        gap: 30px;
    }

    .news-detail-left-image {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .news-detail-social-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 20px;
    }

    .social-left-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: auto;
    }

    .social-icons-wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .news-csoport-section {
        padding: 80px 0;
    }

    .news-grid-heading {
        font-size: 26px;
    }

    .news-small-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hirek-card-small {
        height: auto;
    }

    .hirek-card-small-image {
        height: 180px;
    }

    .news-detail-banner {
        height: 380px;
    }

    .news-detail-main-title {
        font-size: 26px;
    }

    .news-detail-short-desc {
        font-size: 15px;
    }

    .news-detail-social-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 15px;
    }

    .social-icons-wrapper {
        width: auto;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-share-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }

    .social-icon-text {
        display: none;
    }

    .social-share-icon svg {
        width: 20px;
        height: 20px;
    }

    .news-detail-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   Lodging Details Page (szallas_reszletek.php) Styles
   ========================================================================== */

.szallas-detail-hero {
    height: 65vh;
    min-height: 480px;
}

.szallas-detail-hero .szallas-hero-title {
    font-size: 110px;
}

.szallas-detail-section {
    padding: 20px 0 60px 0;
    position: relative;
}

.szallas-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.szallas-detail-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.szallas-detail-left {
    display: flex;
    flex-direction: column;
}

.szallas-detail-header-nav {
    margin-bottom: 35px;
}

.szallas-detail-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #285032;
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.szallas-detail-back-btn:hover {
    color: #1a3622;
}

.szallas-detail-main-heading {
    font-family: 'Boita', serif;
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
}

.szallas-detail-main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #285032;
}

.szallas-detail-long-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #222222;
    line-height: 1.85;
    letter-spacing: 0.1px;
    margin-bottom: 50px;
}

.szallas-detail-long-desc p {
    margin: 0 0 22px 0;
}

.szallas-detail-long-desc p:last-child {
    margin: 0;
}

.szallas-detail-subheading {
    font-family: 'Boita', serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    letter-spacing: 0.5px;
}

.szallas-detail-inline-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 10px;
}

.szallas-detail-gallery-item {
    aspect-ratio: 16/11;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    background-color: #f0f0e6;
}

.szallas-detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.szallas-detail-gallery-item:hover img {
    transform: scale(1.04);
}

.szallas-detail-sidebar {
    background-color: #ffffff;
    border: 1px solid rgba(40, 80, 50, 0.08);
    border-radius: 4px;
    padding: 40px 30px;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 180px;
    z-index: 10;
}

.sidebar-room-title {
    font-family: 'Boita', serif;
    font-size: 28px;
    font-weight: 700;
    color: #285032;
    margin: 0 0 15px 0;
}

.sidebar-room-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.szallas-booking-cta-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background-color: #285032;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-family: 'Mulish', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(40, 80, 50, 0.15);
}

.szallas-booking-cta-btn:hover {
    background-color: #1a3622;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 80, 50, 0.25);
}

.szallas-booking-cta-btn:active {
    transform: translateY(0);
}

.sidebar-amenities-section {
    border-top: 1px solid rgba(40, 80, 50, 0.1);
    padding-top: 30px;
}

.sidebar-amenities-title {
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
    margin: 0 0 24px 0;
}

.sidebar-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
}

.sidebar-amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-amenity-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0e6;
    border-radius: 50%;
    padding: 6px;
    box-sizing: border-box;
}

.sidebar-amenity-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sidebar-amenity-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #333333;
    line-height: 1.35;
}

.szallas-detail-social-section {
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid rgba(40, 80, 50, 0.12);
    border-bottom: 1px solid rgba(40, 80, 50, 0.12);
    padding: 35px 0;
    margin-top: 50px;
    margin-bottom: 0;
}

.szallas-detail-social-section .news-detail-social-bar {
    max-width: 100%;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* Responsive Rules for Lodging Details */
@media (max-width: 1200px) {
    .szallas-detail-grid {
        grid-template-columns: 1fr 360px;
        gap: 40px;
    }

    .szallas-detail-hero .szallas-hero-title {
        font-size: 90px;
    }
}

@media (max-width: 992px) {
    .szallas-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .szallas-detail-sidebar,
    .ajanlat-detail-sidebar {
        position: static;
        top: auto;
    }

    .szallas-detail-left {
        width: 100%;
        max-width: 900px;
    }

    .szallas-detail-right {}

    .szallas-detail-hero {
        height: 55vh;
        min-height: 380px;
    }

    .szallas-detail-hero .szallas-hero-title {
        font-size: 70px;
    }
}

@media (max-width: 600px) {
    .szallas-detail-section {
        padding: 10px 0 40px 0;
    }

    .szallas-detail-main-heading {
        font-size: 28px;
    }

    .szallas-detail-long-desc {
        font-size: 16px;
        line-height: 1.75;
    }

    .szallas-detail-inline-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sidebar-amenities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .szallas-detail-hero .szallas-hero-title {
        font-size: 48px;
    }
}

/* Detailed Offer Sidebar and List Styling */
.ajanlat-detail-sidebar {
    position: sticky;
    top: 140px;
    background-color: #ffffff;
    border: 1px solid rgba(40, 80, 50, 0.1);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.ajanlat-sidebar-title {
    font-family: 'Boita', serif;
    font-size: 24px;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    border-bottom: 1px solid rgba(40, 80, 50, 0.1);
    padding-bottom: 12px;
}

.ajanlatok-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.sidebar-ajanlat-card {
    display: flex;
    gap: 15px;
    background: #ffffff;
    border: 1px solid rgba(40, 80, 50, 0.1);
    border-radius: 4px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.sidebar-ajanlat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 80, 50, 0.08);
    border-color: rgba(40, 80, 50, 0.3);
}

.sidebar-ajanlat-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
}

.sidebar-ajanlat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-ajanlat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-ajanlat-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.sidebar-ajanlat-card:hover .sidebar-ajanlat-title {
    color: #285032;
}

.sidebar-ajanlat-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #666666;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Active language highlighting in header */
header .jobb ul li a.active-lang::after {
    background-color: #FFFFFF;
}

header.scrolled .jobb ul li a.active-lang::after {
    background-color: #1a1a1a;
}

/* Fallback logo styling for news cards */
.hirek-card-image.fallback-bg,
.hirek-card-small-image.fallback-bg {
    background-color: #f5f5f5 !important;
}

.hirek-card-image img.fallback-logo,
.hirek-card-small-image img.fallback-logo {
    width: 50% !important;
    height: auto !important;
    max-height: 50% !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    object-fit: contain !important;
}

/* Fallback styling for offers */
.ajanlat-card.fallback-bg {
    background-color: #f5f5f5 !important;
}

.ajanlat-card img.fallback-logo {
    width: 40% !important;
    height: auto !important;
    max-height: 40% !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    object-fit: contain !important;
}

/* Other Rooms Sidebar Listing */
.sidebar-szoba-section {
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
}

.sidebar-szoba-section-title {
    font-family: 'Boita', serif;
    font-size: 20px;
    font-weight: bold;
    color: #285032;
    margin: 0 0 20px 0;
}

.sidebar-szoba-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-szoba-card {
    display: flex;
    gap: 15px;
    background: #fbfbf6;
    border: 1px solid rgba(40, 80, 50, 0.1);
    border-radius: 4px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.sidebar-szoba-card:hover {
    background: #eaeae0;
    border-color: rgba(40, 80, 50, 0.3);
}

.sidebar-szoba-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
}

.sidebar-szoba-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-szoba-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-szoba-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.sidebar-szoba-card:hover .sidebar-szoba-title {
    color: #285032;
}

.sidebar-szoba-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #666666;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Dropdown Menu Styles */
.menu-dropdown-wrapper {
    position: relative;
}

.menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.menu-dropdown-wrapper:hover .menu-dropdown {
    display: block;
}

.menu-dropdown li {
    display: block;
    padding: 0;
    margin: 0;
}

.menu-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.menu-dropdown li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Document Link and Button Styling */
.document-link-wrapper {
    margin: 20px 0;
    display: block;
    width: 100%;
}

.document-btn {
    display: inline-flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 25px;
    background-color: #ffffff;
    color: #284c33;
    border: 1px solid #284c33;
    border-radius: 100px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.document-btn:hover {
    background-color: #284c33;
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(40, 76, 51, 0.15);
    text-decoration: none;
}