/* Tomas Crovetto, 17.01.25, Page d'accueil */
/* Styles généraux */
p {
    text-align: justify;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    overflow-x: hidden;
    
}

header {
    background-color: #cc0000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    width: auto;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding:0;
    display:flex;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Section Hero */
.hero {
    background-image: url('./../image/panigale2025img1.webp');
    background-size: cover;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-position: center;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#modèle {
        padding: 10px 20px;
        font-size: 1rem;
        background-color: white;
        color: #cc0000;
        border: none;
        cursor: pointer;
        text-decoration: none;
        border-radius: 15px;
        
        transition: border-radius 0.7s ease;

}

#modèle:hover {
    background-color: #690e0e;
    color: #e3dbdb;
    border-radius: 1px;
    transition: border-radius 0.7s ease;
    transition: background-color 0.7s ease; 
}

/* Section Caractéristiques */
.features {
    padding: 50px;
    background-color: white;
}

.features h2 {
    text-align: center;
    color: #cc0000;
    gap: 20px;
}

.feature-list {
    position: relative;
    margin: 10px;
    margin-top: 20px;

}

.feature {
    background-color: #cac9c9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 30%;

    margin-top: auto;
    margin-bottom: 10%;
    margin-right: auto;
    margin-left: auto;
    width: auto;

}

.feature h3 {
    color: #cc0000;
}

/* Section Galerie */
.gallery {
    padding: 50px;
    background-color: #787878;
}

.gallery h2 {

    color: #cc0000;
}

.image-gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.image-gallery img {
    width: 30%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.1);
}


/* Section Contact */
.contact {
    padding: 50px;
    background-color: white;
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}


@media (min-width: 600px) {
    .feature-list {
        flex: 1 1 calc(45% - 20px); /* Largeur pour tablettes */
    }
  
}  @media (max-width: 600px) {
    .hero {
        background-size: cover;
        background-position: top center; /* On ajuste la position pour mieux s'adapter à l'écran */
        height: 60vh; /* On réduit la hauteur de l'image pour les écrans plus petits */
    }
}
@media (max-width: 800px) {
    .image-gallery {
        flex-direction: column;
        /* Les cartes seront empilées sur petits écrans */
        align-items: center;
    }
}
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        /* Les cartes seront empilées sur petits écrans */
        align-items:end;
    }
}

