/* Hero Section with Parallax */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 2560px;
    height: 60vh;
    overflow: hidden;
    z-index: 2;
}

.art-therapy-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url("../assets/images/biztonsagban.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero Overlay with Title */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    padding-left: clamp(2rem, 10%, 200px);
    background: rgba(0, 0, 0, 0.25);
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-lightest);
    text-align: left;
    max-width: min(60%, 700px);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--color-light) !important;
    text-align: left;
    max-width: min(60%, 700px);
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

/* Main container */
.art-therapy-container {
    margin-top: 4rem;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    background: linear-gradient(145deg, 
        rgba(243, 235, 217, 0.4) 0%, 
        rgba(209, 196, 164, 0.3) 50%, 
        rgba(243, 235, 217, 0.4) 100%);
    position: relative;
    z-index: 3;
}

.art-therapy-text {
    width: 100%;
    max-width: 860px;
    padding: 0;
    margin: 0 auto;
}

/* Title - warm and grounding */
.art-therapy-container h2 {
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.4;
    color: var(--color-dark);
}

/* Section headings */
.art-therapy-container h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-size: 1.2rem;
}

/* Paragraphs - comfortable reading */
.art-therapy-container p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #444;
}

/* Disclaimer - gentle notice */
.disclaimer {
    font-style: italic;
    color: #666;
    padding: 1rem 1.5rem;
    background: rgba(209, 196, 164, 0.4);
    border-radius: 8px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: center;
}

/* CTA paragraph */
.art-therapy-text > p:last-of-type strong {
    display: block;
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-top: 1rem;
}

/* Workshop details - warm card */
.workshop-details {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(150, 162, 127, 0.15);
    border-radius: 10px;
    border-left: 4px solid var(--color-med);
}

.workshop-details h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(95, 111, 82, 0.2);
}

.workshop-details p {
    margin: 0.6rem 0;
    padding: 0.3rem 0;
}

.workshop-details p:last-child {
    border-bottom: none;
}

.workshop-details a {
    color: var(--color-dark);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.workshop-details a:hover {
    color: var(--color-med);
}

/* Registration section */
.workshop-registration {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    text-align: center;
    background: var(--color-dark);
    border-radius: 10px;
}

.workshop-registration p {
    color: var(--color-lightest);
    margin-bottom: 1rem;
}

.workshop-registration .book-button {
    margin-top: 0.5rem;
    background: var(--color-lightest);
    color: var(--color-dark);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.workshop-registration .book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background-color: var(--color-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .art-therapy-container {
        padding: 2rem;
        max-width: 90%;
    }

    .hero-section {
        height: 50vh;
        width: 100%;
    }

    .art-therapy-image {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .art-therapy-container {
        padding: 1.5rem;
        margin-top: 0;
    }

    .hero-section {
        height: 45vh;
        width: 100%;
    }

    .art-therapy-container h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .art-therapy-container {
        padding: 1rem;
        max-width: 95%;
    }

    .hero-section {
        height: 40vh;
    }

    .workshop-details {
        padding: 1rem;
    }

    .workshop-registration {
        padding: 1rem;
    }
}
