/**
 * Főoldal specifikus stílusok
 */

/* Időpontfoglaló szekció */
.booking-section {
    background: linear-gradient(135deg, #959595 0%, #acacac 100%) !important;
    padding: 4rem 0 !important;
    margin: 2rem 0 !important;
}

.booking-hero {
    background: transparent !important;
}

@media (min-width: 1024px) {
    .hero-text {
        padding: 4rem;
    }
}

.booking-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: start !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

.booking-form-wrapper {
    background: white !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e9ecef !important;
}

.booking-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

.booking-form .form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
}

.booking-form .form-group {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 1rem !important;
}

.booking-form label {
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.9rem !important;
    display: block !important;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 0.75rem !important;
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: #f8f9fa !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #5c5e6b;
    background: white;
    box-shadow: 0 0 0 3px rgba(92, 94, 107, 0.1);
}

.booking-form input:invalid,
.booking-form select:invalid {
    border-color: #dc3545;
}

.booking-form .field-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.booking-form .field-error.show {
    display: block;
}

.time-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #e9ecef;
    border-top: 2px solid #5c5e6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-actions {
    margin-top: 1rem !important;
}

.booking-form .btn {
    background: #5c5e6b !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

.booking-form .btn:hover {
    background: #464852 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(92, 94, 107, 0.3) !important;
}

.booking-form .btn:disabled {
    background: #6c757d !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-info {
    background: white !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    height: fit-content !important;
    border: 1px solid #e9ecef !important;
}

.booking-info h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.booking-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.booking-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.booking-benefits li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.booking-benefits strong {
    color: #2c3e50;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.booking-benefits p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

.booking-contact {
    border-top: 2px solid #e9ecef;
    padding-top: 1.5rem;
}

.booking-contact h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.booking-contact p {
    margin: 0.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.booking-contact strong {
    color: #2c3e50;
}

/* Időpontok grid stílusok */
.time-slots-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
    gap: 0.5rem !important;
    margin-top: 0.5rem !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    padding: 0.75rem !important;
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    background: #f8f9fa !important;
}

.time-slot {
    padding: 0.5rem 0.75rem !important;
    background: white !important;
    border: 2px solid #e9ecef !important;
    border-radius: 6px !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    color: #2c3e50 !important;
    font-size: 0.85rem !important;
    min-height: 50px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
}

.time-slot:hover {
    border-color: #5c5e6b !important;
    background: #f0f1f3 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(92, 94, 107, 0.2) !important;
}

.time-slot.selected {
    background: #5c5e6b !important;
    color: white !important;
    border-color: #464852 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(92, 94, 107, 0.3) !important;
}

/* Múltbéli időpontok stílusai */
.time-slot.past-slot {
    background: #f8f9fa !important;
    color: #6c757d !important;
    border-color: #dee2e6 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    position: relative !important;
}

.time-slot.past-slot:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: #dee2e6 !important;
}

.time-slot.past-slot .past-indicator {
    position: absolute !important;
    top: 2px !important;
    right: 2px !important;
    background: #dc3545 !important;
    color: white !important;
    font-size: 0.6rem !important;
    padding: 1px 3px !important;
    border-radius: 3px !important;
    font-weight: bold !important;
    line-height: 1 !important;
}

/* Foglalt időpontok stílusai */
.time-slot.booked-slot {
    background: #fff3cd !important;
    color: #856404 !important;
    border-color: #ffeaa7 !important;
    cursor: not-allowed !important;
    position: relative !important;
}

.time-slot.booked-slot:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: #ffeaa7 !important;
}

.time-slot.booked-slot .booked-indicator {
    position: absolute !important;
    top: 2px !important;
    right: 2px !important;
    background: #ffc107 !important;
    color: #212529 !important;
    font-size: 0.6rem !important;
    padding: 1px 3px !important;
    border-radius: 3px !important;
    font-weight: bold !important;
    line-height: 1 !important;
}

/* Elérhető időpontok stílusai */
.time-slot.available-slot {
    background: white !important;
    color: #2c3e50 !important;
    border-color: #e9ecef !important;
    cursor: pointer !important;
}

.time-slot.available-slot:hover {
    border-color: #5c5e6b !important;
    background: #f0f1f3 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(92, 94, 107, 0.2) !important;
}

/* Időpont szöveg stílusai */
.time-slot .time-text {
    display: block !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
}

.time-slot .past-indicator,
.time-slot .booked-indicator {
    display: block !important;
    margin-top: 2px !important;
    font-size: 0.6rem !important;
    line-height: 1 !important;
}

.no-slots-message {
    text-align: center !important;
    color: #6c757d !important;
    font-style: italic !important;
    padding: 2rem !important;
    grid-column: 1 / -1 !important;
}

/* Kiválasztott időpont megjelenítés */
.selected-time-display {
    background: linear-gradient(135deg, #5c5e6b, #7a7e8f) !important;
    color: white !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    margin-bottom: 1rem !important;
    box-shadow: 0 4px 12px rgba(92, 94, 107, 0.3) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.selected-time-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
}

.selected-time-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 0.9rem !important;
}

.selected-time-text {
    flex: 1 !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
}

.selected-time-text strong {
    color: #fff !important;
    font-weight: 700 !important;
}

.selected-time-clear {
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    color: white !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.selected-time-clear:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1) !important;
}

/* Validációs stílusok */
.field-error {
    color: #dc3545 !important;
    font-size: 0.8rem !important;
    margin-top: 0.25rem !important;
    display: none !important;
    background: #f8d7da !important;
    border: 1px solid #f5c6cb !important;
    border-radius: 4px !important;
    padding: 0.5rem !important;
}

.field-error.show {
    display: block !important;
}

.field-success {
    color: #28a745 !important;
    font-size: 0.8rem !important;
    margin-top: 0.25rem !important;
    display: none !important;
    background: #d4edda !important;
    border: 1px solid #c3e6cb !important;
    border-radius: 4px !important;
    padding: 0.5rem !important;
}

.field-success.show {
    display: block !important;
}

.form-group input.invalid,
.form-group select.invalid {
    border-color: #dc3545 !important;
    background: #fff5f5 !important;
}

.form-group input.valid,
.form-group select.valid {
    border-color: #28a745 !important;
    background: #f8fff8 !important;
}

/* Modern notification stílusok */
.notification {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    padding: 1rem 1.5rem !important;
    border-radius: 8px !important;
    color: white !important;
    font-weight: 500 !important;
    z-index: 10000 !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease !important;
    max-width: 300px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.notification.show {
    transform: translateX(0) !important;
}

.notification.error {
    background: #dc3545 !important;
}

.notification.success {
    background: #28a745 !important;
}

.notification.warning {
    background: #ffc107 !important;
    color: #212529 !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .booking-form-wrapper,
    .booking-info {
        padding: 1.5rem !important;
    }
    
    .booking-benefits li {
        padding: 0.75rem !important;
    }
    
    .benefit-icon {
        font-size: 1.5rem !important;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
        gap: 0.5rem !important;
    }
    
    .time-slot {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8rem !important;
    }
    
    .notification {
        right: 10px !important;
        left: 10px !important;
        max-width: none !important;
    }
}

@media (max-width: 480px) {
    .booking-section {
        padding: 2rem 0;
    }
    
    .booking-form-wrapper,
    .booking-info {
        padding: 1rem;
    }
}

/* Hero szekció */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e2d9 100%);
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    background: #5c5e6bad;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    z-index: 2;
    padding: 2rem;
}

.hero-text h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero .hero-actions .btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    /* Touch-friendly */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    min-height: 44px;
    line-height: 1.5;
}

.hero .hero-actions .btn-primary {
    background-color: #ffffff;
    color: #5c5e6b;
    border: 2px solid #ffffff;
}

.hero .hero-actions .btn-primary:hover {
    background-color: #5c5e6b;
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.hero .hero-actions .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero .hero-actions .btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero .hero-actions .btn-outline:hover {
    background-color: #ffffff;
    color: #5c5e6b;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.hero .hero-actions .btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Hero navigáció */
.hero-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 4rem;
    z-index: 3;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    background: linear-gradient(135deg, #5c5e6b 0%, #464852 100%);
    color: #ffffff;
    border: 2px solid #5c5e6b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(92, 94, 107, 0.3);
    /* Touch-friendly area */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hero-prev:hover,
.hero-next:hover {
    background: linear-gradient(135deg, #464852 0%, #5c5e6b 100%);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(92, 94, 107, 0.4);
}

.hero-prev:active,
.hero-next:active {
    transform: scale(0.95);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
    padding: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Touch-friendly area */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    padding: 2px;
}

.dot.active,
.dot:hover {
    background: #5c5e6b;
    border-color: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(92, 94, 107, 0.4);
}

.dot:active {
    transform: scale(1.1);
}

/* Smooth scrolling és accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: opacity 0.3s ease;
    }
    
    .hero-prev,
    .hero-next,
    .dot {
        transition: none;
    }
}

/* Szekciók */
.intro-section,
.services-section,
.blog-section,
.gallery-section,
.contact-section {
    padding: 4rem 0;
}

.intro-section {
    background-color: #ffffff;
}

.services-section {
    background-color: #f8f6f3;
}

.blog-section {
    background-color: #ffffff;
}

.gallery-section {
    background-color: #f8f6f3;
}

.contact-section {
    background-color: #ffffff;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Bemutatkozás */
.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Szolgáltatások */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    
}

.service-card {
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.service-content li {
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5c5e6b;
    font-weight: bold;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
    
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    
}

.blog-card {
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-views {
    color: #5c5e6b;
    font-weight: 500;
}

.blog-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

/* Galéria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
}

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

/* Kapcsolat */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #5c5e6b;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-text h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-text p {
    color: #555;
    margin: 0;
}

.contact-text a {
    color: #5c5e6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #464852;
}

.contact-form {
    background-color: #f8f6f3;
    padding: 2rem;
    border-radius: 0;
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        min-height: 550px;
    }
    
    .hero-slide {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-image img {
        max-height: 400px;
    }
    
    .hero-navigation {
        padding: 0 2rem;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 550px;
        display: block;
    }
    
    .hero-slider {
        display: block;
        height: 100%;
    }
    
    .hero-slide {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
        position: absolute;
        width: 100%;
        height: 100%;
    }
    
    .hero-slide.active {
        display: flex;
    }
    
    .hero-content {
        text-align: center;
        padding: 1rem;
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .hero .hero-actions .btn {
        flex: 1 1 150px;
        min-width: 150px;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero-image {
        order: 1;
        height: 220px;
        width: 100%;
        display: flex;
    }
    
    .hero-image img {
        max-height: 220px;
        width: 100%;
        border-radius: 8px;
        object-fit: cover;
    }
    
    .hero-navigation {
        padding: 0 1rem;
        display: flex;
    }
    
    .hero-prev,
    .hero-next {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .hero-dots {
        bottom: 1rem;
        gap: 0.4rem;
        display: flex;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        padding: 4px;
    }
    
    .intro-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .intro-features {
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        align-items: center;
        max-width: 400px;
        width: 100%;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .intro-text {
        text-align: center;
    }
    
    .intro-text h2 {
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto;
        min-height: 500px;
        display: block;
    }
    
    .hero-slider {
        display: block;
    }
    
    .hero-slide {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .hero-slide.active {
        display: flex;
    }
    
    .hero-content {
        padding: 0.75rem;
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .hero .hero-actions .btn {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        min-width: auto;
    }
    
    .hero-image {
        order: 1;
        height: 180px;
        width: 100%;
        display: flex;
    }
    
    .hero-image img {
        max-height: 180px;
        width: 100%;
        border-radius: 6px;
        object-fit: cover;
    }
    
    .hero-navigation {
        padding: 0 0.75rem;
        display: flex;
    }
    
    .hero-prev,
    .hero-next {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .hero-dots {
        bottom: 0.75rem;
        gap: 0.3rem;
        display: flex;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        padding: 4px;
    }
    
    .services-grid,
    .blog-grid {
        gap: 1rem;
    }
    
    .service-content,
    .blog-content,
    .contact-form {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .contact-details {
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        align-items: center;
        max-width: 400px;
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .intro-section,
    .services-section,
    .blog-section,
    .gallery-section,
    .contact-section {
        padding: 2rem 0;
    }
}

/* Notification styles */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    gap: 0.75rem;
}

.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.notification-success .notification-icon {
    color: #28a745;
}

.notification-error .notification-icon {
    color: #dc3545;
}

.notification-text {
    flex: 1;
}

.notification-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.notification-text p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.notification-text .booking-code {
    margin: 0.5rem 0 0 0;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    color: #666;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: #333;
}

@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}