/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* Height of the fixed header */
}

body {
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    margin-bottom: 10px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

button {
    cursor: pointer;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
}

.logo {
    justify-self: start;
}

.header-right {
    z-index: 1010;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled .logo h1,
header.scrolled nav ul li a,
header.scrolled .social-nav a {
    color: #333;
}

header.scrolled .social-nav a:hover {
    background-color: rgba(211, 169, 113, 0.1);
    border-color: #d3a971;
    color: #333;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 2px;
}

.main-nav {
    grid-column: 2;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

nav ul li {
    margin: 0 12.5px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #d3a971;
    transition: all 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

header.scrolled nav ul li a:hover {
    color: #d3a971;
}

/* Social Media Icons in Header */
.social-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-nav a {
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #eee;
}

.social-nav a:hover {
    background-color: rgba(211, 169, 113, 0.1);
    border-color: #d3a971;
    color: #333;
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    padding-top: 60px; /* Add padding for fixed header */
    background: url(../img/hero_image.png);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    /* Add curved bottom edge */
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
    margin-bottom: -40px;
    padding-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Overlay effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    padding: 30px;
    max-width: 800px;
    animation: fadeIn 1.5s ease-out;
}

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

.hero-content h2 {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.hero-content h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #d3a971;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background-color: transparent;
    border: 2px solid #d3a971;
    color: white;
    padding: 15px 35px;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    background-color: #d3a971;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

.hero-location {
    position: absolute;
    bottom: 80px; /* Magasabbra helyezem, hogy ne érjen bele a görbe ívbe */
    right: 50px;
    text-align: right;
    z-index: 5; /* Magasabb z-index, hogy biztosan látszódjon */
    background-color: rgba(0, 0, 0, 0.7);
    padding: 12px 20px;
    border-radius: 30px;
    border-left: 3px solid #d3a971;
    animation: slideIn 1s ease-out 0.5s both;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-location p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0;
    display: flex;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-location p::before {
    content: '\f3c5'; /* Font Awesome map marker icon */
    font-weight: 900;
    margin-right: 10px;
    color: #d3a971;
    font-size: 18px;
}

/* Section Styles */
section {
    padding: 80px 10%;
    position: relative;
    z-index: 1;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #666;
}

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

/* About Section Styles */
.about {
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 400;
    color: #333;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: #d3a971;
    margin: 20px auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 24px;
    color: #d3a971;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-text .highlight {
    color: #d3a971;
    font-weight: 600;
}

.signature {
    font-style: italic;
    color: #777;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

/* Contact Form Styles */
.contact-form {
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    position: relative;
}

/* Form visszajelző üzenetek */
.form-message {
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.4s ease;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    animation: messageFadeIn 0.5s ease forwards;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes messageFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-message::before {
    font-weight: 900;
    margin-right: 10px;
    font-size: 16px;
}

.form-message.success {
    background-color: rgba(211, 169, 113, 0.1);
    color: #333;
    border: 1px solid #d3a971;
}

.form-message.success::before {
    content: '\f00c';
    color: #d3a971;
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #333;
    border: 1px solid #f44336;
}

.form-message.error::before {
    content: '\f071';
    color: #f44336;
}

.form-message.processing {
    background-color: rgba(211, 169, 113, 0.1);
    color: #333;
    border: 1px solid #d3a971;
}

.form-message.processing::before {
    content: '\f110';
    color: #d3a971;
    animation: spinner 1.5s linear infinite;
}

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

/* Gallery Section Styles */
.gallery {
    background-color: #f9f9f9;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid #d3a971;
    color: #333;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #d3a971;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 25px;
    transition: opacity 0.4s ease;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 280px;
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item.fade {
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: left;
}

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

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(211, 169, 113, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    pointer-events: none; /* Biztosítja, hogy az ikon ne akadályozza a képre kattintást */
}

.gallery-icon i {
    font-size: 28px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

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

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #d3a971;
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px;
    font-size: 16px;
}

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

.lightbox-prev,
.lightbox-next {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-prev {
    margin-left: -70px;
}

.lightbox-next {
    margin-right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: #d3a971;
    transform: scale(1.1);
}

.lightbox-counter {
    position: absolute;
    top: -40px;
    left: 0;
    color: white;
    font-size: 14px;
    font-weight: 300;
}

.gallery-overlay h3 {
    margin-bottom: 5px;
    font-weight: 500;
}

.gallery-overlay p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Features/Amenities Section Styles */
.amenities {
    background-color: #fff;
}

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

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(211, 169, 113, 0.1);
    margin-bottom: 20px;
    color: #d3a971;
}

.feature-icon i {
    font-size: 35px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 22px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Facilities Section Styles */
.facilities {
    background-color: #f9f9f9;
}

.facilities-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.facility-card {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.facility-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(211, 169, 113, 0.1);
    margin-bottom: 20px;
    color: #d3a971;
}

.facility-icon i {
    font-size: 30px;
}

.facility-card h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 22px;
}

.facility-card p {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.facility-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.facility-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

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

.facility-list li:before {
    content: '✓';
    color: #d3a971;
    margin-right: 10px;
    font-weight: bold;
}

/* Map Section Styles */
.map-section {
    background-color: #fff;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    align-items: center;
}

.map-info {
    line-height: 1.8;
}

.map-info p {
    margin-bottom: 30px;
    font-size: 18px;
}

.nearby-places h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 22px;
}

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

.nearby-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.nearby-list li i {
    color: #d3a971;
    margin-right: 10px;
    margin-top: 5px;
}

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

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.directions-link {
    margin-top: 30px;
}

.map-button {
    display: inline-block;
    background-color: #d3a971;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s;
    font-weight: 500;
}

.map-button:hover {
    background-color: #c69c5f;
}

.map-button i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .map-content {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        order: 2;
    }
    
    .map-embed {
        order: 1;
        margin-bottom: 30px;
    }
}

/* Contact Section Styles */
.contact {
    background-color: #f9f9f9;
    position: relative;
}

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

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Info Styles */
.contact-info {
    padding: 40px;
    background-color: #f9f9f9;
}

.contact-header,
.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.header-icon {
    width: 70px;
    height: 70px;
    background-color: #d3a971;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.header-icon i {
    font-size: 28px;
    color: #fff;
}

.contact-header h3,
.form-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #333;
}

.contact-header p,
.form-header p {
    color: #777;
    font-size: 16px;
}

/* Contact Details */
.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.5);
}

.contact-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    background-color: #fff;
}

.contact-item i {
    color: #d3a971;
    font-size: 22px;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.contact-item h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.contact-item p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

/* Approach Info */
.approach-info {
    margin: 30px 0;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.approach-info h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: center;
}

.approach-info h4 i {
    color: #d3a971;
    margin-right: 10px;
}

.approach-info p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Social Media Links */
.social-media-links {
    text-align: center;
    margin-top: 30px;
}

.social-media-links h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #222;
    color: #d3a971;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    border: 2px solid #d3a971;
    position: relative;
    overflow: hidden;
    margin: 0 5px;
}

/* Facebook ikon speciális stílusa */
.contact-social a.facebook {
    background-color: #3b5998;
    color: white;
    border-color: white;
}

/* Instagram ikon speciális stílusa */
.contact-social a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: white;
}

/* Airbnb ikon speciális stílusa */
.contact-social a.airbnb {
    background-color: #ff5a5f;
    color: white;
    border-color: white;
}

.contact-social a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-social a.facebook:hover {
    background-color: #4c70ba;
}

.contact-social a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    opacity: 0.9;
}

.contact-social a.airbnb:hover {
    background-color: #ff7e82;
}

/* Contact Form */
.contact-form {
    padding: 40px;
    background-color: #fff;
}

.contact-form form {
    margin-top: 25px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    color: #333;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d3a971;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(211, 169, 113, 0.1);
}

.submit-button {
    background-color: #d3a971;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    width: 100%;
}

.submit-button span {
    margin-right: 10px;
}

.submit-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    background-color: #c69c5f;
    box-shadow: 0 5px 15px rgba(211, 169, 113, 0.3);
    transform: translateY(-2px);
}

.submit-button:hover i {
    transform: translateX(5px);
}

.submit-btn i {
    margin-left: 8px;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
}

/* Footer Styles */
footer {
    background-color: #222;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    text-align: left;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-logo p {
    color: #d3a971;
    font-style: italic;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4:after,
.footer-contact h4:after,
.footer-social h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50%;
    height: 2px;
    background-color: #d3a971;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #d3a971;
}

.footer-contact {
    text-align: left;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: #d3a971;
    width: 16px;
}

.footer-social {
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

.social-icons a i {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #d3a971;
    transform: translateY(-3px);
}

.social-icons a:hover i {
    color: #222;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

/* Responsive Styles */

/* Mobile Styles (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .mobile-nav {
        display: flex; /* Biztosítjuk, hogy megjelenik */
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo, .footer-social {
        order: -1;
    }
    
    /* Contact responsive styles for tablets */
    .contact-card {
        grid-template-columns: 1fr;
    }
    
    .input-row {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }
    section {
        padding: 60px 5%;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .hero-content h1 {
        font-size: 50px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .about-content,
    .features-wrapper,
    .facilities-wrapper,
    .map-content,
    .contact-wrapper {
        grid-gap: 25px;
    }
    
    .gallery-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .facility-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .facility-icon i,
    .feature-icon i {
        font-size: 25px;
    }
}

/* Tablet nézet (769px-1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    header {
        padding: 10px 2%;
    }
    
    .logo h1 {
        font-size: 18px;
        white-space: nowrap;
        letter-spacing: 1px;
    }
    
    nav ul li {
        margin: 0 6px;
    }
    
    nav ul li a {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    
    .header-right {
        gap: 8px;
    }
    
    /* Kisebb nyelvválasztó gombok */
    .language-switcher .lang-option {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    /* Kisebb social media ikonok */
    .social-nav a {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
    /* Elrejtjük a fő navigációs menüt */
    nav.main-nav {
        display: none !important;
    }
    
    /* Logo és header beállítások */
    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 5%;
        text-align: center;
    }
    
    .logo {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 0;
    }
    
    .logo h1 {
        font-size: 20px;
        text-align: center;
        margin: 0;
    }

    /* Mobile Contact Section Styles */
    .contact-card {
        grid-template-columns: 1fr;
        box-shadow: none;
        border-radius: 0;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info {
        border-radius: 10px 10px 0 0;
    }
    
    .contact-form {
        border-radius: 0 0 10px 10px;
    }
    
    .input-row {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
    }
    
    .header-icon i {
        font-size: 24px;
    }
    
    .contact-header h3,
    .form-header h3 {
        font-size: 22px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        grid-gap: 40px;
        text-align: center;
    }
    
    .footer-logo, .footer-links, .footer-contact, .footer-social {
        text-align: center;
    }
    
    .footer-links h4:after,
    .footer-contact h4:after,
    .footer-social h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    /* Footer menüpontok középre igazítása mobilon */
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .footer-links ul li {
        margin: 5px 0;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 5%;
        text-align: center;
    }
    
    .logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .header-right {
        display: flex;
        align-items: center;
    }
    
    .social-nav {
        display: flex;
        gap: 8px;
        margin-left: auto;
    }
    
    .social-nav a {
        width: 32px;
        height: 32px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .social-nav a:hover {
        background-color: rgba(211, 169, 113, 0.3);
    }
    
    .mobile-nav {
        display: flex !important; /* Biztosítjuk, hogy mindig megjelenik mobilon */
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .logo h1 {
        font-size: 23.8px;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    nav ul li a {
        font-size: 14px;
    }
    
    /* Kisebb méretű mobilok (375px és az alatti) */
    @media (max-width: 375px) {
        header {
            padding: 8px 3%;
        }
        
        .logo h1 {
            font-size: 22px;
            letter-spacing: 0.5px;
        }
        
        /* Kisebb social media ikonok */
        .social-nav {
            gap: 5px;
        }
        
        .social-nav a {
            width: 28px;
            height: 28px;
            font-size: 14px;
        }
    }
    
    section {
        padding: 50px 5%;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 20px;
        letter-spacing: 3px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-location {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 30px;
        text-align: center;
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .divider {
        margin: 15px auto;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .about-content,
    .map-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    
    .about-text {
        order: 1;
    }
    
    .about-image {
        order: 2;
    }
    
    .features-wrapper,
    .facilities-wrapper {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    
    .feature-card,
    .facility-card {
        padding: 20px;
    }
    
    .gallery-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        grid-gap: 15px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .map-embed {
        height: 350px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    footer {
        padding: 15px;
        font-size: 14px;
    }
}

/* Mobile Navigation Styles */
.mobile-nav {
    display: none; /* Alapértelmezetten rejtett */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 8px 0;
    justify-content: space-around;
    height: 60px; /* Csökkentett magasság */
    border-top: 2px solid #f0f0f0;
}

.mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #777;
    font-size: 12px;
    padding: 8px 0;
    width: 20%;
    transition: color 0.3s;
}

/* Mobil kisebb képernyőkön a nav szöveg rejtve */
@media (max-width: 600px) {
    .mobile-nav a span {
        display: block;
        font-size: 10px;
        margin-top: 3px;
    }
}

/* Mobil nagyobb képernyőkön (Mobil L) csak ikonok */
@media (min-width: 601px) and (max-width: 768px) {
    .mobile-nav a span {
        display: none;
    }
    
    .mobile-nav {
        height: 50px; /* Még kisebb magasság, mert nincs szöveg */
    }
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #d3a971;
}

.mobile-nav a i {
    font-size: 22px;
    margin-bottom: 3px;
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }
    
    nav {
        display: none;
    }
    
    /* Hero szekció optimalizálása */
    .hero {
        height: auto;
        min-height: 85vh; /* Rövidebb hero szekció */
        padding-top: 80px;
        padding-bottom: 60px;
        /* Eltávolítjuk a lekerekítést mobilnézetben */
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin-bottom: 0;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .hero-location {
        position: absolute;
        bottom: 80px;
        right: auto;
        left: 50%;
        width: 80%;
        transform: translateX(-50%);
        text-align: center;
        border-left: none;
        border-bottom: 3px solid #d3a971;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    section {
        padding: 40px 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .gallery-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .map-embed {
        height: 300px;
    }
    
    /* Kapcsolattartási adatok optimalizálása */
    .contact-item {
        flex-direction: row;
        align-items: center;
        padding: 15px;
        border-radius: 8px;
        text-align: left;
    }
    
    .contact-item i {
        margin-right: 15px;
        margin-bottom: 0;
        min-width: 25px;
        text-align: center;
    }
    
    .contact-item h4 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .contact-item p {
        font-size: 13px;
    }
    
    .footer-contact p {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .footer-contact i {
        margin-right: 10px;
        min-width: 20px;
    }
}

/* Nyelvváltó rendszer stílusai */

/* Header jobb oldali konténer a nyelvváltó és social ikonokhoz */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1010;
}

.language-switcher {
    display: flex;
    gap: 5px;
}

.language-switcher .lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #eee;
}

.language-switcher .lang-option:hover {
    background-color: rgba(211, 169, 113, 0.1);
    border-color: #d3a971;
}

.language-switcher .lang-option.active {
    background-color: #d3a971;
    color: white;
    border-color: #d3a971;
}

/* Mobilnézet */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 80px;
    }
    
    .language-switcher .lang-option {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Tablet nézet, hogy ne takaródjon el a social media gombokkal */
@media (min-width: 769px) and (max-width: 1024px) {
    .language-switcher {
        right: 120px;
    }
}

/* Biztosítjuk, hogy a header átrendezésekor is jól működik */
header.scrolled .language-switcher {
    top: 10px;
}

/* Alternatív nyelvváltó a footer-ben */
.footer-language {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-language .lang-option {
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-language .lang-option:hover,
.footer-language .lang-option.active {
    background-color: #d3a971;
    color: #fff;
    border-color: #d3a971;
}



