/* Font Faces */
@font-face {
    font-family: 'MPLUS1p';
    src: url('fonts/MPLUS1p-Medium.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Fredoka';
    src: url('fonts/Fredoka-Regular.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'FredokaBold';
    src: url('fonts/Fredoka-Medium.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-red: #8B1A1A;
    --light-green: rgba(144, 238, 144, 0.3);
    --dark-gray: #333;
    --white: #ffffff;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--deep-red);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Video Styles */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    background: #f0f0f0; /* Fallback color */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding-left: 2rem;
    padding-right: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    width: 100%;
}

.logo-image {
    height: 280px;
    width: auto;
    object-fit: contain;
    z-index: 2;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.logo-name {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--deep-red);
    line-height: 1.2;
    letter-spacing: 0.05em;
    display: block;
}

.logo-subtitle {
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--deep-red);
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.play-button {
    background: var(--dark-gray);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    color: var(--white);
    margin-left: 1rem;
    padding: 0;
}

.play-button:hover,
.play-button:focus {
    transform: scale(1.1);
    opacity: 0.9;
    outline: 2px solid var(--deep-red);
    outline-offset: 2px;
}

.play-button:active {
    transform: scale(0.95);
}

/* Bottom Section */
.bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 2rem;
    padding-right: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
    margin-left: 15rem;
    margin-right: 15rem;
    margin-bottom: 5rem;
}

/* Start Button */
.start-button-container {
    flex: 0 0 auto;
}

.start-button {
    background: rgba(255, 255, 255, 0.8);;
    border: 2px solid var(--deep-red);
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--deep-red);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    min-width: 150px;
}

.start-button:hover,
.start-button:focus {
    background: rgba(144, 238, 144, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    outline: 2px solid var(--deep-red);
    outline-offset: 2px;
}

.start-button:active {
    transform: translateY(0);
}

/* Social Media */
.social-media-container {
    display: flex;
    gap: 1rem;
    flex: 0 0 auto;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-red);
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-radius: 4px;
}

.social-link:hover,
.social-link:focus {
    transform: scale(1.15);
    opacity: 0.8;
    outline: 2px solid var(--deep-red);
    outline-offset: 2px;
}

.social-link svg {
    width: 100%;
    height: 100%;
}

/* Hebrew Text */
.hebrew-text-container {
    flex: 0 0 auto;
    max-width: 450px;
    text-align: right;
}

.hebrew-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--deep-red);
    font-weight: bold;
}

/* Content Below Section */
.content-below {
    position: relative;
    z-index: 1;
    background: #f5f0e8;
    min-height: 50vh;
    padding: 0;
    margin-top: 0;
}

/* About Section */
.about-section {
    display: flex;
    flex-direction: row-reverse;
    min-height: 100vh;
    width: 100%;
}

.about-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text-container {
    flex: 1;
    background: #f5f0e8;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--deep-red);
    margin-bottom: 2rem;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-paragraph {
    font-size: 1.2rem;
    font-family: 'Fredoka', sans-serif;
    line-height: 1.8;
    color: var(--deep-red);
    text-align: center;
}

.about-mission {
    font-weight: bold;
    text-decoration: underline;
    font-family: 'FredokaBold', sans-serif;
}

/* Accessibility: Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--deep-red);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
        justify-content: center;
        gap: 0.5rem;
    }

    .logo-section {
        padding-top: 1rem;
        padding-left: 1rem;
        justify-content: center;
        align-items: center;
        flex: 0 0 auto;
    }

    .logo-name {
        font-size: 2.5rem;
    }

    .logo-image {
        height: 200px;
    }

    .logo-subtitle {
        font-size: 0.9rem;
    }

    .bottom-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        padding-bottom: 0.5rem;
        padding-right: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }

    .hebrew-text-container {
        max-width: 100%;
        text-align: center;
    }

    .play-button {
        width: 40px;
        height: 40px;
    }

    .start-button {
        background: rgba(255, 255, 255, 0.8);
        border: 2px solid var(--deep-red);
    }

    .about-section {
        flex-direction: column;
        min-height: auto;
    }

    .about-image-container {
        height: 50vh;
        min-height: 400px;
    }

    .about-text-container {
        padding: 2rem 1.5rem;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-paragraph {
        font-size: 1rem;
    }

    .story-section {
        padding: 3rem 2rem;
    }

    .story-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem;
        align-items: center;
    }

    .story-text-wrapper {
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .story-video-column {
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
    }

    .story-text-column {
        padding-right: 0;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .story-title {
        font-size: 2.8rem;
        text-align: center;
    }

    .story-content {
        text-align: center;
    }

    .story-paragraph,
    .story-list li {
        font-size: 1.05rem;
        text-align: center;
    }

    .story-list {
        text-align: center;
    }

    .story-flower-container {
        justify-content: center;
        padding-left: 0;
    }

    .video-player-container {
        max-width: 90%;
        margin: 0 auto;
        width: 100%;
    }

    .story-list-last::after {
        width: 70px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 2rem;
    }

    .logo-image {
        height: 180px;
    }

    .logo-subtitle {
        font-size: 0.8rem;
    }

    .start-button {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
        background: rgba(255, 255, 255, 0.8);
        border: 2px solid var(--deep-red);
    }

    .hebrew-text {
        font-size: 0.9rem;
    }

    .about-image-container {
        height: 40vh;
        min-height: 300px;
    }

    .about-text-container {
        padding: 1.5rem 1rem;
    }

    .about-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .about-paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-content {
        gap: 1rem;
    }

    .story-section {
        padding: 2rem 1.5rem;
    }

    .story-container {
        flex-direction: column !important;
        gap: 2rem;
        align-items: center;
    }

    .story-text-wrapper {
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .story-video-column {
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
    }

    .story-text-column {
        padding-right: 0;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .story-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .story-content {
        text-align: center;
    }

    .story-paragraph,
    .story-list li {
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
    }

    .story-list {
        text-align: center;
    }

    .story-flower-container {
        justify-content: center;
        padding-left: 0;
    }

    .video-player-container {
        max-width: 95%;
        width: 100%;
        margin: 0 auto;
    }

    .flower-img {
        width: 120px;
    }

    .story-list-last::after {
        bottom: -30px;
        right: 5px;
        font-size: 1.2rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --deep-red: #000000;
        --light-green: rgba(255, 255, 255, 0.9);
    }

    .video-overlay {
        background: rgba(0, 0, 0, 0.3);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    #background-video {
        display: none;
    }

    .video-background {
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    }
}

/* Keyboard Navigation Styles */
body.keyboard-navigation *:focus {
    outline: 3px solid var(--deep-red);
    outline-offset: 2px;
}

/* Story Section */
.story-section {
    position: relative;
    z-index: 1;
    background: #94997e;
    min-height: auto;
    padding: 3rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.story-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
    box-sizing: border-box;
    position: relative;
}

/* Text Wrapper - Contains Text Column and Flower */
.story-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Left Column: Text */
.story-text-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding: 2rem 2.5rem;
    max-width: 100%;
    background: #e8e0d7;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: visible;
}

.story-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #94997e;
    text-align: right;
    margin-bottom: 0.5rem;
    font-family: 'FredokaBold', sans-serif;
    line-height: 1.2;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: right;
}

.story-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #94997e;
    font-family: 'Fredoka', sans-serif;
    margin: 0;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: right;
}

.story-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #8b241a;
    font-family: 'Fredoka', sans-serif;
    position: relative;
    padding-right: 0;
}

.story-list li strong {
    font-weight: bold;
    font-family: 'FredokaBold', sans-serif;
}

.story-paragraph strong,
.about-paragraph strong {
    font-weight: bold;
    font-family: 'FredokaBold', sans-serif;
}

.story-list-last {
    position: relative;
    margin-bottom: 1rem;
}

.story-flower-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 1rem;
    padding-left: 2.5rem;
}

.story-flower-image {
    position: relative;
    display: inline-block;
}

.story-list-last {
    position: relative;
}


.flower-img {
    width: 200px;
    height: auto;
    opacity: 1;
    display: block;
}

/* Right Column: Video */
.story-video-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-player-container {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.video-player-frame {
    background: #1a1a1a;
    border-radius: 35px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 2px solid #333;
}

.video-player-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px 8px;
    background: #1a1a1a;
    border-radius: 25px 25px 0 0;
    position: relative;
}

.video-player-notch {
    width: 140px;
    height: 24px;
    background: #000;
    border-radius: 0 0 15px 15px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.video-player-icons {
    display: flex;
    gap: 16px;
    color: var(--white);
    position: absolute;
    right: 20px;
    top: 12px;
    z-index: 2;
}

.video-player-icons svg {
    opacity: 0.8;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
}

.story-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 25px 25px;
}

.story-video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.5);
}

.story-video::-webkit-media-controls-play-button {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.video-overlay-text {
    position: absolute;
    bottom: 80px;
    right: 20px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    z-index: 10;
    font-family: 'Fredoka', sans-serif;
    white-space: nowrap;
    pointer-events: none;
}

/* Help Section */
.help-section {
    position: relative;
    z-index: 1;
    background: #f5f0e8;
    padding: 4rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.help-container {
    max-width: 1400px;
    margin: 0 auto;
}

.help-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--deep-red);
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'FredokaBold', sans-serif;
}

.help-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.help-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 300px;
    margin: 0 auto;
}

.help-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    background: #e8e0d7;
}

.help-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.help-column-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-red);
    text-align: center;
    margin: 0;
    font-family: 'FredokaBold', sans-serif;
}

.help-column-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--deep-red);
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    margin: 0;
}

.help-emphasis {
    font-weight: bold;
    text-decoration: underline;
    font-family: 'FredokaBold', sans-serif;
}

/* Responsive Design for Help Section */
@media (max-width: 768px) {
    .help-section {
        padding: 3rem 1.5rem;
    }

    .help-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .help-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .help-column-title {
        font-size: 1.3rem;
    }

    .help-column-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .help-section {
        padding: 2rem 1rem;
    }

    .help-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .help-columns {
        gap: 2rem;
    }

    .help-column {
        gap: 1rem;
    }

    .help-column-title {
        font-size: 1.2rem;
    }

    .help-column-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* Call-to-Action Button */
.cta-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.cta-button {
    background: #b8b8a8;
    border: 2px solid #94997e;
    border-radius: 30px;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--deep-red);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
    min-width: 300px;
}

.cta-button:hover,
.cta-button:focus {
    background: #a8a898;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    outline: 2px solid var(--deep-red);
    outline-offset: 2px;
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive Design for CTA Button */
@media (max-width: 768px) {
    .cta-button {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        min-width: 200px;
    }
}

/* Workshop Separator Section */
.workshop-separator-section {
    position: relative;
    z-index: 1;
    background: #e5ddd5;
    background-image: 
        repeating-linear-gradient(
            to bottom,
            transparent 0px,
            transparent 1px,
            rgba(0, 0, 0, 0.02) 1px,
            rgba(0, 0, 0, 0.02) 2px
        );
    padding: 4rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.workshop-separator-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.workshop-separator-text {
    font-size: 3rem;
    font-weight: bold;
    color: var(--deep-red);
    text-align: center;
    font-family: 'FredokaBold', sans-serif;
    line-height: 1.3;
    margin: 0;
}

.workshop-separator-section .breathing-title {
    text-align: center;
}

/* Responsive Design for Workshop Separator */
@media (max-width: 768px) {
    .workshop-separator-section {
        padding: 3rem 1.5rem;
    }

    .workshop-separator-text {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .workshop-separator-section {
        padding: 2rem 1rem;
    }

    .workshop-separator-text {
        font-size: 1.8rem;
    }
}

/* Breathing Workshop Section */
.breathing-workshop-section {
    position: relative;
    z-index: 1;
    background: #94997e;
    padding: 4rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.breathing-workshop-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Right Column: Title and Top Image */
.breathing-right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.breathing-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--deep-red);
    text-align: right;
    font-family: 'FredokaBold', sans-serif;
    margin: 0;
}

.breathing-top-image-wrapper {
    width: 100%;
    max-width: 320px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.breathing-top-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.breathing-top-image-wrapper:hover .breathing-top-image {
    transform: scale(1.05);
}

/* Middle Column: Text Content */
.breathing-text-column {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1rem;
}

.breathing-text-box {
    background: #e8e0d7;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.breathing-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: right;
    font-family: 'Fredoka', sans-serif;
    margin: 0;
}

.breathing-highlight {
    color: var(--deep-red);
    font-weight: bold;
    font-family: 'FredokaBold', sans-serif;
}

.breathing-highlight-strong {
    color: var(--deep-red);
    font-weight: bold;
    font-family: 'FredokaBold', sans-serif;
    text-decoration: underline;
}

/* Left Column: Arrow and Bottom Images */
.breathing-left-column {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.5rem;
    position: relative;
}

.breathing-arrow-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    padding: 1rem 0;
    align-self: stretch;
}

.breathing-arrow {
    width: 35px;
    height: 180px;
    object-fit: contain;
    opacity: 1;
    filter: brightness(0.8) contrast(1.2);
    animation: bounceArrow 2s ease-in-out infinite;
}

.breathing-bottom-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 280px;
}

.breathing-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.breathing-bottom-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.breathing-image-wrapper:hover .breathing-bottom-image {
    transform: scale(1.05);
}

/* Responsive Design for Breathing Workshop Section */
@media (max-width: 1024px) {
    .breathing-workshop-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .breathing-left-column {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .breathing-bottom-images {
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
    }

    .breathing-image-wrapper {
        max-width: 280px;
    }

    .breathing-arrow-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .breathing-workshop-section {
        padding: 3rem 1.5rem;
    }

    .breathing-workshop-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .breathing-right-column {
        order: 1;
        align-items: center;
    }

    .breathing-text-column {
        order: 2;
    }

    .breathing-left-column {
        order: 3;
    }

    .breathing-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .breathing-top-image-wrapper {
        max-width: 280px;
    }

    .breathing-text-box {
        padding: 1.5rem 2rem;
    }

    .breathing-paragraph {
        font-size: 1rem;
    }

    .breathing-bottom-images {
        flex-direction: row;
        gap: 0.75rem;
    }

    .breathing-image-wrapper {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .breathing-workshop-section {
        padding: 2rem 1rem;
    }

    .breathing-title {
        font-size: 1.3rem;
    }

    .breathing-top-image-wrapper {
        max-width: 240px;
    }

    .breathing-text-box {
        padding: 1.25rem 1.5rem;
    }

    .breathing-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .breathing-bottom-images {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .breathing-image-wrapper {
        max-width: 260px;
    }
}

/* Herbs Workshop Separator Section */
.herbs-workshop-separator-section {
    position: relative;
    z-index: 1;
    background: #94997e;
    padding: 2rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.herbs-workshop-separator-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.herbs-workshop-separator-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
}

/* Herbs Workshop Section */
.herbs-workshop-section {
    position: relative;
    z-index: 1;
    background: #94997e;
    padding: 4rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.herbs-workshop-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

/* TV Video Column (Right in RTL) */
.herbs-tv-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.herbs-tv-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--deep-red);
    text-align: center;
    font-family: 'FredokaBold', sans-serif;
    margin: 0;
}

.herbs-tv-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.herbs-tv-screen {
    background: #2a2a2a;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    border: 3px solid #444;
    position: relative;
    overflow: hidden;
}

.herbs-video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.herbs-video-play-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.herbs-tv-screen:has(.herbs-video:not([paused])) .herbs-video-play-overlay,
.herbs-tv-screen:hover .herbs-video-play-overlay {
    opacity: 0;
}

.herbs-play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.herbs-play-button svg {
    margin-left: 5px;
}

.herbs-tv-stand {
    width: 60px;
    height: 40px;
    background: linear-gradient(to bottom, #555, #333);
    margin: 0 auto;
    border-radius: 0 0 5px 5px;
}

.herbs-tv-base {
    width: 120px;
    height: 12px;
    background: linear-gradient(to bottom, #444, #222);
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
}

/* Text Column (Middle) */
.herbs-text-column {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1rem;
}

.herbs-text-box {
    background: #e8e0d7;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.herbs-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: right;
    font-family: 'Fredoka', sans-serif;
    margin: 0;
}

.herbs-highlight {
    color: #b85a32;
    font-weight: bold;
    font-family: 'FredokaBold', sans-serif;
}

.herbs-highlight-strong {
    color: #b85a32;
    font-weight: bold;
    font-family: 'FredokaBold', sans-serif;
    text-decoration: underline;
}

/* Images Column (Left in RTL) */
.herbs-images-column {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.5rem;
    position: relative;
}

.herbs-image-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 220px;
}

.herbs-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.herbs-stack-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.herbs-image-wrapper:hover .herbs-stack-image {
    transform: scale(1.05);
}

.herbs-arrow-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    padding: 1rem 0;
    align-self: stretch;
}

.herbs-arrow {
    width: 35px;
    height: 180px;
    object-fit: contain;
    opacity: 1;
    filter: brightness(0.8) contrast(1.2);
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Responsive Design for Herbs Workshop Section */
@media (max-width: 1024px) {
    .herbs-workshop-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .herbs-images-column {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .herbs-image-stack {
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
    }

    .herbs-image-wrapper {
        max-width: 200px;
    }

    .herbs-arrow-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .herbs-workshop-separator-section {
        padding: 1.5rem 1.5rem;
    }
    
    .herbs-workshop-section {
        padding: 3rem 1.5rem;
    }

    .herbs-workshop-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .herbs-tv-column {
        order: 1;
    }

    .herbs-text-column {
        order: 2;
    }

    .herbs-images-column {
        order: 3;
        justify-content: center;
        align-items: center;
    }

    .herbs-tv-title {
        font-size: 1.4rem;
    }

    .herbs-tv-frame {
        max-width: 90%;
        width: 100%;
    }

    .herbs-text-box {
        padding: 1.5rem 2rem;
    }

    .herbs-paragraph {
        font-size: 1rem;
    }

    .herbs-image-stack {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .herbs-image-wrapper {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .herbs-workshop-separator-section {
        padding: 1rem 1rem;
    }
    
    .herbs-workshop-section {
        padding: 2rem 1rem;
    }

    .herbs-tv-title {
        font-size: 1.2rem;
    }

    .herbs-tv-frame {
        max-width: 95%;
        width: 100%;
    }

    .herbs-text-box {
        padding: 1.25rem 1.5rem;
    }

    .herbs-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .herbs-image-stack {
        flex-direction: column;
        gap: 0.75rem;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .herbs-image-wrapper {
        max-width: 220px;
    }

    .herbs-play-button {
        width: 50px;
        height: 50px;
    }

    .herbs-play-button svg {
        width: 35px;
        height: 35px;
    }
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    z-index: 1;
    background: #e5ddd5;
    background-image: 
        repeating-linear-gradient(
            to bottom,
            transparent 0px,
            transparent 1px,
            rgba(0, 0, 0, 0.02) 1px,
            rgba(0, 0, 0, 0.02) 2px
        );
    padding: 4rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--deep-red);
    text-align: right;
    font-family: 'FredokaBold', sans-serif;
    line-height: 1.3;
    margin: 0;
}

.testimonials-flower {
    width: 100px;
    height: auto;
    object-fit: contain;
    margin-top: 0.5rem;
}

.testimonials-grid {
    column-count: 4;
    column-gap: 1rem;
}

.testimonial-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design for Testimonials Section */
@media (max-width: 1024px) {
    .testimonials-grid {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 1.5rem;
    }

    .testimonials-header {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .testimonials-title {
        font-size: 2.2rem;
        text-align: right;
    }

    .testimonials-flower {
        width: 70px;
    }

    .testimonials-grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 2rem 1rem;
    }

    .testimonials-header {
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.5rem;
        margin-left: auto;
        width: fit-content;
    }

    .testimonials-title {
        font-size: 1.8rem;
        text-align: right;
        width: auto;
    }

    .testimonials-flower {
        width: 60px;
    }

    .testimonials-grid {
        column-count: 1;
    }
}

/* Future Events Section */
.events-section {
    position: relative;
    z-index: 1;
    background: #e5ddd5;
    background-image: 
        repeating-linear-gradient(
            to bottom,
            transparent 0px,
            transparent 1px,
            rgba(0, 0, 0, 0.02) 1px,
            rgba(0, 0, 0, 0.02) 2px
        );
    padding: 4rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

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

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.events-button-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* In RTL layouts, first flex item sits on the right.
       Force the button to the left while keeping the title on the right. */
    order: 2;
}

.events-cta-button {
    background: #b8b8a8;
    border: 2px solid #94997e;
    border-radius: 30px;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--deep-red);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
    min-width: 300px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.events-cta-button:hover,
.events-cta-button:focus {
    background: #a8a898;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    outline: 2px solid var(--deep-red);
    outline-offset: 2px;
}

.events-cta-button:active {
    transform: translateY(0);
}

.events-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--deep-red);
    text-align: right;
    font-family: 'FredokaBold', sans-serif;
    line-height: 1.3;
    margin: 0;
    flex: 1;
    order: 1;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.event-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(139, 26, 26, 0.1);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.event-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.event-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-date-time {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.95rem;
    color: var(--deep-red);
    font-weight: 500;
}

.event-date {
    font-weight: 600;
}

.event-time {
    font-weight: 400;
    opacity: 0.9;
}

.event-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-red);
    margin: 0;
    font-family: 'FredokaBold', sans-serif;
    line-height: 1.3;
}

.event-description {
    font-size: 1rem;
    color: var(--deep-red);
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

/* Responsive Design for Events Section */
@media (max-width: 1024px) {
    .events-header {
        flex-wrap: wrap;
    }

    .events-cta-button {
        font-size: 1.15rem;
        padding: 0.95rem 2.5rem;
        min-width: 280px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .event-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .events-section {
        padding: 3rem 1.5rem;
    }

    .events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .events-button-container {
        width: 100%;
    }

    .events-cta-button {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
        min-width: 250px;
        width: 100%;
    }

    .events-title {
        font-size: 2.2rem;
        margin-bottom: 0;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-card:nth-child(3) {
        grid-column: 1;
        max-width: 100%;
    }

    .event-image-wrapper {
        height: 220px;
    }

    .event-content {
        padding: 1.25rem;
    }

    .event-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .events-section {
        padding: 2rem 1rem;
    }

    .events-header {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }

    .events-cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        min-width: 200px;
    }

    .events-title {
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .event-image-wrapper {
        height: 200px;
    }

    .event-content {
        padding: 1rem;
    }

    .event-title {
        font-size: 1.2rem;
    }

    .event-description {
        font-size: 0.9rem;
    }
}

/* Ikigai Section */
.ikigai-section {
    position: relative;
    z-index: 1;
    background: #94997e;
    padding: 4rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.ikigai-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Left Column: Ikigai Image */
.ikigai-image-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.ikigai-image-wrapper {
    width: 100%;
    max-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ikigai-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
}

/* Right Column: Text Content */
.ikigai-text-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
}

.ikigai-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--deep-red);
    text-align: right;
    margin: 0;
    font-family: 'FredokaBold', sans-serif;
    line-height: 1.3;
}

.ikigai-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: right;
}

.ikigai-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e8e0d7;
    font-family: 'Fredoka', sans-serif;
    margin: 0;
}

.ikigai-highlight {
    color: #e8e0d7;
    font-weight: bold;
    font-family: 'FredokaBold', sans-serif;
    text-decoration: underline;
}

.ikigai-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: right;
}

.ikigai-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--deep-red);
    font-family: 'Fredoka', sans-serif;
}

.ikigai-closing {
    margin-top: 0.5rem;
    font-style: italic;
}

/* Responsive Design for Ikigai Section */
@media (max-width: 1024px) {
    .ikigai-container {
        gap: 2.5rem;
    }

    .ikigai-image-wrapper {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .ikigai-section {
        padding: 3rem 1.5rem;
    }

    .ikigai-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ikigai-image-column {
        order: 1;
        padding-top: 0;
    }

    .ikigai-text-column {
        order: 2;
    }

    .ikigai-title {
        font-size: 2rem;
        text-align: center;
    }

    .ikigai-content {
        text-align: center;
    }

    .ikigai-paragraph {
        font-size: 1rem;
        text-align: center;
    }

    .ikigai-list {
        text-align: center;
    }

    .ikigai-list li {
        font-size: 1rem;
    }

    .ikigai-image-wrapper {
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .ikigai-section {
        padding: 2rem 1rem;
    }

    .ikigai-title {
        font-size: 1.75rem;
    }

    .ikigai-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .ikigai-list li {
        font-size: 0.95rem;
    }

    .ikigai-image-wrapper {
        max-width: 220px;
    }
}

/* Closing CTA Section */
.closing-section {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
    direction: ltr;
}

.closing-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.closing-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.closing-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.closing-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    direction: rtl;
    box-sizing: border-box;
    overflow-x: hidden;
}

.closing-content .closing-title,
.closing-content .closing-text {
    align-self: center;
    text-align: center;
}

.closing-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--deep-red);
    font-family: 'FredokaBold', sans-serif;
    margin: 0 0 0.5rem 0;
    direction: rtl; /* RTL for Hebrew text */
}

.closing-text {
    font-size: 1.3rem;
    color: var(--deep-red);
    font-family: 'Fredoka', sans-serif;
    margin: 0 0 1rem 0;
    font-weight: bold;
    direction: rtl; /* RTL for Hebrew text */
}

.closing-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.5rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.closing-goodbye {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-red);
    font-family: 'FredokaBold', sans-serif;
    margin: 0 0 1rem 0;
    text-align: left;
    direction: rtl; /* RTL for Hebrew text */
}

.closing-divider {
    width: 100%;
    height: 1px;
    background: rgba(139, 26, 26, 0.3);
    margin-bottom: 1rem;
}

.closing-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.closing-social-label {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--deep-red);
    font-family: 'FredokaBold', sans-serif;
    font-style: italic;
    white-space: nowrap;
}

.closing-social-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.closing-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-red);
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-radius: 4px;
}

.closing-social-link:hover,
.closing-social-link:focus {
    transform: scale(1.15);
    opacity: 0.8;
    outline: 2px solid var(--deep-red);
    outline-offset: 2px;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.footer-link {
    color: var(--deep-red);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Fredoka', sans-serif;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--deep-red);
    text-decoration: underline;
    outline: none;
}

.footer-separator {
    color: var(--deep-red);
    font-size: 1rem;
}

/* Responsive Design for Closing Section */
@media (max-width: 768px) {
    .closing-section {
        height: 100vh;
        min-height: 100vh;
        max-height: 120vh;
    }

    .closing-title {
        font-size: 2.5rem;
    }

    .closing-text {
        font-size: 1.1rem;
    }

    .closing-goodbye {
        font-size: 1.3rem;
    }

    .closing-footer {
        padding: 1.5rem 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .closing-section {
        height: 100vh;
        min-height: 100vh;
        max-height: 130vh;
    }

    .closing-title {
        font-size: 2rem;
    }

    .closing-text {
        font-size: 1rem;
    }

    .closing-content {
        padding: 1.5rem 1rem;
    }

    .closing-goodbye {
        font-size: 1.1rem;
    }

    .closing-social {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .closing-social-label {
        font-size: 1.1rem;
    }

    .closing-footer {
        padding: 1rem 1rem 0;
    }
}

/* Contact Form Styles */
.form {
    width: 100%;
    max-width: 400px;
    margin: 1rem auto 0;
    text-align: right;
    direction: rtl;
    display: flex;
    flex-direction: column;
    /* gap: 0.5rem; */
    background: rgba(255, 255, 255, 0.95);
    padding: 1.25rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 26, 26, 0.2);
    box-sizing: border-box;
}

.form label.white-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--deep-red);
    font-family: 'Fredoka', sans-serif;
    display: block;
    margin-bottom: 0.2rem;
    text-align: right;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea {
    width: 100%;
    padding: 0.5rem 0.8rem;
    border: 2px solid rgba(139, 26, 26, 0.4);
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: 'Fredoka', sans-serif;
    color: var(--deep-red);
    background: rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
    box-sizing: border-box;
    direction: rtl;
    text-align: right;
}

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="tel"]:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--deep-red);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.1);
}

.form input[type="text"]::placeholder,
.form input[type="email"]::placeholder,
.form input[type="tel"]::placeholder,
.form textarea::placeholder {
    color: rgba(139, 26, 26, 0.5);
    font-family: 'Fredoka', sans-serif;
}

.form textarea {
    resize: vertical;
    min-height: 60px;
    max-height: 100px;
    font-family: 'Fredoka', sans-serif;
}

.form button.left-button {
    background: var(--deep-red);
    border: 2px solid var(--deep-red);
    border-radius: 25px;
    padding: 0.55rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
    min-width: 90px;
    align-self: flex-end;
    margin-top: 0.2rem;
}

.form button.left-button:hover,
.form button.left-button:focus {
    background: rgba(139, 26, 26, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 26, 26, 0.4);
    outline: 2px solid var(--deep-red);
    outline-offset: 2px;
}

.form button.left-button:active {
    transform: translateY(0);
}

.form input[type="text"][style*="visibility: hidden"] {
    display: none;
}

/* Thank you message styling */
.white-title.fs-2vw {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-red);
    font-family: 'FredokaBold', sans-serif;
    text-align: center;
    margin: 2rem 0;
    direction: rtl;
}

/* Responsive Design for Form */
@media (max-width: 768px) {
    .closing-content {
        align-items: center;
        padding: 1rem 0.75rem;
        box-sizing: border-box;
        overflow-x: hidden;
        justify-content: flex-start;
        padding-top: 1rem;
    }

    .closing-content .closing-title,
    .closing-content .closing-text {
        align-self: center;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .closing-title {
        margin-bottom: 0.3rem;
    }

    .closing-text {
        margin-bottom: 0.5rem;
    }

    .form {
        max-width: calc(100% - 1.5rem);
        width: calc(100% - 1.5rem);
        margin: 0.3rem auto 0;
        padding: 0.35rem;
        gap: 0;
        box-sizing: border-box;
    }

    .form label.white-text {
        font-size: 0.7rem;
        margin-bottom: 0.06rem;
    }

    .form input[type="text"],
    .form input[type="email"],
    .form input[type="tel"],
    .form textarea {
        font-size: 0.65rem;
        padding: 0.2rem 0.45rem;
        margin-bottom: 0.12rem;
    }

    .form textarea {
        min-height: 25px;
        max-height: 40px;
    }

    .form button.left-button {
        font-size: 0.75rem;
        padding: 0.25rem 0.8rem;
        min-width: 55px;
        margin-top: 0.05rem;
    }

    .white-title.fs-2vw {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .closing-content {
        padding: 0.5rem 0.5rem;
        box-sizing: border-box;
        overflow-x: hidden;
        justify-content: flex-start;
        padding-top: 0.75rem;
    }

    .closing-title {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }

    .closing-text {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form {
        max-width: calc(100% - 1rem);
        width: calc(100% - 1rem);
        margin: 0.25rem auto 0;
        gap: 0;
        padding: 0.3rem;
        box-sizing: border-box;
    }

    .form label.white-text {
        font-size: 0.65rem;
        margin-bottom: 0.05rem;
    }

    .form input[type="text"],
    .form input[type="email"],
    .form input[type="tel"],
    .form textarea {
        font-size: 0.6rem;
        padding: 0.18rem 0.4rem;
        margin-bottom: 0.1rem;
    }

    .form textarea {
        min-height: 22px;
        max-height: 35px;
    }

    .form button.left-button {
        font-size: 0.7rem;
        padding: 0.22rem 0.7rem;
        min-width: 50px;
        margin-top: 0.05rem;
    }

    .white-title.fs-2vw {
        font-size: 1.1rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .closing-section {
        height: 100vh;
        min-height: 100vh;
        max-height: 140vh;
    }

    .closing-content {
        padding: 0.4rem 0.4rem;
        box-sizing: border-box;
        overflow-x: hidden;
        justify-content: flex-start;
        padding-top: 0.5rem;
    }

    .closing-title {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

    .closing-text {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .form {
        max-width: calc(100% - 0.8rem);
        width: calc(100% - 0.8rem);
        margin: 0.2rem auto 0;
        padding: 0.25rem;
        box-sizing: border-box;
    }

    .form label.white-text {
        font-size: 0.6rem;
        margin-bottom: 0.04rem;
    }

    .form input[type="text"],
    .form input[type="email"],
    .form input[type="tel"],
    .form textarea {
        font-size: 0.55rem;
        padding: 0.15rem 0.35rem;
        margin-bottom: 0.08rem;
    }

    .form textarea {
        min-height: 20px;
        max-height: 30px;
    }

    .form button.left-button {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
        min-width: 45px;
    }
}

/* Print styles */
@media print {
    .video-background,
    #background-video {
        display: none;
    }

    .main-content {
        background: var(--white);
    }
}

/* Image Modal/Lightbox Styles */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.image-modal-content {
    position: relative;
    width: 90%;
    max-width: 90vw;
    max-height: 90vh;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 60px 80px 20px;
    box-sizing: border-box;
}

.image-modal-img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: modalImageFadeIn 0.3s ease;
}

@keyframes modalImageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10002;
    padding: 0;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.image-modal-close:active {
    transform: scale(0.95);
}

.image-modal-close svg {
    width: 24px;
    height: 24px;
}

/* Navigation arrows */
.image-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10002;
    padding: 0;
}

.image-modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.image-modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.image-modal-nav svg {
    width: 28px;
    height: 28px;
}

.image-modal-prev {
    left: 10px;
}

.image-modal-next {
    right: 10px;
}

.image-modal-nav.hidden {
    display: none;
}

/* Make workshop images clickable */
.herbs-stack-image,
.breathing-bottom-image,
.breathing-top-image {
    cursor: pointer;
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .image-modal-content {
        width: 95%;
        max-width: 95vw;
        padding: 50px 50px 20px;
    }
    
    .image-modal-close {
        top: 5px;
        right: 5px;
        width: 40px;
        height: 40px;
    }
    
    .image-modal-close svg {
        width: 20px;
        height: 20px;
    }
    
    .image-modal-nav {
        width: 44px;
        height: 44px;
    }
    
    .image-modal-nav svg {
        width: 22px;
        height: 22px;
    }
    
    .image-modal-prev {
        left: 5px;
    }
    
    .image-modal-next {
        right: 5px;
    }
}

