/* ═══════════════════════════════════════════════════════════════
   fabolution – style.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── Variables & Reset ──────────────────────────────────────── */
:root {
    --color-dark:      #0F2D4A;
    --color-ocean:     #0077B6;
    --color-ocean-dk:  #005a8e;
    --color-silver:    #8896A5;
    --color-platinum:  #F4F7FA;
    --color-white:     #ffffff;
    --color-red:       #c62828;
    --color-green:     #2e7d32;
    --color-bg-dark:   #0B1E2D;
    --color-text-dark: #DDE6EE;

    --font-heading: 'Montserrat', sans-serif;
    --font-text:    'Roboto', sans-serif;

    --transition-base: 0.3s ease;
    --shadow-card:     0 4px 20px rgba(0,0,0,0.05);
    --shadow-hover:    0 15px 30px rgba(0,0,0,0.1);
    --shadow-btn:      0 4px 14px rgba(0,119,182,0.3);
    --shadow-btn-hov:  0 6px 20px rgba(0,119,182,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-text); color: var(--color-dark); line-height: 1.6; background: var(--color-white); }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 1rem; color: var(--color-dark); }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--color-dark); }
a  { text-decoration: none; color: inherit; transition: color var(--transition-base); }
ul { list-style: none; }

p a { color: var(--color-ocean); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--transition-base); }
p a:hover { text-decoration-color: var(--color-ocean); }

.text-white  { color: white !important; }
.text-center { text-align: center; }
strong       { font-weight: 700; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container          { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.narrow-container   { max-width: 800px;  margin: 0 auto; }
.section-padding    { padding: 80px 0; }
.section-intro      { max-width: 600px; margin: 0 auto; }
.section-intro-wide { max-width: 700px; margin: 0 auto 3rem auto; }
.opacity-90         { opacity: 0.9; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top:    2rem; }

.bg-light { background-color: var(--color-platinum); }
.bg-ocean {
    background: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-ocean-dk) 100%);
    color: white;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn-primary {
    background-color: var(--color-ocean);
    color: white;
    border: 2px solid var(--color-ocean);
    box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
    background-color: var(--color-ocean-dk);
    border-color: var(--color-ocean-dk);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hov);
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%,-50%);
    transition: width 0.6s, height 0.6s;
}
.btn-primary:active::after { width: 300px; height: 300px; }

.btn-white {
    background-color: white;
    color: var(--color-ocean);
    border: 2px solid white;
}
.btn-white:hover {
    background-color: var(--color-platinum);
    color: var(--color-ocean-dk);
    transform: translateY(-2px);
}

.btn:focus-visible,
.nav-link:focus-visible,
a:focus-visible {
    outline: 3px solid var(--color-ocean);
    outline-offset: 2px;
}

/* ─── Header ─────────────────────────────────────────────────── */
.sticky-header {
    position: sticky;
    top: 0;
    background-color: white;
    border-bottom: 1px solid #e8edf2;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-img { height: 50px; width: auto; display: block; }

/* ── Logo Shimmer (Header) ──────────────────────────────────── */
.logo-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 4px;
}
.logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.55) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}
.logo-container:hover::after {
    animation: shimmer-sweep 0.65s ease forwards;
}
.logo-container:hover .logo-shimmer {
    filter: drop-shadow(0 2px 8px rgba(0,119,182,0.25));
    transform: translateY(-1px);
    transition: filter 0.4s ease, transform 0.4s ease;
}

@keyframes shimmer-sweep {
    0%   { left: -75%; opacity: 1; }
    100% { left: 125%; opacity: 1; }
}

/* Nav */
.sticky-header nav ul { display: flex; gap: 25px; align-items: center; }
.sticky-header nav a  { font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--color-dark); }
.sticky-header nav a:hover { color: var(--color-ocean); }

.burger-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-dark);
    background: transparent;
    border: 0;
    padding: 0.25rem;
    line-height: 1;
}
.burger-menu:focus-visible { outline: 3px solid var(--color-ocean); outline-offset: 2px; border-radius: 6px; }
.mobile-only { display: none; }

/* ─── Hero & CTA Background ──────────────────────────────────── */
.hero, #cta-bottom {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,45,74,0.72);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.4s ease, text-shadow 0.4s ease;
    cursor: default;
}
.hero-content h1:hover {
    transform: scale(1.03);
    text-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.hero-content .subline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: white !important;
}
.hero-subtext {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    margin-top: 1rem;
    font-weight: 400;
}
.hero-subtext i {
    color: var(--color-ocean);
    opacity: 0.8;
}

/* ─── Hero Eyebrow ───────────────────────────────────────────── */
.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
    display: block;
}


/* ─── Scroll Reveal ──────────────────────────────────────────── */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-element.fade-in { opacity: 1; transform: translateY(0); }

/* ─── Pain Cards ─────────────────────────────────────────────── */
.card-icon-ocean { font-size: 3rem; color: var(--color-ocean); margin-bottom: 15px; }

/* ─── Problem / Lösung ───────────────────────────────────────── */
#problem { background: white; }

.comparison-grid-aligned {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    align-items: stretch;
    margin: 40px auto 0;
    max-width: 1000px;
}
.grid-header { padding: 25px 30px; border-radius: 12px 12px 0 0; text-align: center; }
.grid-header h3 { margin: 0; font-size: 1.5rem; font-weight: 700; }

.problem-header { background-color: #f8f9fa; border: 2px solid #dee2e6; border-bottom: none; }
.problem-header h3 { color: var(--color-red); }

.solution-header {
    background: linear-gradient(135deg, rgba(0,119,182,0.12) 0%, rgba(0,119,182,0.06) 100%);
    border: 2px solid var(--color-ocean);
    border-bottom: none;
}
.solution-header h3 { color: var(--color-ocean); }

.problem-item, .solution-item {
    padding: 30px 30px 30px 60px;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
}
.problem-item:not(:last-of-type),
.solution-item:not(:last-of-type) { border-bottom: 1px dashed rgba(0,0,0,0.1); }

.problem-item {
    background-color: #fafbfc;
    border-left: 2px solid #dee2e6;
    border-right: 2px solid #dee2e6;
}
.problem-item::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 22px; top: 32px;
    color: var(--color-red);
    font-size: 1.3rem;
    opacity: 0.8;
}
.problem-item:last-of-type {
    border-radius: 0 0 12px 12px;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 35px;
}

.solution-item {
    background: linear-gradient(135deg, rgba(0,119,182,0.03) 0%, white 100%);
    border-left: 2px solid var(--color-ocean);
    border-right: 2px solid var(--color-ocean);
    transition: all var(--transition-base);
}
.solution-item::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 22px; top: 32px;
    color: var(--color-ocean);
    font-size: 1.3rem;
}
.solution-item:hover {
    background: linear-gradient(135deg, rgba(0,119,182,0.08) 0%, rgba(0,119,182,0.02) 100%);
    transform: translateX(4px);
    box-shadow: -4px 0 14px rgba(0,119,182,0.12);
}
.solution-item:last-of-type {
    border-radius: 0 0 12px 12px;
    border-bottom: 2px solid var(--color-ocean);
    padding-bottom: 35px;
}

/* ─── Methode / Parallax ─────────────────────────────────────── */
.parallax-bg {
    position: relative;
    background-image: url('../images/mountains.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.parallax-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11,30,45,0.87);
    z-index: 1;
}
.relative-content { position: relative; z-index: 2; }

/* ─── Process Timeline (Vertical, Centered) ──────────────────── */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-step-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.process-step-vertical:last-child {
    margin-bottom: 0;
}

/* Pfeil nach unten zwischen Steps */
.process-step-vertical:not(:last-child)::after {
    content: "\f063";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.25);
    font-size: 2rem;
    z-index: 1;
    transition: color var(--transition-base);
}

.process-step-vertical:hover::after {
    color: rgba(56,189,248,0.5);
}

.step-number {
    display: none;
}

.step-content-vertical {
    width: 100%;
    max-width: 600px;
}

.step-icon-vertical {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(56,189,248,0.3);
    border-radius: 50%;
    margin: 0 auto 25px auto;
    color: #38BDF8;
    font-size: 2.2rem;
    transition: all 0.4s ease;
}

.process-step-vertical:hover .step-icon-vertical {
    background: rgba(56,189,248,0.15);
    border-color: #38BDF8;
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(56,189,248,0.4);
}

.step-content-vertical h3 {
    margin-bottom: 18px;
    font-size: 1.6rem;
    line-height: 1.3;
    color: white;
    font-weight: 700;
}

.text-white-50 {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 550px;
}

/* ─── Cards (Pain + Tech) ────────────────────────────────────── */
.grid-3-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }

.pain-card, .tech-card {
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e8edf2;
    box-shadow: var(--shadow-card);
    text-align: left;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    height: 100%;
}
.pain-card { text-align: center; }

.pain-card:hover, .tech-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-ocean);
}

.icon-box {
    background-color: var(--color-dark);
    width: 60px; height: 60px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
    transition: background-color var(--transition-base), transform var(--transition-base);
}
.icon-box i { color: white; font-size: 1.5rem; }
.tech-card:hover .icon-box {
    background-color: var(--color-ocean);
    transform: rotate(5deg) scale(1.05);
}

.tech-card h3, .pain-card h3 { color: var(--color-dark); font-size: 1.3rem; margin-bottom: 20px; font-weight: 700; }

.tech-list { list-style: none; padding: 0; margin: 0; }
.tech-list li {
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-dark);
}
.tech-list li::before {
    content: "•";
    position: absolute; left: 0;
    color: var(--color-ocean);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.2rem;
}

/* ─── CTA Sections ───────────────────────────────────────────── */
.cta-section {
    min-height: 75vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 60px 20px;
}
.cta-title { font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; color: white; }
.cta-section h2 { font-size: 3.5rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.2; color: white; }

.bg-ocean h2 { font-size: 2rem; font-weight: 600; margin-bottom: 0.5rem; letter-spacing: 0.5px; }
.bg-ocean .subline-white { font-size: 2.2rem; font-weight: 700; margin-bottom: 3rem; color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }

.subline-white {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Über Mich ──────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    width: 100%;
}
.about-visuals { display: flex; flex-direction: column; gap: 20px; width: 100%; }

.about-img {
    display: block; width: 100%; max-width: 100%; height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.story-img { height: 200px; object-fit: cover; }
.about-highlight { color: var(--color-ocean); margin-bottom: 20px; }
.stars-ocean     { color: var(--color-ocean); margin-bottom: 15px; }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e8edf2;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.testimonial-card blockquote p { font-style: italic; color: var(--color-dark); }
.testimonial-card figcaption   { margin-top: 15px; font-size: 0.9rem; color: var(--color-silver); }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--color-silver);
    border-left: 5px solid var(--color-ocean);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}
.faq-item:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.06); }

.faq-item summary {
    padding: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-dark);
    transition: color var(--transition-base);
}
.faq-item summary:hover { color: var(--color-ocean); }
.faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--color-ocean);
    transition: transform 0.4s ease;
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
}
.faq-item[open] .faq-content { grid-template-rows: 1fr; }

.faq-inner { overflow: hidden; padding: 0 20px 20px 20px; }
.faq-inner p {
    margin: 0;
    opacity: 0;
    transform: translateY(-8px);
    animation: faqFadeIn 0.35s 0.05s ease forwards;
    color: var(--color-dark);
}

@keyframes faqFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
    background-color: var(--color-platinum);
    color: var(--color-dark);
    padding: 60px 0 20px;
    border-top: 1px solid var(--color-silver);
}

/* Footer Logo – Glow-Pulse statt Rotation */
.footer-logo-wrap { overflow: visible; }
.footer-logo-pulse {
    height: 100px;
    margin: 0 auto 15px auto;
    display: block;
    transition: filter 0.4s ease, transform 0.4s ease;
}
.footer-logo-pulse:hover {
    filter: drop-shadow(0 0 10px rgba(0,119,182,0.5))
            drop-shadow(0 0 20px rgba(0,119,182,0.25));
    transform: scale(1.06);
}

.footer-sub     { opacity: 0.75; margin-bottom: 20px; }
.footer-contact { margin: 20px 0; font-weight: 500; }
.footer-contact a { color: var(--color-dark); }

.social-icon {
    font-size: 2.2rem;
    color: #0077b5 !important;
    transition: transform var(--transition-base), filter var(--transition-base);
    display: inline-block;
    margin-top: 10px;
}
.social-icon:hover {
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0,119,182,0.35));
}

.footer-links a { margin: 0 10px; font-size: 0.9rem; color: var(--color-dark); }
.footer-links a:hover { color: var(--color-ocean); }

.copyright { margin-top: 40px; font-size: 0.8rem; opacity: 0.7; }
.copyright hr { border: 0; border-top: 1px solid var(--color-silver); margin-bottom: 20px; }

/* ─── Mobile Adjustments (Bugfixes) ──────────────────────────── */
@media (max-width: 900px) {
    /* Timeline Fixes */
    .process-timeline { padding: 0 15px; }
    .process-step-vertical { margin-bottom: 70px; gap: 20px; }
    .process-step-vertical:not(:last-child)::after { bottom: -45px; font-size: 1.5rem; left: 50%; transform: translateX(-50%); }
    .step-icon-vertical { width: 70px; height: 70px; min-width: 70px; font-size: 1.8rem; margin-bottom: 20px; }
    .step-content-vertical h3 { font-size: 1.4rem; }
    .text-white-50 { font-size: 1rem; }

    /* Grid Fixes for Tablets */
    .grid-3-col { gap: 20px; }
    .comparison-grid-aligned { gap: 0 20px; }
}

@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content .subline { font-size: 1.1rem; }
    .cta-title { font-size: 2.5rem; }
    .cta-section h2 { font-size: 2.5rem; }
    .bg-ocean .subline-white { font-size: 1.5rem; }

    /* Navigation / Header */
    .desktop-btn { display: none; }
    .burger-menu { display: block; }
    #nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    #nav-menu.nav-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    #nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    .mobile-only { display: block; width: 100%; text-align: center; margin-top: 10px; }
    .mobile-only .btn { width: 100%; }

    /* Grids -> 1 Column */
    .grid-3-col { grid-template-columns: 1fr; }

    /* Comparison Grid -> 1 Column */
    .comparison-grid-aligned {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    .grid-header { border-radius: 12px 12px 0 0; margin-top: 20px; }
    .grid-header.problem-header { margin-top: 0; }
    .problem-item:last-of-type { border-radius: 0 0 12px 12px; margin-bottom: 20px; }
    .solution-item:last-of-type { border-radius: 0 0 12px 12px; }

    /* About Grid -> Neu sortiert: Portrait -> Text -> Story-Bild */
    .about-grid {
        display: flex;
        flex-direction: column;
    }
    .about-visuals {
        display: contents; /* Löst den Container auf, damit wir die Bilder frei verschieben können */
    }
    .about-visuals picture:first-of-type {
        order: 1;
    }
    .about-content {
        order: 2;
        margin-top: 10px;
    }
    .about-visuals picture:last-of-type {
        order: 3;
        margin-top: 30px;
    }
    .about-img {
        width: 100%;
        height: auto;
    }
    .story-img {
        height: 250px;
    }

    /* Sections Padding */
    .section-padding { padding: 50px 0; }
}

@media (max-width: 480px) {
    /* Small Mobile Adjustments */
    .hero-content h1 { font-size: 2rem; }
    .btn { padding: 12px 25px; font-size: 0.9rem; }
}
