/* Általános stílusok */
body {
    font-family: 'Georgia', serif;
    color: #5a4a42;
    background-color: #f8f5f2;
}

#betutipus{
    font-family: 'Georgia', serif;
}

/* Hero szekció stílusai */
.hero-section {
    background: linear-gradient(135deg, #d8c9b8 0%, #c5b4a3 50%, #a9927d 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* 3d oszlopdiagramhoz */
#chartdiv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* szöveg fölé */
    /* opacity: 0.5; */
}

.hero-content-container {
    position: relative;
    z-index: 10; /* szöveg a grafikon fölött */
}

.hero-text-container {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    box-shadow: 
        0 12px 40px rgba(90, 74, 66, 0.18),
        0 4px 15px rgba(90, 74, 66, 0.1);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(179, 139, 109, 0.25);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.2s;
    
}

.hero-text-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #b38b6d, #d8b99c);
}

.hero-section h1 {
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: #5a4a42;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.hero-section h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: #b38b6d;
    border-radius: 2px;
}

.hero-section .lead {
    font-weight: 400;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    color: #6a5647;
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.5rem;
}

.hero-section .lead::before {
    content: '•';
    position: absolute;
    left: 10px;
    top: 0;
    color: #b38b6d;
    font-weight: bold;
    font-size: 1.5rem;
}

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, 20px);
    }
}

/* Árjegyzék szekció stílusai */
#arjegyzekek h2 {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    margin-bottom: 3rem;
    color: #5a4a42;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-align: center;
    width: 100%;
}

#arjegyzekek h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: #b38b6d;
    transform: translateX(-50%);
    border-radius: 2px;
}

.price-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(90, 74, 66, 0.1), 0 4px 15px rgba(90, 74, 66, 0.07);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.8s forwards;
}

.animate-first { animation-delay: 0.1s; }
.animate-second { animation-delay: 0.2s; }
.animate-third { animation-delay: 0.3s; }

.price-section h3 {
    color: #5a4a42;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(179, 139, 109, 0.2);
    position: relative;
}

.price-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: #b38b6d;
}

.price-section table {
    width: 100%;
    border-collapse: collapse;
}

.price-section th, .price-section td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

.price-section th {
    background-color: #f8f5f2;
    color: #5a4a42;
}

.price-section td {
    color: #6a5647;
}

.price-section .small {
    color: #6a5647;
    font-size: 0.875rem;
}

.text-accent {
    color: #b38b6d;
}

#legordito-link {
    font-family: 'Georgia', serif;
    font-weight: 500;
    color: #b38b6d;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    padding-right: 0.2rem;
    display: inline-block;
}

#legordito-link:hover {
    color: #a27858;
    text-decoration: underline;
}


/* arjegyzekek.css - Új stílusok a kártyához */
.card {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(90, 74, 66, 0.1), 0 4px 15px rgba(90, 74, 66, 0.07);
    border: 1px solid rgba(179, 139, 109, 0.15);
    animation: fadeUp 0.8s forwards 0.4s;
    transform: translateY(20px);
    opacity: 0;
}

.card-body {
    padding: 1.5rem 2rem;
}

.card-text {
    font-size: 1.1rem;
    color: #6a5647;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.card-text::before {
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2.5rem;
    color: #b38b6d;
    font-family: 'Georgia', serif;
}


/* Reszponzív beállítások */
@media (max-width: 992px) {
    .price-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    #arjegyzekek h2 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 80px 0;
    }

    .hero-text-container {
        padding: 1.8rem;
        margin: 0 15px;
    }
}