
/*================ Color Variables =================*/
:root {
    --iiser-red: #b30000;
    --dark-red: #8b0000;
    --text-color: #2c3e50;
    --white: #ffffff;
}/*================ Club Section =================*/

.club-section {
    padding: 70px 20px;
    background-color: #f9f9f9;
    margin: 50px;
}

.club-container {
    max-width: 1100px;
    margin: auto;
}

/* Layout */
.club-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Left content */
.club-content {
    flex: 1;
}

.club-heading {
    font-size: 2.4rem;
    color: var(--iiser-red);
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.club-title {
    font-size: 1.8rem;
    color: var(--iiser-red);
    font-weight: 700;
    margin-bottom: 20px;
}

.club-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
    text-align: justify;
}

/* Logo (Right side) */
.club-logo {
    flex: 0 0 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.club-logo img {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Social icons */
.club-links {
    margin-top: 15px;
}

.club-links a {
    width: 40px;
    height: 40px;
    background: var(--iiser-red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: 0.3s;
}

.club-links a:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
}

/* Buttons */
.club-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.club-btn {
    background: var(--iiser-red);
    color: #fff;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    transition: 0.3s;
}

.club-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

/*================ Responsive =================*/

@media (max-width: 992px) {
    .club-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .club-content {
        text-align: left;
    }

    .club-logo {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .club-heading {
        font-size: 1.8rem;
    }

    .club-title {
        font-size: 1.4rem;
    }

    .club-btn {
        width: 100%;
        text-align: center;
    }
}