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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    height: 100%;
    width: 100%;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Lazy Load Images */
.lazy-img {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.lazy-img.loaded {
    opacity: 1;
}

/* Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
}
.mainnav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navinner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.navtitle {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #1a1a1a;
}
.navlist {
    list-style: none;
    display: flex;
    gap: 30px;
}
.navlist a {
    text-decoration: none;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}
.navlist a:hover, .navlist a[aria-current="page"] {
    color: goldenrod;
}
.mobilemenu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
}

/* Text Highlight */
.text-highlight {
    color: goldenrod;
}

.hero {
    padding-top: 70px;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.heroinner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.herocontent .pill {
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15) 0%, rgba(218, 165, 32, 0.25) 100%);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
    border: 1px solid rgba(218, 165, 32, 0.3);
    transition: all 0.3s ease;
}
.herocontent .pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.3);
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2) 0%, rgba(218, 165, 32, 0.35) 100%);
}
.herocontent .title {
    display: block;
    font-size: 60px;
    margin: 30px 0;
}
.herocontent .subtitle {
    display: block;
    font-size: 25px;
    margin-bottom: 10px;
}
.herocontent .text {
    font-size: 20px;
    color: rgb(113, 113, 113);
}
.herocontent .buttons {
    display: block;
    margin-top: 30px;
}
.herocontent .buttons .button {
    border: 1px solid;
    margin-right: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
}
.herocontent .buttons .button.primary {
    background-color: goldenrod;
    color: white;
}
.herocontent .buttons .button.seccondary {
    border-color: goldenrod;
    color: black;
}

.heroimg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 95%;
    pointer-events: none;
}

.heroimg img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.scrollformore {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #888;
    font-weight: 600;
    animation: bounce 2s infinite;
}

.hero.hero-image-left .heroimg {
    right: auto;
    left: 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}






.inner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 80px 0;
}


.eyebrow {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: goldenrod;
    width: 100%;
    letter-spacing: 0.15em;
}
.eyebrow.center {
    text-align: center;
}
.eyebrow.left {
    text-align: left;
}

.sectiontitle {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
}
.sectiontitle.center {
    text-align: center;
}
.sectiontitle.left {
    text-align: left;
}

.sectionsubtitle {
    display: block;
    font-size: 20px;
    color: #666;
    margin: 15px 0;
    line-height: 1.5;
}
.sectionsubtitle.center {
    text-align: center;
}
.sectionsubtitle.left {
    text-align: left;
}

.sectiontext {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin: 20px 0;
}




.bekanntaus {
    background-color: rgb(248, 250, 252);
}
.bekanntaus ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    margin-top: 40px;
}
.bekanntaus ul li {
    font-size: 24px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}
.bekanntaus ul li:hover {
    color: goldenrod;
}

.wasanderesagen {
    background-color: white;
}
.wasanderesagen .inner {
    max-width: 900px;
}

.quote-swiper {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.quote-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.quote-track::-webkit-scrollbar {
    display: none;
}

.quote-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: white;
    border-radius: 24px;
    padding: 50px 45px;
    display: grid;
    gap: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(218, 165, 32, 0.15);
    min-height: 320px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, goldenrod 0%, #DAA520 100%);
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.quote-card blockquote {
    margin: 0;
    font-size: 20px;
    line-height: 1.8;
    color: #2c2c2c;
    font-style: normal;
    position: relative;
    padding-left: 30px;
    font-weight: 400;
}

.quote-card blockquote::before {
    content: '\201C';
    font-size: 120px;
    color: goldenrod;
    opacity: 0.15;
    position: absolute;
    top: -45px;
    left: -15px;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.quote-card figcaption {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    padding-top: 0;
    border-top: none;
}

.quote-card figcaption::before {
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(218,165,32,0.2) 0%, rgba(218,165,32,0.35) 100%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 17px;
    line-height: 1.3;
}

.quote-role {
    color: #888;
    font-size: 14px;
    line-height: 1.4;
}

.quote-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.quote-btn {
    border: 2px solid #e0d7c9;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}
.quote-btn:hover {
    border-color: goldenrod;
    background: goldenrod;
    color: white;
    transform: translateY(-2px);
}

.quote-dots {
    display: flex;
    gap: 10px;
}

.quote-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #d0c7b9;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.quote-dots button:hover {
    border-color: goldenrod;
}
.quote-dots button[aria-current="true"] {
    background: goldenrod;
    border-color: goldenrod;
    transform: scale(1.2);
}

.ueberwerner {
    background-color: white;
}
.ueberwerner .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ueberwernercontent {
    display: flex;
    flex-direction: column;
}
.wernerzitat {
    display: block;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    color: goldenrod;
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid goldenrod;
}
.ueberwernerbild {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(218,165,32,0.1) 0%, rgba(218,165,32,0.3) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ueberwernerbild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.leistungen {
    background-color: rgb(248, 250, 252);
}
.leistungen .inner {
    text-align: center;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(218, 165, 32, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(218, 165, 32, 0.3);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(218, 165, 32, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: goldenrod;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

.service-features li svg {
    color: goldenrod;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: goldenrod;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
    width: fit-content;
}

.service-link:hover {
    gap: 12px;
    color: #B8941E;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

.newsletter {
    background-color: white;
    padding: 80px 0;
}
.newslettercard {
    width: 90%;
    max-width: 800px;
    margin: auto;
    background: linear-gradient(135deg, goldenrod 0%, #DAA520 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(218, 165, 32, 0.2);
}
.newslettertitle {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}
.newslettersubtitle {
    display: block;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 35px;
}

.newsletter-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-2px);
}

.newsletter-button {
    padding: 16px 32px;
    border: 2px solid white;
    border-radius: 50px;
    background: white;
    color: goldenrod;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-button svg {
    transition: transform 0.3s ease;
}

.newsletter-button:hover svg {
    transform: translateX(4px);
}

.kontakt {
    background-color: rgb(248, 250, 252);
}
.kontakt .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.kontaktcontent {
    display: flex;
    flex-direction: column;
}
.kontaktcards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.kontaktcard {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    text-decoration: none;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kontaktcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.kontaktcard:hover::before {
    transform: scaleX(1);
}

.kontaktcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: currentColor;
}

.kontaktcard-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.kontaktcard-icon svg {
    width: 28px;
    height: 28px;
}

.kontaktcard:hover .kontaktcard-icon {
    background: currentColor;
    transform: scale(1.1);
}

.kontaktcard:hover .kontaktcard-icon svg {
    color: white !important;
}

.kontaktcard-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 5px;
}

.kontaktcard-text {
    font-size: 14px;
    color: #666;
}

.kontaktcard.whatsapp {
    color: #25D366;
}

.kontaktcard.linkedin {
    color: #0077B5;
}

.kontaktcard.instagram {
    color: #E4405F;
}

.kontaktcard.email {
    color: goldenrod;
}

.galerie { background: white; }
.galerie-grid {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}
.galerie-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
}
.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    cursor: pointer;
}
.galerie-item img:hover {
    transform: scale(1.03);
}

footer {
    background-color: rgb(234, 237, 241);
}
footer .inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}
.footertitle {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #333;
}
.footernav {
    list-style: none;
    display: flex;
    gap: 30px;
}
.footernav li {
    font-size: 15px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}
.footernav li:hover {
    color: goldenrod;
}
.copyright {
    text-align: right;
    font-size: 14px;
    color: #888;
}


/* Responsive Design */
@media (max-width: 900px) {
    .mobilemenu { display: block; }
    .navlist {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .navlist.open {
        display: flex;
    }
    .navlist li {
        text-align: center;
    }
    .navlist a {
        display: block;
        padding: 12px 20px;
        font-size: 17px;
    }

    .inner {
        padding: 80px 0;
    }

    .heroimg {
        position: absolute;
        right: 0;
        top: 50%;
        width: 100%;
        height: 100%;
    }

    .heroimg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: right center;
    }

    .hero.hero-image-left .heroimg {
        right: auto;
        left: 0;
    }

    .hero.hero-image-left .heroimg img {
        object-position: left center;
    }

    .heroinner {
        position: relative;
        z-index: 1;
    }

    .herocontent {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 20px;
        padding: 28px 22px;
        margin: 0 auto;
        max-width: 85%;
    }

    .herocontent .title {
        font-size: 32px;
    }

    .herocontent .subtitle {
        font-size: 18px;
    }

    .sectiontitle {
        font-size: 32px;
    }

    .sectionsubtitle {
        font-size: 18px;
    }

    .quote-card {
        padding: 40px 35px;
        min-height: 300px;
    }

    .quote-card blockquote {
        font-size: 19px;
        padding-left: 25px;
    }

    .quote-card blockquote::before {
        font-size: 100px;
        top: -35px;
    }

    .ueberwerner .inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ueberwernerbild {
        height: 400px;
    }

    .wernerzitat {
        font-size: 24px;
    }

    .newslettertitle {
        font-size: 28px;
    }

    .newslettersubtitle {
        font-size: 16px;
    }

    .newslettercard {
        padding: 40px 30px;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
        justify-content: center;
    }

    .kontakt .inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer .inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .copyright {
        text-align: center;
    }

    .footernav {
        justify-content: center;
    }

    .leistungen-grid {
        gap: 24px;
        margin-top: 50px;
    }

    .service-card {
        padding: 35px;
    }

    .service-title {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .inner {
        padding: 80px 0;
    }

    .galerie-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .herocontent .title {
        font-size: 26px;
        margin: 15px 0;
    }

    .herocontent .subtitle {
        font-size: 16px;
    }

    .herocontent {
        padding: 24px 20px;
    }

    .herocontent .buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .herocontent .buttons .button {
        margin-right: 0;
        text-align: center;
    }

    .sectiontitle {
        font-size: 28px;
    }

    .bekanntaus ul {
        gap: 25px 35px;
    }

    .bekanntaus ul li {
        font-size: 18px;
    }

    .quote-card {
        padding: 35px 25px;
        min-height: 280px;
    }

    .quote-card blockquote {
        font-size: 18px;
        padding-left: 20px;
    }

    .quote-card blockquote::before {
        font-size: 80px;
        top: -28px;
    }

    .quote-card figcaption::before {
        width: 40px;
        height: 40px;
    }

    .quote-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .wernerzitat {
        font-size: 20px;
    }

    .newslettertitle {
        font-size: 24px;
    }

    .newslettercard {
        padding: 30px 20px;
    }

    .kontaktcards {
        grid-template-columns: 1fr;
    }

    .leistungen-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .service-card {
        padding: 30px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
    }

    .service-icon svg {
        width: 36px;
        height: 36px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 15px;
    }

    .service-features li {
        font-size: 14px;
    }
}

/* Event Cards */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: white;
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid rgba(218, 165, 32, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(218, 165, 32, 0.3);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(218, 165, 32, 0.2) 100%);
    border-radius: 12px;
}

.event-day {
    font-size: 28px;
    font-weight: 800;
    color: goldenrod;
    line-height: 1;
}

.event-month {
    font-size: 13px;
    font-weight: 700;
    color: goldenrod;
    letter-spacing: 0.1em;
}

.event-year {
    font-size: 11px;
    color: #999;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.event-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}

.event-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.event-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
}

.event-price {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

@media (max-width: 600px) {
    .event-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .event-action {
        width: 100%;
    }

    .event-action .button {
        width: 100%;
        text-align: center;
    }
}

/* Basic Blocks */
.ce { margin-bottom: 30px; }
.ce-text h2 { font-size: 28px; margin-bottom: 12px; }
.ce-text .ce-body { font-size: 18px; line-height: 1.8; color: #444; }
.ce-text .ce-body p { margin-bottom: 10px; }
.ce-image img { width: 100%; border-radius: 20px; }
.ce-image figcaption { font-size: 14px; color: #888; margin-top: 8px; text-align: center; }
.ce-divider { border: none; border-top: 1px solid #e5e5e5; margin: 40px 0; }

/* Grid */
.ce-grid { margin-bottom: 30px; }
.ce-grid-col > .ce:last-child { margin-bottom: 0; }

/* Form Block */
.ce-form { max-width: 600px; }
.ce-form h2 { font-size: 28px; margin-bottom: 16px; }
.site-form-group { margin-bottom: 16px; }
.site-form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 15px; }
.site-form-group input[type="text"],
.site-form-group input[type="email"],
.site-form-group input[type="tel"],
.site-form-group input[type="number"],
.site-form-group input[type="date"],
.site-form-group select,
.site-form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid #e5e5e5; border-radius: 12px; font-size: 16px; font-family: inherit; transition: border-color 0.3s; outline: none; }
.site-form-group input:focus, .site-form-group select:focus, .site-form-group textarea:focus { border-color: goldenrod; }
.site-form-group textarea { resize: vertical; }
.site-form button[type="submit"] { padding: 14px 32px; background: goldenrod; color: white; border: none; border-radius: 50px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s; font-family: inherit; }
.site-form button[type="submit"]:hover { background: #B8941E; transform: translateY(-2px); }
.site-form-inline { display: flex; gap: 12px; }
.site-form-inline input { flex: 1; }
.form-success { padding: 16px; background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: 12px; margin-bottom: 16px; color: #2e7d32; }
