/* ========================================
   ROCALYS ESPORT - CLUB LEAGUE OF LEGENDS
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */
.lol-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.lol-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lol-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lol-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 20, 20, 0.85) 0%, rgba(40, 15, 15, 0.90) 50%, rgba(20, 10, 10, 0.95) 100%);
    z-index: 2;
}

.lol-hero__content {
    position: relative;
    z-index: 3;
    padding: 0 240px;
    text-align: left;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.lol-hero__subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: #F3572D;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.lol-hero__title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lol-hero__cta {
    margin-top: 3rem;
}

.lol-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid #F3572D;
    padding-bottom: 0.5rem;
}

.lol-hero__link:hover {
    color: #F3572D;
    transform: translateX(10px);
}

.lol-hero__play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #F3572D;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lol-hero__link:hover .lol-hero__play-icon {
    background-color: #FFFFFF;
    color: #F3572D;
}

.lol-hero__play-icon i {
    font-size: 1.25rem;
    margin-left: 3px;
}

.lol-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.lol-hero__scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.lol-hero__scroll-indicator:hover {
    border-color: #F3572D;
    color: #F3572D;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   COACH SECTION
   ======================================== */
.lol-coach {
    position: relative;
    z-index: 10;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.lol-coach__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.lol-coach__image {
    position: relative;
}

.lol-coach__image img {
    width: 100%;
    height: auto;
    border-radius: 35px;
}

.lol-coach__content {
    padding: 0 40px;
}

.lol-coach__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.lol-coach__name {
    font-size: 2rem;
    font-weight: 700;
    color: #F3572D;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.lol-coach__text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1.5rem;
}

.lol-coach__experience {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #F3572D;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.lol-coach__experience-col {
    display: flex;
    flex-direction: column;
}

.lol-coach__experience-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.lol-coach__timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lol-coach__timeline-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lol-coach__timeline-year {
    font-size: 1rem;
    font-weight: 700;
    color: #F3572D;
}

.lol-coach__timeline-content p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
}

.lol-coach__extras {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lol-coach__extra-item {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.lol-about {
    position: relative;
    z-index: 10;
    background-color: #0A0A0A;
    padding: 100px 0;
}

.lol-about__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.lol-about__content {
    padding: 0 40px;
}

.lol-about__text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 1.5rem;
}

.lol-about__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(243, 87, 45, 0.3);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.lol-testimonials {
    position: relative;
    z-index: 10;
    background-color: #000000;
    padding: 100px 0;
}

.lol-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.lol-testimonial {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(243, 87, 45, 0.2);
    transition: all 0.3s ease;
}

.lol-testimonial:hover {
    border-color: #F3572D;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(243, 87, 45, 0.2);
}

.lol-testimonial__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.lol-testimonial__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #F3572D;
}

.lol-testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lol-testimonial__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.lol-testimonial__rank {
    font-size: 1rem;
    font-weight: 600;
    color: #F3572D;
}

.lol-testimonial__stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
    font-size: 1.25rem;
}

.lol-testimonial__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #CCCCCC;
}

/* ========================================
   APPOINTMENT SECTION
   ======================================== */
.lol-appointment {
    position: relative;
    z-index: 10;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.lol-appointment__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.lol-appointment__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.lol-appointment__text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 3rem;
}

.lol-appointment__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lol-appointment__info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.lol-appointment__info-item i {
    font-size: 1.5rem;
    color: #F3572D;
    margin-top: 0.25rem;
}

.lol-appointment__info-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.lol-appointment__info-item p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* Form Styles */
.lol-appointment__form {
    background-color: #F8F8F8;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    box-sizing: border-box;
}

/* Widget Styles - transparent pour laisser le widget respirer */
.lol-appointment__widget {
    width: 100%;
    box-sizing: border-box;
}

.lol-form__group {
    margin-bottom: 1.5rem;
}

.lol-form__label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.lol-form__input,
.lol-form__select,
.lol-form__textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    background-color: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.lol-form__input:focus,
.lol-form__select:focus,
.lol-form__textarea:focus {
    outline: none;
    border-color: #F3572D;
    box-shadow: 0 0 0 3px rgba(243, 87, 45, 0.1);
}

.lol-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.lol-form__submit {
    width: 100%;
    margin-top: 1rem;
}

/* ========================================
   ACTIVITIES SECTION
   ======================================== */
.lol-activities {
    position: relative;
    z-index: 10;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.lol-activities__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 60px;
}

.lol-activities__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.lol-activity {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 2/1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lol-activity:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.lol-activity__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lol-activity:hover .lol-activity__bg {
    transform: scale(1.05);
}

.lol-activity__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lol-activity:hover .lol-activity__overlay {
    background: rgba(0, 0, 0, 0.55);
}

.lol-activity__name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ========================================
   CTA BANNER
   ======================================== */
.lol-cta-banner {
    position: relative;
    z-index: 10;
    background: linear-gradient(90deg, #F3572D 0%, #C73D18 50%, #8B2710 100%);
    padding: 40px 0;
}

.lol-cta-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.lol-cta-banner__title {
    font-size: 2rem;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

/* ========================================
   PELMEL GALLERY SECTION
   ======================================== */
.lol-pelmel {
    position: relative;
    z-index: 10;
    background-color: #000000;
    padding: 100px 0 120px 0;
}

.section__title--center {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.lol-pelmel__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    align-items: start;
}

.lol-pelmel__col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Column vertical offsets for pelmel effect */
.lol-pelmel__col--1 {
    margin-top: 0;
}

.lol-pelmel__col--2 {
    margin-top: 80px;
}

.lol-pelmel__col--3 {
    margin-top: 40px;
}

.lol-pelmel__col--4 {
    margin-top: 120px;
}

.lol-pelmel__item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lol-pelmel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lol-pelmel__item:hover img {
    transform: scale(1.05);
}

/* Item sizes */
.lol-pelmel__item--small {
    height: 240px;
}

.lol-pelmel__item--medium {
    height: 280px;
}

.lol-pelmel__item--tall {
    height: 380px;
}

/* Hover effect overlay */
.lol-pelmel__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 87, 45, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lol-pelmel__item:hover::after {
    opacity: 1;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media screen and (max-width: 1024px) {
    .lol-hero__content {
        padding: 0 120px;
    }

    .lol-hero__title {
        font-size: 4rem;
    }

    .lol-coach__grid,
    .lol-about__grid,
    .lol-appointment__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lol-coach__experience {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lol-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .lol-activities__grid {
        grid-template-columns: 1fr;
    }

    .lol-pelmel__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lol-pelmel__col--1,
    .lol-pelmel__col--2,
    .lol-pelmel__col--3,
    .lol-pelmel__col--4 {
        margin-top: 0;
    }

    .lol-cta-banner__content {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .lol-hero__content {
        padding: 0 60px;
    }

    .lol-hero__title {
        font-size: 2.5rem;
    }

    .lol-hero__subtitle {
        font-size: 0.875rem;
    }

    .lol-coach,
    .lol-about,
    .lol-testimonials,
    .lol-appointment,
    .lol-activities,
    .lol-pelmel {
        padding: 60px 0;
    }

    .lol-coach__content,
    .lol-about__content {
        padding: 0;
    }

    .lol-coach__title,
    .lol-appointment__title,
    .lol-activities__title {
        font-size: 2rem;
    }

    .lol-activities__grid {
        grid-template-columns: 1fr;
    }

    .lol-cta-banner__title {
        font-size: 1.5rem;
    }

    .lol-pelmel__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lol-pelmel__col {
        gap: 20px;
    }

    .lol-appointment__form {
        padding: 30px 20px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .lol-hero__content {
        padding: 0 30px;
    }

    .lol-hero__title {
        font-size: 2rem;
    }

    .lol-cta-banner {
        padding: 30px 0;
    }

    .lol-cta-banner__title {
        font-size: 1.25rem;
    }
}
