@font-face {
    font-family: 'Montserrat';
    src: url('mix/montserrat_n.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nyoetes';
    src: url('mix/Nyoetes.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}

header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 10;
    height: 18.5vh;
    background-color: white;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #b98651; /* Match your color scheme */
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

header.scrolled::after {
    transform: scaleX(1);
}

.header_pics {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.header_pics > img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 1;
    min-width: 0;
}

.sticky_menu {
    margin-top: -0.5vh;
    width: 100%;
}

.sticky_menu ul {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 0;
    gap: 2vw;
}

.sticky_menu li {
    display: flex;
    justify-content: center;
}

.sticky_menu a {
    text-decoration: none;
    color: #734f2a;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.sticky_menu a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

main {
    padding-top: 18.5vh;
    padding-bottom: 14vh;
}

.content-section {
    display: none;
}

.content-section.active {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.about_me_section, .about_seelen_atelier_section, .workshops_section {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* ----------------------------- STYLING OF HOME START --------------------------------------*/
.home_section {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Space between text and image */
    padding: 6vh 7vw;
}

.top_content {
    display: flex;
    gap: 2rem; /* Space between text and image */
}
    
.text_content {
    flex: 1; /* Take up half the space */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    gap: 5vh; /* Space between text elements */
    padding-top: 6vh;
    padding-right: 1vw;
    padding-left: 4vw;
}

.additional_text {
    width: 100%;
    padding: 0 4vw; /* Match horizontal padding with text_content */
    /* Add any other styling you want for the additional text */
}

.home_section h1 {
    font-family: 'Nyoetes', sans-serif;
    font-size: 3rem;
    color: #b98651;
}

.home_section h2 {
    font-size: 1.8rem;
    color: #5a4126;
    margin-top: none;
    margin-bottom: 3vh;
}

.home_section h3 {
    font-size: 1.8rem;
    color: #b98651;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Nyoetes', sans-serif;
}

.home_section p {
    color: #5a4126;
    line-height: 1.8rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.signature {
    margin-top: 2rem;
}

.home_section a {
    font-weight: bold;
    color: #5a4126;
    transition: all 0.3s ease;
}

.home_section a:hover {
    color: #5a4126;
}

.cta {
    display: inline-block; /* Required for anchor tags */
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    color: white !important;
    font-size: 1.2rem;
    background-color: #5a4126;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none; /* Remove underline */
    box-shadow: 5px 8px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    text-align: center;
}

/* Keep your existing hover effects */
.cta:hover {
    transform: scale(1.01);
    box-shadow: 
        0 0 10px 3px rgba(185, 134, 81, 0.7),
        5px 8px 5px rgba(0, 0, 0, 0.5);
    text-decoration: none; /* Ensure no underline appears */
}
    
.image_content {
    flex: 1; /* Take up the other half */
    height: 100%; /* Match height with text content */
}
    
.image_content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 15%,
        rgba(0, 0, 0, 0.8) 30%,
        rgba(0, 0, 0, 1) 40%,
        rgba(0, 0, 0, 1) 60%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(0, 0, 0, 0.3) 85%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 15%,
        rgba(0, 0, 0, 0.8) 30%,
        rgba(0, 0, 0, 1) 40%,
        rgba(0, 0, 0, 1) 60%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(0, 0, 0, 0.3) 85%,
        transparent 100%
    );
}
/* ------------------------------ STYLING OF HOME END ---------------------------------------*/

/* ------------------------------- STYLING OF WORKSHOPS_SECTION START ---------------------------------------- */

.workshops_section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.workshops_overtext > h1 {
    font-family: 'Nyoetes', sans-serif;
    font-size: 1.8rem;
    color: #b98651;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.workshops_overtext > h2 {
    color: #5a4126;
    line-height: 1.8rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.workshops_section > div {
    margin-top: 5vh;
    width: 60%;
    padding: 6vh 2vh 6vh 2vh;
}

.workshops {
    display: flex;
    align-items: center;
    gap: 2vw;
    transition: all 0.5s ease;
    background-color: rgba(229, 188, 143, 0.1);
    border: 1px solid rgba(115, 79, 42, 0.1);
    border-radius: 20px;
    flex-direction: row;
}


.workshops_section > .workshops:nth-child(odd) {
    flex-direction: row-reverse;   
}

.workshops:hover {
    box-shadow: 0 0 15px 1px rgba(115, 79, 42, 0.4); /* Glow effect */
}

.workshop_image {
    position: relative;
    flex: 1.3;
    z-index: 1;
}

.workshop_image img {
    width: 100%;
    border: 2px solid #dbceaa;    
    border-radius: 10px 50px 10px 50px;
    box-shadow: 5px 9px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    transform-origin: center center ;
}

.workshop_image img:hover {
    transform: scale(1.04);
    cursor: pointer;
}

.workshop_image img.clicked {
    transform: scale(1.5);
    z-index: 100; /* Ensure it appears above other elements */
}

.workshop_text {
    position: relative;
    flex: 1;
    border-radius: 10px;
    padding: 1vw;
    color: #5a4126;
}

.workshop_title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.workshop_title > a {
    text-decoration: none;
    color: #5a4126;
}

.workshop_subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
}

.workshop_description {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.workshop_booking_text {
    font-size: 1rem;
    margin-top: 2rem;
}

.book_workshop {
    padding: 0.5rem 3rem;
    width: fit-content;
    font-size: 1.15rem;
    display: block;
    margin-top: 4vh;
    border-radius: 7%;
    background-color: #5a4126;
    color: white;
    border: none;
    border-radius: 4px;
    box-shadow: 5px 8px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.book_workshop:hover {
    transform: scale(1.04);
    box-shadow: 
        0 0 10px 3px rgba(185, 134, 81, 0.7),
        5px 8px 5px rgba(0, 0, 0, 0.5);
    text-decoration: none; /* Ensure no underline appears */
}

/*slider start*/

.testimonials-intro h3 {
    font-size: 1.8rem;
    color: #b98651;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Nyoetes', sans-serif;
}

.testimonials-intro p {
    color: #5a4126;
    line-height: 1.8rem;
    font-size: 1.2rem;
    font-weight: bold;
}
.testimonials-slider-container {
    margin-top: 60px;
    padding: 40px 5ch;
    background-color: #f9f9f9;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(115, 79, 42, 0.1);
    border-radius: 20px;
}

.testimonials-slider-container:hover {
    box-shadow: 0 0 15px 1px rgba(115, 79, 42, 0.4);
}

.testimonials-intro {
    margin-bottom: 30px;
}

.testimonials-intro h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.testimonials-intro p {
    font-size: 16px;
    color: #666;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.testimonials-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 200px;
}

.testimonial {
    display: flex;
    flex-direction: column;
    position: absolute;
    margin-top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 0 20px;
    box-sizing: border-box;
}

.testimonial.active {
    opacity: 1;
}

.testimonial blockquote {
    font-size: 18px;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
}

.slider-arrow {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 10px;
    transition: color 0.3s;
}

.slider-arrow:hover {
    color: #333;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #666;
}
/*slider end*/



/* -------------------------------- STYLING OF WORKSHOPS_SECTION END ----------------------------------------- */

/* --------------------------------- STYLING OF SEELENATELIER START ------------------------------------------ */

.about_seelen_atelier_section {
    flex-direction: column;
    padding: 12.5vh 13vw;
}

.seelen_text_with_pic {
    display: flex;
    gap: 3vw;
    align-items: center;
    margin-bottom: 5vh;
}

.seelen_text {
    flex: 2; /* Takes 3 parts of available space */
    min-width: 0; /* Allows text to shrink if needed */
}

.seelen_pic {
    flex: 1; /* Takes 1 part of available space */
    max-width: 30%; /* Ensures image doesn't get too wide */
}

.seelen_pic img {
    width: 100%; /* Make image responsive within its container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: adds rounded corners */
    -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 0.7) 20%,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 1) 100%
);
mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 0.7) 20%,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 1) 100%
);
}

.about_seelen_atelier_section h1 {
    font-family: 'Nyoetes', sans-serif;
    font-size: 3rem;
    color: #b98651;
}

.about_seelen_atelier_section h2 {
    font-size: 1.8rem;
    color: #b98651;
    margin-bottom: -2rem;
    font-family: 'Nyoetes', sans-serif;
}

.about_seelen_atelier_section h4 {
    font-size: 1.5rem;
    color: #5a4126;
    margin-top: 2rem;
}

.about_seelen_atelier_section h3 {
    font-size: 1.8rem;
    color: #b98651;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Nyoetes', sans-serif;
}

.about_seelen_atelier_section p {
    color: #5a4126;
    line-height: 1.8rem;
    font-size: 1.2rem;
    font-weight: bold;
}


/* ---------------------------------- STYLING OF SEELENATELIER END ------------------------------------------- */

/* -------------------------------- STYLING OF ABOUTME_SECTION START ----------------------------------------- */

.about_me_section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3vw;
    padding-top: 5vh;
}

.about_me_intro {
    display: flex;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.about_me_intro_pic {
    display: flex; /* Added */
    /*align-items: center;*/
    flex: 1; /* Takes 1x space */
    position: relative; /* Needed for absolute child */
    min-height: 100%; /* Fallback */
    width: 100%;
}

.about_me_intro_pic img {
    width: 100%;
    height: auto; /* Force fill container */
    object-fit: cover; /* Crop to fit (or 'contain' to show full image) */
    object-position: top;
    margin-left: 2vw;
    margin-top: 32px;
    border-radius: 40px;
    box-shadow: 0 0 40px 15px rgba(185, 134, 81, 0.6);
}

.about_me_intro_text {
    flex: 3;
    align-self: center;
}

.about_me_intro_text_end {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.about_me_img_and_text {
    display: flex;
    width: 21vw;
    height: auto;
    position: relative;
    overflow: visible;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.about_me_section h3 {
    font-size: 1.8rem;
    color: #b98651;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Nyoetes', sans-serif;
}

.about_me_section p {
    color: #5a4126;
    line-height: 1.8rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.about_me_img {
    width: 21vw;
    height: 21vw;
    object-fit: cover;
    border: 3px solid #b98651;
    border-radius: 50%;
    box-shadow: 0 0 40px 15px rgba(185, 134, 81, 0.6);
    animation: gentle-pulse 2s infinite alternate;
}

@keyframes gentle-pulse {
    from { box-shadow: 0 0 15px 3px rgba(185, 134, 81, 0.5); }
    to { box-shadow: 0 0 25px 8px rgba(185, 134, 81, 0.7); }
}

.about_me_title {
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    color: #dbceaa;
}

.about_me_description {
    position: relative;
    color: #dbceaa;
    text-align: justify;
}

/* --------------------------------- STYLING OF ABOUTME_SECTION END ------------------------------------------ */

/* ----------------------------------- STYLING OF IMPRESSUM START -------------------------------------------- */

.impressum {
    display: flex;
    flex-direction: column;
    padding: 12.5vh 13vw;
    line-height: 1.8rem;
}

.impressum h3 {
    color: #b98651;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.impressum h4 {
    color: #b98651;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.impressum p {
    color: #5a4126;
}

/* ------------------------------------ STYLING OF IMPRESSUM END --------------------------------------------- */



























/*------------------------------------------------------------------------------------------------------*/
footer {
    position: fixed;
    display: flex;
    border-top: 1px solid #b98651;
    align-items: center;
    padding: 0 2vw 0 2vw;
    gap: 2vw;
    justify-content: space-between;
    bottom: 0;
    width: 100%;
    min-height: 7vh;
    background-color: rgb(229, 188, 143);
    z-index: 1;
}

footer a {
    color: #5a4126;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.5s ease;
}

.mail {
    gap: 1vw;
}

.mail a {
    display: flex;
    align-items: center;   
    margin-left: 7vw;
    gap: 1vw;
}

.mail > a img {
    height: 2rem;        /* Match your original icon size */
    width: auto;           /* Preserve aspect ratio */
}

.mail > a:hover {
    transform: scale(1.05);
}

.footer_links > a:hover {
    transform: scale(1.05);
}

footer > div {
    display: flex;
    align-items: center;
    height: 50%;
    font-size: 1rem;
}

.name {
    font-weight: bold;
    color: #5a4126;
}

.social_media {
    flex: 1; /* Take up available space */
    display: flex;
    justify-content: center; /* Center the content horizontally */
    padding: 0 4vw; /* Match your body's horizontal padding */
}

.social_media > a:hover {
    transform: scale(1.05);
}

.social_media a {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 1vw;
    justify-content: center;
    text-align: center;
}

.social_media img {
    height: 2rem;
}

footer img {
    height: 100%;
}

.footer_links {
    gap: 1vw;
}
























/* --------------------------------------------- MOBILE START --------------------------------------------- */

/* ---------------------------------------------- MOBILE END ---------------------------------------------- */
