@media (max-width: 1023px) {
    .header-actions,
    .contact-link.phone,
    .contact-link.email {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

:root {
    --primary-color: #2c5530;
    --secondary-color: #6b8e23;
    --accent-color: #4682b4;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    --header-height: 60px;
    --footer-bg: #1a1a1a;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .header {
        justify-content: center;
        position: relative;
    }
    
    .menu-toggle {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .header-actions {
        display: none !important;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
    padding: 5px;
    outline: none;
}

.logo-container:focus {
    outline: none;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-image-wrapper {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(44, 85, 48, 0.2);
    border: 2px solid var(--primary-color);
    background: var(--white);
    transition: var(--transition);
}

.logo-container:hover .logo-image-wrapper {
    box-shadow: 0 3px 12px rgba(44, 85, 48, 0.3);
    border-color: var(--secondary-color);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.logo-container:hover .logo-image {
    transform: scale(1.1);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: var(--transition);
}

.logo-container:hover .logo-title {
    color: var(--secondary-color);
}

.logo-container:hover .logo-subtitle {
    opacity: 1;
    color: var(--text-color);
}

.logo, .logo-link {
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    order: 2;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
    margin: 3px 0;
}

.menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}

.menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .contact-link.phone {
        display: none !important;
    }
}

.contact-link,
.social-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.contact-link:hover,
.social-icon:hover {
    background: var(--bg-color);
    color: var(--primary-color);
}

.desktop-only {
    display: none !important;
}

.desktop-nav {
    display: none;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-header .logo-container {
    padding: 0;
    outline: none;
}

.mobile-nav-header .logo-container:hover {
    transform: none;
}

.mobile-nav-header .logo-container:focus {
    outline: none;
}

.nav-list {
    list-style: none;
    padding: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    text-decoration: none !important;
}

.mobile-nav-link::before,
.mobile-nav-link::after {
    display: none !important;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--bg-color);
    color: var(--primary-color);
    text-decoration: none !important;
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1500;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-content {
    flex: 1;
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    padding-top: 0;
}

.page-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 600px;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-ribbon {
    background: rgba(46, 134, 171, 0.9);
    padding: 12px 25px;
    display: inline-block;
    position: relative;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.hero-ribbon::before,
.hero-ribbon::after {
    display: none;
}

.welcome-section {
    padding: 40px 0;
    text-align: center;
}

.welcome-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.welcome-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
}

.cta-section {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    min-width: 200px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

#contact {
    padding: 40px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.contact-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    display: block;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h3 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-card span {
    color: var(--text-light);
    font-size: 1rem;
}

.opening-hours {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 30px 0;
}

.opening-hours h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.day-row {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

.day-row.weekend {
    background: #f0f8ff;
}

.day {
    font-weight: 600;
    color: var(--text-color);
}

.hours {
    color: var(--text-light);
}

.hours.open {
    color: var(--secondary-color);
    font-weight: 600;
}

.hours.closed {
    color: #999;
}

.map-container {
    margin: 30px 0;
}

.map-container h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

#gallery {
    padding: 40px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.gallery-section {
    margin-bottom: 60px;
}

.gallery-section:last-child {
    margin-bottom: 0;
}

.gallery-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-subtitle i {
    font-size: 1.5rem;
}

.gallery-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-color);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

#prices {
    padding: 40px 0;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.price-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.price-card.featured {
    border: 2px solid var(--primary-color);
}

.price-card.featured::before {
    content: 'Népszerű';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
}

.price-header {
    margin-bottom: 20px;
}

.price-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price-header h3 {
    color: var(--text-color);
    margin-bottom: 0;
}

.price-detail {
    color: var(--text-light);
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.additional-services {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 30px 0;
}

.additional-services h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.service-name i {
    color: var(--primary-color);
    width: 20px;
}

.service-price {
    color: var(--primary-color);
    font-weight: 600;
    text-align: right;
}

.service-price small {
    display: block;
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.875rem;
}

.price-note {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.price-note p {
    margin: 10px 0;
}

.price-note i {
    color: var(--primary-color);
    margin-right: 5px;
}

.footer {
    background: var(--footer-bg);
    color: #ccc;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section a {
    color: #ccc;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-hours p {
    margin: 5px 0;
}

.footer-hours strong {
    color: var(--white);
}

.closed-days {
    color: #999;
    font-style: italic;
    margin-top: 10px;
}

.footer-social {
    margin: 15px 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-logo {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

.mobile-only {
    display: block;
}

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

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.hazirend-container {
    padding: 40px 0;
    min-height: calc(100vh - var(--header-height) - 200px);
}

.hazirend-box {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center center;
}

.hazirend-box:hover {
    box-shadow: 0 15px 40px rgba(44, 85, 48, 0.2);
}

.hazirend-title {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hazirend-title i {
    font-size: 2rem;
}

.rules-content {
    max-width: 900px;
    margin: 0 auto;
}

.rule-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.rule-item:hover {
    background: rgba(44, 85, 48, 0.05);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.rule-number {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.rule-text {
    flex: 1;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding-top: 5px;
}

.rule-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.rule-item.important {
    background: rgba(70, 130, 180, 0.05);
    border-left-color: var(--accent-color);
}

.rule-item.important:hover {
    background: rgba(70, 130, 180, 0.1);
}

.rule-item.important .rule-number {
    background: var(--accent-color);
}

.rule-item.warning {
    background: rgba(220, 20, 60, 0.05);
    border-left-color: #dc143c;
}

.rule-item.warning:hover {
    background: rgba(220, 20, 60, 0.1);
}

.rule-item.warning .rule-number {
    background: #dc143c;
}

.rule-item.warning .rule-text strong {
    color: #dc143c;
}

@media (max-width: 768px) {
    .hazirend-box {
        padding: 30px 20px;
    }
    
    .hazirend-title {
        font-size: 2rem;
    }
    
    .rule-item {
        padding: 12px;
    }
    
    .rule-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .rule-text {
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) {
    .hazirend-box {
        padding: 50px 40px;
    }
    
    .rule-item {
        padding: 18px;
    }
}
