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

:root {
    --gold: #D4AF37;
    --light-gold: #F4E4C1;
    --dark-gold: #B8941E;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --dark-text: #333333;
    --light-text: #666666;
    --dark-bg: #1a1a1a;
    --dark-ambient: #2d2d2d;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--dark-bg);
}



html {
    scroll-behavior: smooth;
}

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

/* Menü */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.navbar-right {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.lang-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.lang-btn.active {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.lang-btn span {
    display: block;
    line-height: 1;
}

/* Elrejti a potenciális faviconot vagy betöltési indikátorokat */
.navbar .container::before,
.navbar .container::after {
    display: none !important;
    content: none !important;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-container::before,
.logo-container::after {
    display: none !important;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
    position: relative;
}

.logo::before,
.logo::after {
    display: none !important;
    content: none !important;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--gold);
}

/* Mobil menü gomb vezérlése */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(26, 26, 26, 0.9);
    padding: 15px 0;
    margin-top: 80px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--light-gold);
}

.breadcrumbs a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs li[aria-current="page"] {
    color: var(--gold);
    font-weight: 600;
}

/* Kezdőlap */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 150px;
    overflow: hidden;
}

.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: slideInFromLeft 1.5s ease-out forwards;
}

.dorado-white {
    color: var(--white);
}

.stars-gold {
    color: var(--gold);
}

/* Megjegyzi, hogy a DORADO fehér legyen a sötét háttéren */
.hero .dorado-white {
    color: #FFFFFF;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.subtitle {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 400;
}

.tagline {
    font-size: 1.1rem;
    color: var(--light-gold);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.hero-decoration {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 1;
}


/* Animációk */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0;
}

.fade-in:nth-child(3) {
    animation-delay: 0.4s;
    opacity: 0;
}

/* Rólunk */
.about {
    padding: 100px 20px;
    background: url('terkep.svg') center center no-repeat;
    background-size: cover;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

/* Osztó a Kezdőlap és Rólunk között */
.section-divider {
    height: 6px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
}

.about .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-gold);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--light-gold);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-content .cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gold);
    margin-top: 20px;
}

.europe-map {
    margin-top: 50px;
    text-align: center;
}

.europe-map img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--light-gold);
    font-weight: 500;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Galéria */
.gallery {
    padding: 100px 20px;
    background: var(--dark-ambient);
}

.gallery .section-title {
    color: var(--gold);
}

.gallery-carousel {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    background: var(--gold);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--dark-gold);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

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

.dot:hover {
    background: rgba(212, 175, 55, 0.6);
}

.dot.active {
    background: var(--gold);
    width: 14px;
    height: 14px;
}

/* Szolgáltatások */
.services {
    padding: 100px 20px;
    background: var(--dark-ambient);
}

.services .section-title {
    color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    position: relative;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 50%, var(--white) 100%);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.service-card:hover .service-icon {
    animation: bounce 0.6s ease;
}

.service-card::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--dark-bg);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    border: 6px solid transparent;
    border-top-color: var(--dark-bg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 11;
}

.service-card:hover::after,
.service-card:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(-5px);
    }
    75% {
        transform: translateY(-7px);
    }
}

.service-card h3 {
    color: var(--dark-text);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--dark-text);
    line-height: 1.6;
}

/* Kapcsolat */
.contact {
    padding: 100px 20px;
    background: var(--dark-ambient);
}

.contact .section-title {
    color: var(--gold);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gold);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    min-height: 48px; /* Touch-friendly */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #27ae60;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.submit-button {
    padding: 15px 40px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    min-height: 48px; /* Touch-friendly */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-button .spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 50%, var(--white) 100%);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold);
}

.info-item {
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.info-item h4 {
    color: var(--dark-text);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.info-item p {
    color: var(--dark-text);
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.info-item a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.info-item a:hover {
    color: var(--dark-gold);
    text-decoration: underline;
}

.map-container {
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 50%, var(--white) 100%);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold);
    overflow: hidden;
}

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

/* Láb */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 40px 20px 30px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--light-gold);
}

.footer-contact strong {
    color: var(--gold);
    font-weight: 600;
}

.footer-contact a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.facebook-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.facebook-link:hover {
    background: var(--dark-gold);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.facebook-link svg {
    width: 24px;
    height: 24px;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    /* Responszív tervezés */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding: 25px 20px;
    }

    .info-item {
        padding: 15px;
    }

    .info-item h4 {
        font-size: 1.1rem;
    }

    .info-item p {
        font-size: 1rem;
    }

    .logo {
        height: 40px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .carousel-slide img {
        height: 300px;
    }
    

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .gallery-carousel {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .navbar-right {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .navbar-right {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 10px;
    }
    
    .lang-btn {
        min-width: 40px;
        min-height: 40px;
        padding: 6px 10px;
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
        width: 100%;
    }

    .contact-info {
        padding: 20px 15px;
    }

    .info-item {
        padding: 15px 10px;
    }

    .info-item h4 {
        font-size: 1rem;
    }

    .info-item p {
        font-size: 0.95rem;
        word-wrap: break-word;
    }

    .map-container {
        padding: 8px;
    }

    .map-container iframe {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        min-height: 44px; /* Touch-friendly */
        display: flex;
        align-items: center;
    }
    
    .breadcrumbs {
        margin-top: 130px;
    }
    
    .navbar {
        background: var(--dark-bg);
    }
}

    /* Süti elfogadás/elutasítás hirdetés megjelenítése */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-ambient) 100%);
    color: var(--white);
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    border-top: 3px solid var(--gold);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

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

.cookie-text h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cookie-text p {
    color: var(--light-gold);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.cookie-btn.accept {
    background: var(--gold);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--light-gold);
    border: 2px solid var(--light-gold);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
}

    /* Vissza a tetejére gomb */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    min-height: 48px; /* Touch-friendly */
    min-width: 48px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-gold);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.back-to-top:active {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .service-card::after {
        white-space: normal;
        max-width: 200px;
        font-size: 0.75rem;
        padding: 10px 12px;
    }
}

