
/* Page Accueil  */

.video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.7);
    z-index: -1;
}

.video-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content h1 {
    font-size: 80px;
    font-weight: 200;
    letter-spacing: 5px;
}

/* Page Photo */

h1 {
    text-align: center;
    margin-bottom: 50px;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
}

.photo-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid #1e293b;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
    margin-left: 1rem;
    margin-right: 1rem;
}

.photo-card:hover {
    transform: translateY(-5px);
    border-color: rgb(55, 0, 255);
}

.photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.photo-card h2 {
    font-size: 18px;
    margin: 10px;
    color: white;
}

.photo-card p {
    font-size: 14px;
    margin: 0 10px 15px;
    color: #94a3b8;
}

/* page dance */

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s ease;
    text-align: center;
}

.card-contact {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s ease;
    text-align: center;
    align-items: center;
    margin-top: 8rem;
    margin-left: 50%;
    margin-right: -50%;
}
.card:hover {
    transform: translateY(-5px);
    border-color: rgb(55, 0, 255);
}

.card h2 {
    margin-bottom: 10px;
    font-size: 20px;
    color: white;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: rgb(55, 0, 255);
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #94a3b8;
}