/* Reset és alapvető beállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - vékonyabb verzió */
.header {
    background: linear-gradient(135deg, rgba(238, 211, 240, 0.35) 0%, rgba(196, 200, 220, 0.35) 100%);
    backdrop-filter: blur(70px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    height: 60px; /* Fixált magasság */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;/* ... existing code ... */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


/* ... existing code ... */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: rgb(12, 7, 7) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}


nav ul li a:hover {
    color: #80b4dd !important;
    transform: translateY(-1px);
}

/* ... rest of code ... */
    padding: 0.5rem 0; /* Csökkentett padding */
    height: 60px; /* Fixált magasság */
}

/* Logo stílusok frissítése */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
}


.logo-image {
    height: 60px; /* Logo magassága */
    width: auto; /* Arány megtartása */
    max-width: 200px; /* Maximum szélesség */
    object-fit: contain; /* Kép arány megtartása */
    transition: all 0.3s ease;
}

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

/* Navigáció */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Csökkentett gap */
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #3c3c43;
    font-weight: 500;
    font-size: 0.95rem; /* Kisebb betűméret */
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a:hover {
    color: #2c5aa0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5aa0;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Header contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5aa0;
    font-weight: 600;
    font-size: 0.9rem; /* Kisebb betűméret */
}

.phone i {
    font-size: 0.8rem;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px; /* Csökkentett gap */
}

.mobile-menu-toggle span {
    width: 22px; /* Kisebb hamburger */
    height: 2px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 60px; /* Header magasság kompenzálása */
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.255);
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #2c5aa0;
    color: white;
}

.btn-primary:hover {
    background: #1e3d6f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.hero-nav button {
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-nav button:hover {
    background: rgba(255,255,255,0.5);
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Gallery */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery-filters {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid #2c5aa0;
    color: #2c5aa0;
    padding: 10px 25px;
    margin: 0 10px 10px 0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2c5aa0;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 90, 160, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

/* Prices */
/* ... existing code ... */

.price-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 320px-ről 280px-re */
    gap: 1.5rem; /* 2rem-ről 1.5rem-re */
    max-width: 800px; /* Maximum szélesség hozzáadása */
    margin: 0 auto; /* Középre igazítás */
}

.price-card {
    background: white;
    border-radius: 12px; /* 15px-ről 12px-re */
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.price-header img {
    width: 100%;
    height: 180px; /* 220px-ről 180px-re */
    object-fit: cover;
}

.price-header h3 {
    font-size: 1.3rem; /* 1.5rem-ről 1.3rem-re */
    margin: 0.8rem 0; /* 1rem-ről 0.8rem-re */
    text-align: center;
}

.price-body {
    padding: 1.5rem; /* 2rem-ről 1.5rem-re */
}

.price {
    text-align: center;
    margin-bottom: 1.5rem; /* 2rem-ről 1.5rem-re */
}

.price .amount {
    font-size: 2rem; /* 2.5rem-ről 2rem-re */
    font-weight: bold;
    color: #667eea;
}

.price .currency {
    font-size: 0.9rem; /* 1rem-ről 0.9rem-re */
    color: #666;
}

.amenities {
    list-style: none;
    margin-bottom: 1.5rem; /* 2rem-ről 1.5rem-re */
}

.amenities li {
    padding: 0.4rem 0; /* 0.5rem-ről 0.4rem-re */
    font-size: 0.85rem; /* 0.9rem-ről 0.85rem-re */
}

.price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.3rem 0.8rem; /* 0.4rem 1rem-ről kisebbre */
    border-radius: 20px;
    font-size: 0.75rem; /* 0.8rem-ről 0.75rem-re */
    font-weight: 600;
}

/* Gomb méret csökkentése */
.booking-btn {
    padding: 0.6rem 1.5rem; /* 0.8rem 2rem-ről kisebbre */
    font-size: 0.9rem; /* 1rem-ről 0.9rem-re */
}

/* ... rest of code ... */

/* Contact */
.contact {
    padding: 80px 0;
    background: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1e3d6f;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.map-link i {
    font-size: 0.8rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 1rem;
}

/* Térkép szekció */
.map-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.map-section .section-header {
    margin-bottom: 2rem;
}

.map-section h3 {
    font-family: 'Playfair Display', serif;
    color: #2c5aa0;
    font-size: 2rem;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.google-map {
    height: 400px;
    min-height: 300px;
}

.map-info {
    padding: 2rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-details h4,
.directions h4 {
    font-family: 'Playfair Display', serif;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.directions ul {
    list-style: none;
    padding: 0;
}

.directions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
    font-size: 0.9rem;
}

.directions li:last-child {
    border-bottom: none;
}

.directions strong {
    color: #2c5aa0;
}

/* Footer */
.footer {
    background: #2c5aa0;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-close:hover {
    color: #2c5aa0;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.lightbox-nav button {
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
}

/* Foglalási Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow-y: auto;
}

.booking-modal-content {
    background: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.booking-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.booking-close:hover {
    color: #2c5aa0;
}

.booking-modal h2 {
    font-family: 'Playfair Display', serif;
    color: #2c5aa0;
    text-align: center;
    padding: 2rem 2rem 1rem;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.booking-form {
    padding: 2rem;
}

.booking-room-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-room-info h3 {
    font-family: 'Playfair Display', serif;
    color: #2c5aa0;
    margin: 0 0 0.5rem 0;
}

.booking-room-info p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.booking-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.summary-row.total {
    border-top: 2px solid #2c5aa0;
    padding-top: 0.75rem;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: #2c5aa0;
}

.booking-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    color: white;
    z-index: 1001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.notification.success {
    background: #4CAF50;
}

.notification.error {
    background: #f44336;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-contact {
        display: none; /* Tablet méretben elrejtjük a telefont */
    }
    
    .main-nav ul {
        gap: 1rem;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .google-map {
        height: 300px;
    }
    
    .map-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header {
        height: 50px; /* Mobil verzióban még vékonyabb */
    }
    
    .header-content {
        height: 50px;
        padding: 0.25rem 0;
    }
    
    .logo-image {
        height: 30px; /* Kisebb logo mobil verzióban */
        max-width: 150px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        left: -100%;
        top: 50px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .main-nav.active {
        display: flex;
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .main-nav a {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
        width: 100%;
    }
    
    .hero {
        margin-top: 50px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-nav {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .booking-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .booking-form {
        padding: 1rem;
    }
    
    .booking-buttons {
        flex-direction: column;
    }

    /* Hamburger menu animáció */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-4px, 4px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -4px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-image {
        height: 25px;
        max-width: 120px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
.gallery-section-title {
    grid-column: 1 / -1;
    text-align: center;
    margin: 2rem 0 1rem 0;
}

.gallery-section-title h3 {
    color: #667eea;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    display: inline-block;
    padding-bottom: 0.5rem;
}
/* ... existing code ... */

/* Gallery section címe - ugyanolyan mint az Árlista */
.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5aa0;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Gallery grid javítása */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-section-title {
    grid-column: 1 / -1;
    text-align: center;
    margin: 2rem 0 1rem 0;
}

.gallery-section-title h3 {
    color: #667eea;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* Gallery item stílus */
.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
    max-height: 200px; 
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal stílusok a nagyításhoz */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.close:hover {
    opacity: 0.7;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* ... existing code ... */

/* Információs szekció */
/* ... existing code ... */

/* Információs szekció */
.info-section {
    padding: 3rem 0; /* 5rem-ről 3rem-re csökkentve */
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 300px-ről 250px-re */
    gap: 1.5rem; /* 2rem-ről 1.5rem-re */
    margin-top: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem; /* 2rem-ről 1.5rem-re */
    border-radius: 12px; /* 15px-ről 12px-re */
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px; /* 3px-ről 2px-re */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.info-card:hover {
    transform: translateY(-3px); /* -5px-ről -3px-re */
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.info-icon {
    font-size: 2rem; /* 2.5rem-ről 2rem-re */
    margin-bottom: 0.75rem; /* 1rem-ről 0.75rem-re */
    text-align: center;
    filter: grayscale(0.3);
}

.info-card h3 {
    color: #333;
    font-size: 1.1rem; /* 1.3rem-ről 1.1rem-re */
    font-weight: 600;
    margin-bottom: 0.75rem; /* 1rem-ről 0.75rem-re */
    text-align: center;
}

.info-card p {
    color: #666;
    line-height: 1.5; /* 1.6-ról 1.5-re */
    text-align: justify;
    font-size: 0.85rem; /* 0.95rem-ről 0.85rem-re */
}

/* ... rest of code ... */

/* Reszponzív design */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-section {
        padding: 3rem 0;
    }
}
/* ... existing code ... */

.price-header {
    position: relative;
}

.room-type-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.room-type-icon i {
    font-size: 1.5rem;
    color: #667eea;
}

.price-card.featured .room-type-icon i {
    color: #764ba2;
}

/* Alternatív: ikon a cím mellett */
.price-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-header h3::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: #667eea;
}

.price-card:first-child h3::before {
    content: "\f0c0"; /* fa-users */
}

.price-card.featured h3::before {
    content: "\f521"; /* fa-crown */
}

/* ... existing code ... */

/* Location section */
.location {
    padding: 5rem 0;
    background: #f8f9fa;
}

.location h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: 2c5aa0;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}

.location h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.location-info h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.location-info h3:first-child {
    margin-top: 0;
}

.location-info p {
    margin-bottom: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-info i {
    color: #667eea;
    width: 20px;
}

.approach-list,
.nearby-list {
    list-style: none;
    padding: 0;
}

.approach-list li,
.nearby-list li {
    margin-bottom: 0.8rem;
    color: #666;
    padding-left: 1.5rem;
    position: relative;
}

.approach-list li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.nearby-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Reszponzív */
@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* ... rest of code ... */