/*================ Color Variables =================*/
:root {
    --iiser-red: #b30000;
    --dark-red: #8b0000;
    --text-color: #2c3e50;
    --white: #ffffff;
}

/*================ Cultural Fest Section =================*/

.cultural-section {
    padding: 70px 20px;
    background-color: #f9f9f9;
    color: var(--text-color);
    margin: 50px;
}

.cultural-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.cultural-heading {
    font-size: 2.5rem;
    color: var(--iiser-red);
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Text */
.cultural-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-color);
    text-align: justify;
}

/*================ Buttons =================*/

.cultural-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cultural-btn {
    background-color: var(--iiser-red);
    color: var(--white) !important;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
}

.cultural-btn:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(179, 0, 0, 0.2);
}

/*================ Responsive =================*/

@media (max-width: 768px) {
    .cultural-heading {
        font-size: 2rem;
    }

    .cultural-container p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .cultural-heading {
        font-size: 1.7rem;
    }

    .cultural-btn {
        width: 100%;
        text-align: center;
    }
}

/*================ Single Fest Image =================*/

.cultural-images {
    margin: 40px 0 20px;
}

.cultural-images img {
    width: 100%;
    height: 420px;            /* big banner size */
    object-fit: cover;
    border-radius: 10px;
    background-color: #ddd;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.cultural-images img:hover {
    transform: scale(1.02);
}

/* Tablet */
@media (max-width: 1024px) {
    .cultural-images img {
        height: 320px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .cultural-images img {
        height: 220px;
        border-radius: 8px;
    }
}

/* Fest heading */
.fest-heading {
    font-size: 2rem;
    color: var(--iiser-red);
    font-weight: 800;
    margin: 10px 0 20px;
    text-transform: uppercase;
}

/* Links (globe + instagram) */
.fest-links {
    margin: 15px 0 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.fest-links a {
    width: 42px;
    height: 42px;
    background: var(--iiser-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.fest-links a:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
}

/*================ Single Fest Image =================*/

.cultural-images {
    margin: 40px 0 20px;
}

.cultural-images img {
    width: 100%;
    height: 420px;            /* big banner size */
    object-fit: cover;
    border-radius: 10px;
    background-color: #ddd;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.cultural-images img:hover {
    transform: scale(1.02);
}

/* Tablet */
@media (max-width: 1024px) {
    .cultural-images img {
        height: 320px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .cultural-images img {
        height: 220px;
        border-radius: 8px;
    }
}