html, body {
    height: 100%;
    margin: 0;
}

@font-face {
    font-family: "Audiowide";
    src: url("/public/font/audiowide-regular.ttf") format("truetype");
    font-weight: 400;
}

main {
    max-width: 1100px;
    margin: auto;
    padding: 15px;
    font-family: 'Audiowide', sans-serif;
    color: #11304a;
    text-align: center;
}

/******** LOGO ********/
.logo img {
    width: 100%;
    max-width: 350px;
    margin: auto;
}

.text {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 10px;
}

.text-small {
    font-size: 14px;
    margin-top: 60px;
    margin-bottom: 40px;
}

/******** TITRES ********/
.glisco-intro h1,
.glisco-invest h2,
.glisco-vision h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.lead {
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 25px;
}

/******** GRID INVEST ********/
.invest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.invest-item {
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #d3e1eb;
    background: #f8fbfd;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.invest-item:hover{
    transition: scale(1.03);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.invest-item img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

.invest-box h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.invest-box a {
    color: #0e4f82;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

.invest-box a:hover {
    text-decoration: underline;
}

.invest-box p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;
}

/******** RESPONSIVE ********/
@media (max-width: 900px) {
    .invest-grid {
        grid-template-columns: 1fr;
    }

    .invest-item {
        flex-direction: column;
        text-align: center;
    }

    .invest-item img {
        width: 120px;
    }
}

@media (max-width: 600px) {
    .invest-item img {
        width: 100px;
    }
}

a {
    text-decoration: none;
    color: #11304a;
}

/******** BOUTON GLISCO ********/

.cta {
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #0e304b;
    color: #ffffff;
    padding: 14px 28px;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
    background-color: #124266; /* légèrement plus clair */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

