/* Angebot Page Specific Styles */

.content-section {
    padding: 80px 0;
    background: transparent;
}

.page-intro-centered {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.page-intro-centered h2 {
    font-size: 36px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.page-intro-centered h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.page-intro-centered p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Angebote Grid */
.angebote-section {
    margin-bottom: 100px;
}

.angebote-heading {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: left;
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.angebot-card {
    padding: 38px 34px;
    background: var(--accent-cream, #faf4e6);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 220px;
}

.angebot-card:nth-last-child(-n+1):nth-child(odd) {
    grid-column: 1 / -1;
}

.angebot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -16px rgba(30, 42, 94, 0.28);
    border-color: var(--primary-color);
}

.angebot-number {
    font-family: "Essential Sans Black", "Essential Sans", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 14px;
    color: var(--primary-color);
    opacity: 0.5;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.angebot-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.angebot-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Standorte Section */
.standorte-section {
    margin-bottom: 80px;
}

.standorte-section h2 {
    font-size: 36px;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.standorte-banner {
    background: var(--primary-color);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.standort-item {
    color: var(--accent-cream);
    padding: 28px 30px;
    border-right: 1px solid rgba(245, 237, 224, 0.15);
    transition: background 0.3s ease;
}

.standort-item:last-child {
    border-right: none;
}

.standort-item:hover {
    background: rgba(245, 237, 224, 0.06);
}

.standort-name {
    font-family: "Essential Sans Black", "Essential Sans", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.standort-adresse {
    font-size: 12px;
    opacity: 0.7;
    font-weight: 400;
}

/* Preise Section - Card Grid */
.preise-section {
    margin-bottom: 80px;
}

.preise-header {
    text-align: center;
    margin-bottom: 3rem;
}

.preise-section h2 {
    font-size: 36px;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.preise-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.price-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.price-card-new {
    border: 1px solid var(--border-color);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    transition: all 0.3s ease;
    background: rgba(245, 237, 224, 0.3);
}

.price-card-new:hover {
    border-color: var(--primary-color);
    background: rgba(30, 42, 94, 0.03);
}

.price-card-featured {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.price-card-new.price-card-featured .price-persons-label,
.price-card-new.price-card-featured h3,
.price-card-new.price-card-featured .price-amount-new,
.price-card-new.price-card-featured .price-currency {
    color: var(--accent-cream);
}

.price-card-featured:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.price-card-team {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
    padding: 28px 36px;
}

.price-card-team .price-card-top,
.price-card-team .price-card-bottom {
    margin: 0;
}

.price-card-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.price-persons-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.price-card-new h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.1;
}

.price-card-bottom {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-amount-new {
    font-family: "Essential Sans Black", "Essential Sans", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.price-currency {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.price-per-person {
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1100px) {
    .price-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
    .price-card-team {
        grid-column: span 3;
    }
}

@media (max-width: 968px) {
    .angebote-grid {
        grid-template-columns: 1fr;
    }
    .angebot-card {
        border-right: none;
    }
    .price-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-card-team {
        grid-column: span 2;
    }
    .standorte-banner {
        grid-template-columns: repeat(2, 1fr);
    }
    .standort-item:nth-child(2) {
        border-right: none;
    }
    .standort-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(245, 237, 224, 0.15);
    }
}

@media (max-width: 640px) {
    .price-grid-new {
        grid-template-columns: 1fr;
    }
    .price-card-team {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }
    .standorte-banner {
        grid-template-columns: 1fr;
    }
    .standort-item {
        border-right: none;
        border-bottom: 1px solid rgba(245, 237, 224, 0.15);
    }
    .standort-item:last-child {
        border-bottom: none;
    }
    .page-intro-centered h2,
    .angebote-heading,
    .preise-section h2,
    .standorte-section h2 {
        font-size: 28px;
    }
}


/* ============================================
   Angebot Hero — 2-Spalten mit Bild rechts
   (gleiches Muster wie KidsCamp)
   ============================================ */
.angebot-hero {
    padding: 90px 0 70px !important;
    text-align: left !important;
}

.angebot-hero .container {
    max-width: 1280px;
}

.angebot-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: center;
}

.angebot-hero-content {
    max-width: 560px;
}

.angebot-hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.angebot-hero-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.angebot-hero-image-caption {
    display: block;
    font-family: "Essential Sans Black", "Essential Sans", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    opacity: 0.55;
    margin-top: 14px;
    text-align: right;
    width: 100%;
}

.angebot-hero-eyebrow {
    display: inline-block;
    font-family: "Essential Sans Black", "Essential Sans", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    opacity: 0.55;
    margin: 0 0 22px 0;
    padding-bottom: 12px;
    border-bottom: 1.5px solid var(--primary-color);
}

.angebot-hero h1 {
    font-size: 56px !important;
    line-height: 1.02 !important;
    margin: 0 0 24px 0 !important;
}

.angebot-hero-sub {
    font-family: "DM Sans", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.55;
    color: var(--primary-color);
    opacity: 0.85;
    margin: 0 0 32px 0;
    font-weight: 400;
}

.angebot-hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.angebot-hero-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--accent-cream);
    font-family: "DM Sans", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 40px;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.angebot-hero-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.angebot-hero-link {
    font-family: "DM Sans", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1.5px solid var(--primary-color);
    padding-bottom: 4px;
    transition: opacity 0.2s ease;
}

.angebot-hero-link:hover {
    opacity: 0.65;
}

/* Intro darunter — zentriert, schmal */
.angebot-intro-text {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 0 40px;
    text-align: center;
}

.angebot-intro-text h2 {
    font-family: "Essential Sans Black", "Essential Sans", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 32px 0;
    line-height: 1.1;
}

.angebot-intro-body {
    text-align: left;
}

.angebot-intro-body p {
    font-family: "DM Sans", Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--primary-color);
    opacity: 0.88;
    margin: 0 0 18px 0;
}

.angebot-intro-body p:last-child {
    margin-bottom: 0;
}

.angebot-intro-body ul {
    font-family: "DM Sans", Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--primary-color);
    opacity: 0.88;
    margin: 0 0 18px 0;
    padding-left: 20px;
}

.angebot-intro-body ul li {
    margin-bottom: 10px;
}

.angebot-intro-body ul li:last-child {
    margin-bottom: 0;
}

.angebot-intro-body strong {
    font-weight: 700;
    opacity: 1;
}

.angebot-faq .angebot-intro-body h3 {
    font-family: "DM Sans", Helvetica, Arial, sans-serif !important;
    font-size: 19px !important;
    font-weight: 700;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    color: var(--primary-color);
    margin: 28px 0 10px;
    line-height: 1.35;
}

.angebot-faq .angebot-intro-body h3:first-child {
    margin-top: 0;
}

.angebot-intro-body a {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.angebot-intro-body a:hover {
    opacity: 0.7;
}

@media (max-width: 968px) {
    .angebot-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .angebot-hero-image {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .angebot-hero-image-caption {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .angebot-hero {
        padding: 60px 0 50px !important;
    }

    .angebot-hero h1 {
        font-size: 38px !important;
    }

    .angebot-hero-sub {
        font-size: 16px;
    }

    .angebot-hero-actions {
        gap: 20px;
    }

    .angebot-hero-btn {
        padding: 16px 28px;
        font-size: 13px;
    }

    .angebot-intro-text {
        padding: 40px 0 24px;
    }

    .angebot-intro-text h2 {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .angebot-intro-body p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .angebot-hero {
        padding: 48px 0 40px !important;
    }

    .angebot-hero h1 {
        font-size: 30px !important;
        margin: 0 0 18px 0 !important;
    }

    .angebot-hero-sub {
        font-size: 15px;
    }

    .angebot-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .angebot-hero-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 12px;
        text-align: center;
    }

    .angebot-intro-text h2 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .angebot-card {
        padding: 24px 20px;
    }

    .angebot-card h3 {
        font-size: 18px;
    }
}

/* Angebot-Inquiry (reuses .home-inquiry-* styles) — nur Section-Rand */
.angebot-inquiry {
    border-top: 1.5px solid var(--primary-color);
}
