/* Celebration Page CSS */
:root {
    --festive-red: #002147;
    --festive-orange: #F2A900;
    --festive-blue: #002147;
    --text-dark: #2c3e50;
    --bg-light: #fdfdfd;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.celebration-hero {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(243, 156, 18, 0.8)), url('https://images.unsplash.com/photo-1513151233558-d860c5398176?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 76px;
    /* clip-path removed for straight professional look */
}

.celebration-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.celebration-hero p {
    font-size: 1.5rem;
    font-weight: 300;
}

.celebration-section {
    padding: 80px 0;
}

.cta-banner {
    background-color: var(--festive-blue);
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-celebrate {
    background: white;
    color: var(--festive-blue);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s;
    display: inline-block;
}

.btn-celebrate:hover {
    transform: scale(1.1);
}

.celebration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.celebration-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.celebration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.celebration-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: var(--festive-red);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content .date {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content p {
    color: #555;
    line-height: 1.6;
}

.no-data {
    text-align: center;
    font-size: 1.2rem;
    color: #888;
    padding: 50px;
    background: #fff;
    border-radius: 10px;
}

/* Why Celebrate Section */
.why-celebrate {
    background-color: #fefefe;
    padding: 80px 0;
}

.icon-box-simple {
    text-align: center;
    padding: 20px;
}

.icon-box-simple i {
    font-size: 3rem;
    color: var(--festive-orange);
    margin-bottom: 20px;
}
