  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Poppins:wght@300;400;600;700&display=swap');
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-behavior: smooth;
    }

    :root {
        --champagne: #F7E7CE;
        --champagne-light: #FFF5E6;
        --champagne-dark: #E6D4B8;
        --black: #0A0A0A;
        --dark-gray: #1a1a1a;
        --medium-gray: #2a2a2a;
        --gold: #FFC107;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background: var(--black);
        color: var(--champagne);
        overflow-x: hidden;
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(10 10 10 / 5%);
	/*padding:15px;*/
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(247, 231, 206, 0.1);
    transition: all 0.3s ease;
}

    /* Hero Section */
    .contact-hero {
        height: 60vh;
        min-height: 500px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-top: 80px;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
        z-index: 1;
    }
/* Logo stílus a kapcsolat oldalon */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: clamp(45px, 6vw, 70px);
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Reszponzív beállítások a kapcsolat oldalhoz */

/* Nagy desktop */
@media (min-width: 1400px) {
    .logo-img {
        height: 180px;
    }
}

/* Desktop */
@media (min-width: 1100px) and (max-width: 1399px) {
    .logo-img {
        height: 180px;
    }
}

/* Tablet landscape */
@media (min-width: 900px) and (max-width: 1099px) {
    .logo-img {
        height: 140px;
    }
}

/* Tablet portrait */
@media (min-width: 768px) and (max-width: 899px) {
    .logo-img {
        height: 140px;
    }
}

/* Mobile large */
@media (min-width: 600px) and (max-width: 767px) {
    .logo-img {
        height: 140px;
    }
    
    .hero-content {
        padding: 0 30px;
    }
}

/* Mobile medium */
@media (min-width: 480px) and (max-width: 599px) {
    .logo-img {
        height: 140px;
    }
}

/* Mobile small */
@media (max-width: 479px) {
    .logo-img {
        height: 140px;
    }
    
    header {
        padding: 1rem clamp(0.938rem, 4vw, 1.25rem);
    }
}

/* Nagyon kis képernyők */
@media (max-width: 375px) {
    .logo-img {
        height: 140px;
    }
}
    .hero-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.03;
        background-image: 
            repeating-linear-gradient(45deg, transparent, transparent 35px, var(--champagne) 35px, var(--champagne) 36px);
        z-index: 2;
    }

    .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .float-item {
        position: absolute;
        border: 1px solid rgba(247, 231, 206, 0.2);
        animation: float 20s infinite ease-in-out;
    }

    .float-item:nth-child(1) {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        top: 10%;
        right: 10%;
    }

    .float-item:nth-child(2) {
        width: 200px;
        height: 200px;
        top: 60%;
        left: 5%;
        animation-delay: 2s;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-30px) rotate(10deg); }
    }

    .hero-content {
        position: relative;
        z-index: 10;
        text-align: center;
        max-width: 1200px;
        padding: 0 50px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 5px;
        text-transform: uppercase;
        margin-bottom: 20px;
        opacity: 0.8;
        color: var(--gold);
    }

    .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: 80px;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
        background: linear-gradient(135deg, var(--champagne) 0%, var(--champagne-dark) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-description {
        font-size: 18px;
        font-weight: 300;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Contact Section */
    .contact-section {
        padding: 100px 50px;
        background: var(--dark-gray);
        position: relative;
    }

    .contact-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 80px;
        align-items: start;
    }

    .contact-info {
        position: sticky;
        top: 150px;
    }

    .info-box {
        background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-gray) 100%);
        padding: 40px;
        border: 1px solid rgba(247, 231, 206, 0.15);
        margin-bottom: 30px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .info-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(247, 231, 206, 0.05), transparent);
        transition: left 0.6s ease;
    }

    .info-box:hover::before {
        left: 100%;
    }

    .info-box:hover {
        transform: translateX(10px);
        border-color: rgba(247, 231, 206, 0.3);
        box-shadow: 0 10px 40px rgba(247, 231, 206, 0.1);
    }

    .info-icon {
        font-size: 40px;
        color: var(--gold);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        background: rgba(247, 231, 206, 0.1);
        border-radius: 50%;
        border: 2px solid rgba(247, 231, 206, 0.2);
    }

    .info-box h3 {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        margin-bottom: 15px;
        color: var(--champagne);
    }

    .info-box p {
        font-size: 16px;
        line-height: 1.8;
        opacity: 0.9;
    }

    .info-box a {
        color: var(--champagne);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .info-box a:hover {
        color: var(--gold);
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        border: 2px solid rgba(247, 231, 206, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--champagne);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 20px;
    }

    .social-icon:hover {
        background: var(--gold);
        color: var(--black);
        border-color: var(--gold);
        transform: translateY(-5px);
    }

    /* Contact Form */
    .contact-form-wrapper {
        background: linear-gradient(135deg, var(--black) 0%, var(--medium-gray) 100%);
        padding: 60px;
        border: 1px solid rgba(247, 231, 206, 0.15);
        position: relative;
        overflow: hidden;
    }

    .contact-form-wrapper::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(247, 231, 206, 0.03) 0%, transparent 70%);
        animation: pulse 15s infinite ease-in-out;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.1); opacity: 0.8; }
    }

    .form-title {
        font-family: 'Playfair Display', serif;
        font-size: 36px;
        font-weight: 900;
        margin-bottom: 15px;
        background: linear-gradient(135deg, var(--champagne) 0%, var(--gold) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .form-description {
        font-size: 16px;
        opacity: 0.8;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .form-group {
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    label {
        display: block;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 12px;
        color: var(--champagne);
        font-weight: 600;
    }

    input, textarea, select {
        width: 100%;
        padding: 18px 20px;
        background: rgba(247, 231, 206, 0.05);
        border: 1px solid rgba(247, 231, 206, 0.2);
        color: var(--champagne);
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        transition: all 0.3s ease;
        outline: none;
    }

    input:focus, textarea:focus, select:focus {
        background: rgba(247, 231, 206, 0.08);
        border-color: var(--gold);
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
    }

    textarea {
        min-height: 180px;
        resize: vertical;
    }

    select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23F7E7CE' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 20px center;
        padding-right: 50px;
    }

    .submit-btn {
        background: var(--gold);
        color: var(--black);
        padding: 18px 50px;
        border: 2px solid var(--gold);
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--champagne);
        transition: left 0.4s ease;
        z-index: -1;
    }

    .submit-btn:hover::before {
        left: 0;
    }

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
    }

    .submit-btn:active {
        transform: translateY(-1px);
    }

    /* Success Message */
    .success-message {
        display: none;
        background: linear-gradient(135deg, var(--gold) 0%, #e89500 100%);
        color: var(--black);
        padding: 20px;
        margin-bottom: 30px;
        text-align: center;
        font-weight: 600;
        animation: slideDown 0.5s ease;
    }

    .success-message.show {
        display: block;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Map Section */
    .map-section {
        padding: 0;
        height: 500px;
        background: var(--medium-gray);
        position: relative;
        overflow: hidden;
    }

    .map-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }

    .map-placeholder i {
        font-size: 80px;
        color: var(--champagne);
        opacity: 0.3;
    }

    .map-placeholder p {
        font-size: 18px;
        opacity: 0.6;
    }


    /* Responsive */
    @media (max-width: 1024px) {
        .contact-container {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .contact-info {
            position: relative;
            top: 0;
        }

        .footer-content {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 48px;
        }

        .contact-form-wrapper {
            padding: 40px 30px;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .footer-content {
            grid-template-columns: 1fr;
        }

        header {
            padding: 20px 30px;
        }

        .contact-section {
            padding: 60px 30px;
        }
    }