.navbar-brand img {
    width: 100px;
}

.bannLathuile {
    margin-right: -256px! important;
    margin-top: -104px;
}

body {
    font-family: Inter, sans-serif !important;
    background-color: white !important; /* Force la couleur */

}

.unis {
    font-family: Satisfy, sans-serif;
    font-size: 1.4rem;
    font-weight: normal;
    padding-right: 5px;
}

.pour {
    font-family: Inter, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
}

.hero {
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero h1 {
    position: absolute;
    bottom: 20px;
    left: 30px;
    color: white;
    z-index: 2;
}

.imgmain {
    width: 100%;
    max-height: 400px;
    object-fit: cover; 
}

.notrE {
    height: 130px;
}

/* Footer */
    footer {
        background: linear-gradient(135deg, #1a7b8e 0%, #2d9caa 100%);
        color: #fff;
        padding: 60px 0 20px;
        margin-top: 80px;
    }

    footer h5 {
        color: #fff;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    footer p {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 10px;
        line-height: 1.6;
    }

    footer a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    footer a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-logo {
        width: 120px;
        height: auto;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin-bottom: 20px;
    }

    .social-icons {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .social-icons a {
        background: rgba(255, 255, 255, 0.15);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-3px);
    }

    .social-icons img {
        width: 24px;
        height: 24px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 40px;
        padding-top: 20px;
        text-align: center;
    }

    .footer-bottom p {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .contact-info {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 10px;
        display: inline-block;
    }

    /* Responsive */
    @media (max-width: 768px) {
        footer {
            padding: 40px 0 20px;
            text-align: center;
        }

        .footer-logo {
            width: 100px;
        }

        .social-icons {
            justify-content: center;
            margin-top: 20px;
        }

        footer h5 {
            margin-top: 30px;
        }

        footer .col-md-4:first-child h5 {
            margin-top: 0;
        }
    }

.unisP {
    margin-left: 10px;
    width: 200px !important;
}

/* header */
.logoHeader {
    width: 80px;
    margin-right: 10px;
}

.navbar .nav-link {
    position: relative;
    padding-bottom: .5rem;
    color: #1a7b8e;
    font-weight: 700;
    transition: color .25s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #1a7b8e; /* même couleur sur hover et actif */
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #1a7b8e; /* underline */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease-in-out;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar {
    margin-top: 0px !important;
}

/* compteur */
#countdown {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 1rem;
        }

        .countdown-item {
            background: linear-gradient(135deg, #1a7b8e 0%, #2d9caa 100%);
            border-radius: 12px;
            padding: 15px 10px;
            box-shadow: 0 4px 15px rgba(26, 123, 142, 0.3);
        }

        .countdown-number {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            display: block;
            line-height: 1;
        }

        .countdown-label {
            font-size: 0.85rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.95);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 8px;
            display: block;
        }

        .subtitle {
            color: #5a8a95;
            font-size: 1rem;
            font-weight: 400;
        }

        /* Responsive */
        @media (max-width: 768px) {
            #countdownContainer {
                padding: 20px 20px;
            }

            h1 {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }

            #countdown {
                gap: 15px;
            }

            .countdown-item {
                padding: 12px 10px;
            }

            .countdown-number {
                font-size: 1.8rem;
            }

            .countdown-label {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 500px) {
            #countdown {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .countdown-item {
                padding: 10px 10px;
            }

            .countdown-number {
                font-size: 1.5rem;
            }

            h1 {
                font-size: 1.3rem;
            }
        }

#h3sousImg {
    font-family: Satisfy, sans-serif !important;
    color: #447D88;
	font-weight: 100
	;
}

.footerlogo {
	border-radius: 50%;
}

footer a {
	color: inherit;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

footer h5 {
	margin-bottom: 1rem;
	font-weight: 600;
}

.count-badge {
    top: 4rem !important;
    left: 0rem !important;
}

.category-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 1.5rem !important;
    margin-top: 10px;
    }

    .count-badge {
    position: unset !important;
}