@charset "UTF-8";

/*!
 * Version - 1.1.1
 * Copyright (c) 2025 Astrolab <info@astrolab.com> and another company
*/

/* Home */
/* HERO SECTION */

/* HERO */

.hero-section {
    position: relative;
    min-height: 700px;
    height: 85vh;
    background: var(--primary);
    overflow: hidden;
}

/* CONTENT */

.hero-content {
    height: 100%;
}

/* TEXT */

.hero-text {
    padding-right: 40px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 600;
    font-family: var(--ff-title);
}

.hero-subtitle {
    font-size: 24px;
    margin-top: 20px;
}

.hero-description {
    margin-top: 25px;
    font-size: 18px;
    max-width: 500px;
}

/* IMAGE */

.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PLAY BUTTON */

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services section */
.service-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--primary);
    height: 100%;
    transition: all .3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    background-color: var(--primary-light);
    padding: 10px;
    color: var(--dark);
}

/* checklist */

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 300;
}

/* check icon */

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #FFD338;
    font-weight: bold;
    font-size: 16px;
}

/* Experience section */
.experience-card {
    display: flex;
    height: 458px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    overflow: hidden;
    transition: all .3s ease;
}

.experience-card:hover {
    transform: translateY(-2px);
}

/* IMAGE 40% */
.experience-image {
    flex: 0 0 40%;
    height: 100%;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .5s ease;
}

.experience-card:hover img {
    transform: scale(1.01);
}

/* TEXTE 60% */
.experience-content {
    flex: 0 0 60%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.experience-description {
    color: var(--dark);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* RESPONSIVE */
@media (max-width:992px) {
    .experience-card {
        flex-direction: column;
        height: auto;
    }

    .experience-image,
    .experience-content {
        flex: 0 0 100%;
        padding: 25px;
    }
}

.experience-description strong {
    font-weight: 600 !important;
}


/* Activities section */

.activity-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
    height: 100%;
    padding: 15px;
}

.activity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.activity-image {
    height: 214px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .4s ease;
}

.activity-card:hover img {
    transform: scale(1.05);
}

/* CONTENT */

.activity-content {
    padding: 20px;
    text-align: start;
}

.activity-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--dark);
    font-family: var(--ff-title);
}

.activity-description {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}