/* ============================================
   🎨 ANGEBOTE PAGE - MODERN CARD DESIGN
   Pizzeria Vulcano Gelsenkirchen
   Updated: January 9, 2026
   ============================================ */

/* ===== HERO SECTION ===== */
.angebote-hero {
    background: linear-gradient(135deg, #2c1810 0%, #5a3825 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.angebote-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 119, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 168, 126, 0.15) 0%, transparent 50%);
}

.angebote-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.angebote-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.angebote-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #d4776e 0%, #e88a7e 100%);
    margin: 0 auto;
    border-radius: 2px;
    animation: scaleIn 0.8s ease-out 0.6s both;
}

/* ===== MAIN SECTION ===== */
.angebote-main {
    background: #f5f5f5;
    padding: 4rem 0;
    min-height: 60vh;
}

/* ===== OFFERS GRID ===== */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== OFFER CARD ===== */
.offer-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 3px solid;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ===== COLOR VARIANTS ===== */
.offer-card.pink {
    border-color: #ffcccb;
    background: linear-gradient(to bottom, #fff5f5 0%, #fff 30%);
}

.offer-card.green {
    border-color: #c8e6c9;
    background: linear-gradient(to bottom, #f1f8f4 0%, #fff 30%);
}

.offer-card.coral {
    border-color: #ffd4c8;
    background: linear-gradient(to bottom, #fff7f5 0%, #fff 30%);
}

/* ===== FEATURED BADGE ===== */
.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #8b6914;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
}

.featured-badge i {
    font-size: 0.9rem;
    animation: pulse 1.5s infinite;
}

/* ===== OFFER HEADER ===== */
.offer-header {
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}

.offer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* ===== PRICE SECTION ===== */
.offer-price-section {
    text-align: center;
    padding: 1rem 2rem;
}

.offer-price-main {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4776e;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.offer-card.pink .offer-price-main {
    color: #e63946;
}

.offer-card.green .offer-price-main {
    color: #2d6a4f;
}

.offer-card.coral .offer-price-main {
    color: #ff6b35;
}

.offer-price-old {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

/* ===== OFFER CONTENT ===== */
.offer-content {
    padding: 1.5rem 2rem;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.offer-list li i {
    color: #51cf66;
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.offer-card.pink .offer-list li i {
    color: #e63946;
}

.offer-card.green .offer-list li i {
    color: #2d6a4f;
}

.offer-card.coral .offer-list li i {
    color: #ff6b35;
}

/* ===== OFFER FOOTER ===== */
.offer-footer {
    padding: 1.5rem 2rem 2rem 2rem;
}

.offer-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #d4776e 0%, #e88a7e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(212, 119, 110, 0.3);
}

.offer-card.pink .offer-btn {
    background: linear-gradient(135deg, #e63946 0%, #f07178 100%);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.offer-card.green .offer-btn {
    background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

.offer-card.coral .offer-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8961 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.offer-btn i {
    margin-right: 0.5rem;
}

/* ===== INFO SECTION ===== */
.angebote-info {
    background: #2c1810;
    color: #fff;
    padding: 3rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.info-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: #e8a87e;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #51cf66;
    font-weight: bold;
}

.info-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.info-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #d4776e 0%, #e88a7e 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.info-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 119, 110, 0.4);
}

.info-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.info-btn.whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.info-btn i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .angebote-hero {
        padding: 3rem 0 2.5rem;
    }

    .angebote-hero-title {
        font-size: 2.5rem;
    }

    .angebote-hero-subtitle {
        font-size: 1.1rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-title {
        font-size: 1.6rem;
    }

    .offer-price-main {
        font-size: 2.5rem;
    }

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

    .info-btn {
        display: block;
        text-align: center;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .angebote-hero-title {
        font-size: 2rem;
    }

    .offer-header {
        padding: 1.5rem 1.5rem 0.75rem 1.5rem;
    }

    .offer-price-section {
        padding: 0.75rem 1.5rem;
    }

    .offer-content {
        padding: 1rem 1.5rem;
    }

    .offer-footer {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }

    .offer-title {
        font-size: 1.4rem;
    }

    .offer-price-main {
        font-size: 2.2rem;
    }

    .offer-list li {
        font-size: 0.9rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .angebote-hero,
    .whatsapp-float,
    header,
    footer {
        display: none !important;
    }

    .offer-card {
        break-inside: avoid;
        box-shadow: none;
        border: 2px solid #ddd;
    }

    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}