/* Laura Rosemann Theme - Warm Earth & Sage */
:root {
    /* Primary Color (Sage Green) */
    --c-primary: #7FA689;
    /* Dark Background (Deep Olive) */
    --c-bg-dark: #4A5D4E;
    /* Light Background (Warm Cream) */
    --c-lite: #FDFBF7;
    /* Accent Color (Soft Terracotta/Peach) */
    --c-accent: #E89A78;

    /* Reused for compatibility but redefining values */
    --c-forest: var(--c-primary);
    --c-forest-dark: var(--c-bg-dark);
    --c-gold: var(--c-accent);

    /* Fonts */
    --f-head: 'Outfit', sans-serif;
    --f-body: 'DM Sans', sans-serif;

    /* Spacing */
    --s-pad: 120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--c-bg-dark);
    color: var(--c-lite);
    font-family: var(--f-body);
    font-size: 19px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Specific resizing for the About section image */
#about .flow-image img {
    height: 450px;
    width: 450px;
    max-width: 100%;
    border-radius: 50%;
    margin-left: 6rem;
    display: block;
}


h1,
h2,
h3 {
    font-family: var(--f-head);
    font-weight: 600;
    line-height: 1.1;
}

h1 {
    font-size: 5rem;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.text-highlight {
    color: var(--c-accent);
    font-style: normal;
    font-family: 'Caveat', cursive;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 5px;
}


h2 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
}

/* Back to Top */
.back-to-top {
    color: var(--c-accent);
    font-weight: 600;
    border: 1px solid var(--c-accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.back-to-top:hover {
    background: var(--c-accent);
    color: var(--c-bg-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Navigation */
.nav-transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
}

.logo {
    font-family: var(--f-head);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--c-accent);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--c-accent);
    color: var(--c-lite);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    transition: 0.3s;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--c-accent);
    color: var(--c-bg-dark);
    transform: translateY(-2px);
}

.btn-filled {
    background: var(--c-accent);
    color: var(--c-bg-dark);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    transition: 0.3s;
    font-weight: 600;
    border: 1px solid var(--c-accent);
}

.btn-filled:hover {
    background: white;
    color: var(--c-bg-dark);
    border-color: white;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle .line {
    width: 30px;
    height: 2px;
    background: white;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--c-bg-dark);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 2.5rem;
    font-family: var(--f-head);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero-immersive {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.7);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(74, 93, 78, 0.4) 0%, var(--c-bg-dark) 100%);
}

.hero-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    clip-path: circle(180px at var(--x, 50%) var(--y, 50%));
    -webkit-mask-image: radial-gradient(circle 200px at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
    mask-image: radial-gradient(circle 200px at var(--x, 50%) var(--y, 50%), black 0%, transparent 100%);
}

.hero-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: brightness(1.1) saturate(1.2);
}

@media (hover: none) {
    .hero-reveal {
        display: none;
    }
}

.hero-content {
    max-width: 800px;
    margin-top: 100px;
    position: relative;
    z-index: 10;
}

.scroll-down {
    display: inline-block;
    margin-top: 4rem;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* Flow Sections */
.flow-section {
    padding: var(--s-pad) 5%;
    position: relative;
}

.flow-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.alt-flow .flow-container {
    grid-template-columns: 1.2fr 1fr;
}

.alt-flow .flow-image {
    order: 1;
}

.alt-flow .flow-text {
    order: 2;
}

.eyebrow {
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--c-accent);
}

.eyebrow::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--c-accent);
}

.flow-image {
    position: relative;
}

.flow-image img {
    width: 90%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    opacity: 0.9;
    transition: 0.5s;
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-image:hover img {
    opacity: 1;
    transform: translate(-5px, -5px);
    box-shadow: 25px 25px 0 rgba(232, 154, 120, 0.2);
}

/* Border Removed per request */
.flow-image::before {
    display: none;
}

.alt-flow .flow-image::before {
    display: none;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
}

.feature-list li::before {
    content: '•';
    color: var(--c-accent);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1rem;
}

/* Schedule Section */
.schedule-section {
    padding: var(--s-pad) 5%;
    text-align: center;
    background: rgba(0, 0, 0, 0.05);
    /* Slightly darker stripe */
}

.schedule-list {
    margin-top: 5rem;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.schedule-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.schedule-item {
    display: flex;
    justify-content: flex-start;
    /* Default Odd: Left */
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    align-items: center;
}

.schedule-item:nth-child(even) {
    justify-content: flex-end;
    /* Even: Right */
    flex-direction: row;
    /* Keep row */
}

.time {
    background: var(--c-accent);
    color: var(--c-bg-dark);
    font-weight: 700;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-body);
    font-size: 1.1rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid var(--c-bg-dark);
    z-index: 2;
    box-shadow: 0 0 0 5px var(--c-bg-dark);
}

.activity {
    width: 100%;
    max-width: 350px;
    padding: 0;
    text-align: right;
    /* Odd: Text aligned to spine (Right) */
    margin-left: 0;
    margin-right: 60px;
}

.schedule-item:nth-child(even) .activity {
    text-align: left;
    /* Even: Text aligned to spine (Left) */
    margin-right: 0;
    margin-left: 60px;
}

.activity h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--c-lite);
    line-height: 1.2;
}

.activity p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Testimonials */
.testimonials-section {
    padding: var(--s-pad) 5%;
    background: transparent;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quote-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 4px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-card::before {
    content: '“';
    font-family: var(--f-head);
    font-size: 8rem;
    position: absolute;
    top: -2rem;
    left: 1rem;
    color: var(--c-accent);
    opacity: 0.2;
    line-height: 1;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quote-card cite {
    font-weight: 700;
    font-style: normal;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

/* Center Text Section */
.center-text-section {
    padding: var(--s-pad) 5%;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
}

.center-text-section p {
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.4;
    font-family: var(--f-head);
}

/* Gallery Strip */
.gallery-strip {
    display: flex;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.strip-image {
    flex: 1;
    transition: 0.5s;
}

.strip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) brightness(0.9);
    transition: 0.5s;
}

.strip-image:hover {
    flex: 1.5;
}

.strip-image:hover img {
    filter: none;
}

/* Contact Flow */
.contact-flow {
    padding: var(--s-pad) 5%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    padding: 4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.flow-form {
    margin-top: 3rem;
    text-align: left;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 0;
    color: white;
    font-size: 1.2rem;
    font-family: var(--f-body);
    transition: 0.3s;
}

.form-group label {
    position: absolute;
    top: 0.8rem;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-color: var(--c-accent);
    outline: none;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: var(--c-accent);
}

.btn-primary {
    background: var(--c-accent);
    color: var(--c-bg-dark);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-2px);
}

/* Mobile Button */
.mobile-btn {
    background: var(--c-accent) !important;
    color: var(--c-bg-dark) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--f-head) !important;
    font-weight: 700;
    font-size: 1.5rem !important;
    width: auto !important;
}

/* Circular Icon Button */
.btn-circle-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--c-accent);
    color: var(--c-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem auto 0;
}

.btn-circle-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background: white;
    color: var(--c-accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-circle-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Footer */
footer {
    padding: 3rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.f-links a {
    margin-left: 1.5rem;
    color: var(--c-lite);
    transition: 0.3s;
}

.f-links a:hover {
    color: var(--c-accent);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.back-to-top-link {
    color: var(--c-lite);
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.6;
    border-bottom: 1px solid transparent;
}

.back-to-top-link:hover {
    color: var(--c-accent);
    opacity: 1;
    border-bottom: 1px solid var(--c-accent);
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .flow-container {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .alt-flow .flow-image {
        order: -1;
    }

    .flow-image {
        width: 100%;
    }

    .flow-image img {
        height: 400px;
    }

    .gallery-strip {
        flex-direction: column;
        height: auto;
    }

    .strip-image {
        height: 250px;
    }

    .contact-container {
        padding: 2rem;
    }

    /* Responsive Zig Zag -> Linear */
    .schedule-item {
        padding-right: 0;
        justify-content: flex-start;
        padding-left: 0;
        margin-bottom: 3rem;
    }

    .schedule-item:nth-child(even) {
        padding-left: 0;
        text-align: left;
    }

    .schedule-list::before {
        left: 29px;
    }

    .time {
        left: 30px;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }

    .activity {
        width: 100%;
        max-width: 100%;
        text-align: left;
        margin-right: 0;
        margin-left: 80px;
    }

    .schedule-item:nth-child(even) .activity {
        text-align: left;
        margin-left: 80px;
    }

    #about .flow-image img {
        height: 300px;
        width: 300px;
        margin: 0 auto;
    }

    /* Footer Stack */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-left {
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
        width: 100%;
    }

    .f-links a {
        margin: 0 0.75rem;
    }
}

/* Blog Styles */
.blog-hero {
    height: 50vh;
    min-height: 400px;
}

.blog-hero .hero-content {
    margin-top: 130px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--c-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-card-image {
    height: 250px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.blog-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-accent);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.blog-title {
    font-family: var(--f-head);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--c-lite);
}

.read-more {
    margin-top: auto;
    padding-top: 1.5rem;
    font-weight: 600;
    color: var(--c-accent);
    font-size: 0.7rem !important;
}

/* Single Article */
.back-link-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 5% 0;
    text-align: center;
}

.back-link {
    display: inline-block;
    color: var(--c-accent);
    font-weight: 700;
    font-family: var(--f-head);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    line-height: 1;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.back-link:hover {
    opacity: 1;
    border-bottom-color: var(--c-accent);
    transform: translateX(-5px);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 5% var(--s-pad);
}

.lead {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 1;
}

.article-container h3 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--c-lite);
}

.article-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 100%;
}

.article-container cite {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    color: var(--c-accent);
    display: block;
    font-style: normal;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.article-container blockquote {
    font-family: var(--f-head);
    font-size: 2rem;
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 3px solid var(--c-accent);
    font-style: italic;
    color: var(--c-lite);
}

/* Custom styled lists for blog articles */
.article-container ul,
.article-container ol {
    margin: 2rem 0 3rem 1rem;
    padding-left: 0;
    list-style: none;
}

.article-container li {
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    line-height: 1.6;
    padding-left: 2.5rem;
    position: relative;
    max-width: 100%;
}

/* Unordered Lists */
.article-container ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    /* Optical alignment */
    width: 8px;
    height: 8px;
    background-color: var(--c-accent);
    border-radius: 2px;
    /* Soft square */
    transform: rotate(45deg);
    /* Diamond shape */
}

/* Ordered Lists */
.article-container ol {
    counter-reset: blog-counter;
}

.article-container ol li {
    counter-increment: blog-counter;
}

.article-container ol li::before {
    content: counter(blog-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--c-accent);
    font-weight: 700;
    font-family: var(--f-head);
    font-size: 1.2rem;
}

/* Blog Navigation */
.blog-navigation {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem 5% 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-navigation a {
    color: var(--c-lite);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    transition: 0.3s;
}

.blog-navigation a:hover {
    opacity: 1;
    color: var(--c-accent);
}

@media (max-width: 900px) {

    /* Mobile Footer Stacking */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .f-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .f-info a {
        margin-left: 0;
        font-size: 1.1rem;
    }
}

/* Star Rating */
.star-rating {
    color: var(--c-accent);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}