/* Angebot Page Specific Styles */

.content-section {
    padding: 80px 0;
    background: var(--background-gray);
}

.page-intro-centered {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: left;
    padding: 0 20px;
}

.page-intro-centered h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.page-intro-centered h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 10px;
}

.page-intro-centered p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: left;
}

.intro-text {
    margin-bottom: 30px;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.intro-text p:first-child {
    margin-top: 0;
}

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

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

.standorte-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.standorte-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 10px;
}

.standorte-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(236, 100, 74, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.standort-item {
    flex: 1;
    color: var(--background-white);
    text-align: left;
    padding: 20px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

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

.standort-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.standort-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.standort-adresse {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 400;
}

/* Preise Section */
.preise-section {
    margin-bottom: 60px;
}

.preise-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.preise-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 10px;
}

.preise-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.price-card {
    background: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
}

[data-theme="dark"] .price-card {
    background: var(--background-gray);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgb(236, 100, 74), rgb(236, 100, 74), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}

.price-card:hover::before {
    transform: scaleX(1);
}

.price-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(236, 100, 74, 0.25);
    border-color: rgb(236, 100, 74);
}

.price-header {
    background: linear-gradient(135deg, rgb(236, 100, 74) 0%, rgb(216, 80, 54) 100%);
    padding: 20px 25px;
    position: relative;
}

.price-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--background-white);
    margin: 0;
    font-style: normal;
}

.price-body {
    padding: 30px 25px;
    text-align: center;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .price-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .standorte-banner {
        flex-wrap: wrap;
        border-radius: 30px;
    }

    .standort-item {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .standort-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }

    .standort-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

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

@media (max-width: 768px) {
    .standort-item:nth-child(odd) {
        border-right: none;
    }
}

/* Angebote Section */
.angebote-section {
    margin-bottom: 60px;
}

.angebote-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.angebote-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.angebote-list li {
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

.angebote-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(236, 100, 74, 0.2);
}

.angebote-list h3 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 24px;
    display: block;
    margin-top: -10px;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.angebote-list span {
    color: var(--text-secondary);
    font-size: 15px;
    display: block;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .standorte-section h2,
    .preise-section h2,
    .angebote-section h2 {
        font-size: 32px;
    }

    .standorte-section {
        margin-left: -15px;
        margin-right: -15px;
    }

    .standorte-banner {
        display: flex;
        flex-direction: column;
        border-radius: 0;
        align-items: start;
    }

    .standort-item {
        flex: 1 0 100%;
        border-right: none;
        border-bottom: none;
        padding: 15px 20px;
        text-align: left;
    }

    .price-header h3 {
        font-size: 18px !important;
    }

    .price-body {
        padding: 20px;
    }

    .price-amount {
        font-size: 28px;
    }
}
