/* Variables */
:root {
    --primary-color: #FF6600; /* Orange vif du logo */
    --secondary-color: #333;
    --text-color: #555;
    --light-bg: #f9f9f9;
    --white: #fff;
    --font-family: 'Inter', sans-serif;
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5 {
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s;
}

a:hover {
    color: #cc5200; /* Darker orange */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, color 0.3s;
    border: none;
    cursor: pointer;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn.primary:hover {
    background-color: #cc5200;
}

.btn.secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn.secondary:hover {
    background-color: #555;
}

/* Header and Navigation */
header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.5em;
    margin: 0;
    color: var(--primary-color);
}

.logo-icon {
    /* Placeholder for the logo icon (two white squares on orange background) */
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 5px;
    margin-right: 10px;
    position: relative;
}

.logo-icon::before, .logo-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--white);
    border-radius: 2px;
}

.logo-icon::before {
    top: 5px;
    left: 5px;
}

.logo-icon::after {
    bottom: 5px;
    right: 5px;
}


nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.btn-contact {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 15px;
    border-radius: 5px;
    margin-left: 20px;
}

.btn-contact:hover {
    background-color: #cc5200;
}

/* Sections */
section {
    padding: 80px 0;
}

.hero {
    background-color: var(--light-bg);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.tagline {
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Programs Section */
.programs {
    background-color: var(--white);
}

.program-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.program-card h4 {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 5px;
}

.program-card h4 i {
    font-size: 1.2em;
    margin-right: 10px;
}
    font-size: 1.5em;
    margin-bottom: 5px;
}

.program-card .subtitle {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* About Section */
.about {
    background-color: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.about-grid h4 {
    color: var(--primary-color);
    font-size: 1.4em;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.values ul {
    list-style: none;
    padding: 0;
}

.values li {
    margin-bottom: 5px;
    font-weight: 600;
}

/* Services Section */
.services {
    background-color: var(--white);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
}

.service-item h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.service-item h5 i {
    font-size: 1.2em;
    margin-right: 8px;
    color: var(--primary-color);
}
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Call to Action (CTA) */
.cta {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.cta .btn.secondary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .btn.secondary:hover {
    background-color: #eee;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #ccc;
    padding: 40px 0 20px;
    font-size: 0.9em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
}

.footer-grid h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}
    margin-bottom: 10px;
}

.tagline-footer {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1.2em;
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.social-links a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-links li {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .program-list, .service-list {
        grid-template-columns: 1fr;
    }

    .hero h2 {
        font-size: 2em;
    }
}
