
body {
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4 {
    font-family: 'Trebuchet MS', sans-serif;
    font-weight: bold;
}

/*navigation*/
header {
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
    box-shadow: 0 2px 20px rgba(255, 0, 127, 0.1); /* Ombre rose légère */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d004d; /* Violet foncé */
}

.logo span {
    color: #ff007f; /* Rose */
    text-transform: uppercase;
}

.menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #2d004d;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: 0.3s;
}

/* Animation ligne under the links */
.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff007f;
    transition: width 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

.menu a:hover {
    color: #ff007f;
}

/* home page  */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('background.jpg') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.herotext h1 {
    font-size: 4rem;
    text-transform: uppercase;
}

.herotext span {
    color: #ff007f;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* box */
.box {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.box p {
    font-size: 0.9rem;
    color: #ffd700; 
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Bouton Listen */
.btn {
    background: white;
    color: #ff007f;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.btn:hover {
    background: #ffd700;
    color: #2d004d;
    transform: scale(1.1);
}

/* photos*/
.gallery {
    padding: 80px 10%;
    text-align: center;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ff007f;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s;
    width: 300px;
}

.item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 0, 127, 0.2);
}

.item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-bottom: 4px solid #ff007f;
}

.caption {
    padding: 15px;
    color: #2d004d;
    font-weight: bold;
    font-size: 1rem;
}


footer {
    background: #2d004d;
    color: white;
    text-align: center;
    padding: 40px;
    margin-top: 50px;
}
