:root {
    --fest-bg: #fff5f5;
    --fest-text: #2d3436;
    --fest-primary: #ff4757; /* Festive Red */
    --fest-secondary: #ffa502; /* Gold */
    --fest-card: #ffffff;
    --fest-border: #ffcccb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--fest-bg); color: var(--fest-text);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-image: radial-gradient(circle at center, #fff 0%, #fff5f5 100%);
}

.fest-container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Header */
.fest-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; margin-bottom: 40px; border-bottom: 2px dashed var(--fest-border);
}
.fest-brand {
    font-size: 26px; font-weight: bold; color: var(--fest-primary);
    display: flex; align-items: center; gap: 8px;
}
.fest-brand::before { content: '🎉'; font-size: 28px; }
.fest-nav { display: flex; gap: 20px; }
.fest-nav a {
    color: #555; text-decoration: none; font-weight: bold; font-size: 15px;
    padding: 8px 16px; border-radius: 20px; transition: all 0.3s;
}
.fest-nav a:hover, .fest-nav a.active {
    background: var(--fest-primary); color: #fff;
}

/* Hero */
.fest-hero {
    text-align: center; margin-bottom: 60px; padding: 60px 20px;
    background: linear-gradient(135deg, #ff4757 0%, #ffa502 100%);
    border-radius: 20px; color: #fff; box-shadow: 0 15px 30px rgba(255, 71, 87, 0.2);
    position: relative; overflow: hidden;
}
.fest-hero::after {
    content: '🎊'; position: absolute; top: -20px; right: -20px; font-size: 100px; opacity: 0.2;
}
.fest-hero h1 { font-size: 48px; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.2);}
.fest-hero p { font-size: 20px; margin-bottom: 30px; font-weight: 500;}

.btn-fest {
    display: inline-block; padding: 15px 40px; font-size: 18px; font-weight: bold;
    color: var(--fest-primary); background: #fff; border-radius: 30px;
    text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-fest:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* Offers */
.fest-offers { margin-bottom: 80px; }
.f-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.f-card {
    background: var(--fest-card); padding: 40px 20px; border-radius: 15px;
    text-align: center; border: 2px solid var(--fest-border);
    position: relative; transition: transform 0.3s;
}
.f-card:hover { transform: translateY(-10px); border-color: var(--fest-primary); }
.f-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--fest-secondary); color: #fff; padding: 5px 15px;
    border-radius: 20px; font-weight: bold; font-size: 14px;
}
.f-icon { font-size: 40px; margin-bottom: 15px; }
.f-card h3 { font-size: 22px; color: var(--fest-primary); margin-bottom: 10px;}
.f-card p { font-size: 15px; color: #666;}

/* FAQ */
.fest-faq { background: #fff; padding: 50px; border-radius: 20px; margin-bottom: 80px; border: 1px solid var(--fest-border);}
.fest-faq h2 { text-align: center; font-size: 28px; color: var(--fest-primary); margin-bottom: 40px;}
.f-faq-item { margin-bottom: 25px; border-bottom: 1px dashed var(--fest-border); padding-bottom: 20px;}
.f-fq { font-weight: bold; font-size: 18px; color: #333; margin-bottom: 10px;}
.f-fa { color: #666; font-size: 15px;}

footer {
    text-align: center; padding: 30px 0; color: #999; font-size: 14px;
}

@media (max-width: 768px) {
    .f-grid { grid-template-columns: 1fr; }
    .fest-header { flex-direction: column; gap: 15px; }
}