/* Add your styles here */

body {
    font-family: 'Verdana', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

header {
    background-color: #3498db;
    color: white;
    text-align: center;
    padding: 2em;
}

h1 {
    margin: 0;
    font-size: 2em;
}

p {
    margin: 10px 0;
    font-size: 1.2em;
}

#hero {
    display: flex;
    justify-content: space-around;
    margin: 2em;
}

img {
    max-width: 100%;
    max-height: 40vh;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s;
}

img:hover {
    opacity: 0.9;
}

#buttons {
    text-align: center;
    margin: 2em;
}

.button {
    display: inline-block;
    padding: 1.5em 3em;
    text-decoration: none;
    background-color: #e74c3c;
    color: white;
    font-size: 1.5em;
    margin: 1em;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #c0392b;
}

.button .french {
    display: block;
    font-size: 1.5em;
}

.button .english {
    display: block;
    font-size: 1em;
}

#features {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 2em;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2.5em; /* Increased icon size */
    color: #3498db;
}

.feature p {
    font-size: 1.2em;
    margin-top: 0.3em;
}

.footer {
    background-color: #34495e;
    color: grey; /* Changed text color to grey */
    text-align: center;
    padding: 0.3em;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 0.2em; /* Reduced font size to half */
    opacity: 0.6;
}

.animate {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s, transform 1s;
}

.animated {
    opacity: 1;
    transform: scale(1);
}

.zoom {
    transition: transform 0.5s;
}

.zoom:hover {
    transform: scale(1.1);
}
