/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BACKGROUND ================= */
body {
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;

    background-image: url("galaxy.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0a0e27;
}

/* Overlay sombre */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

/* ================= ÉTOILES SCINTILLANTES ================= */
.stars-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite;
}

.star-tiny {
    width: 1px;
    height: 1px;
    box-shadow: 0 0 2px white, 0 0 4px rgba(255, 255, 255, 0.4);
}

.star-small {
    width: 2px;
    height: 2px;
    box-shadow: 0 0 4px white, 0 0 6px rgba(255, 255, 255, 0.5);
}

.star-medium {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 6px white, 0 0 8px rgba(255, 255, 255, 0.6);
}

.star-large {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 8px white, 0 0 10px rgba(255, 255, 255, 0.7);
}

@keyframes starTwinkle {
    0%, 100% { 
        opacity: 0.5;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.8);
    }
}

/* Étoiles filantes */
.shooting-star {
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        0 0 10px white, 
        0 0 20px rgba(255, 255, 255, 1),
        0 0 30px rgba(255, 255, 255, 0.8),
        -50px 0 80px rgba(255, 255, 255, 0.6),
        -100px 0 100px rgba(255, 255, 255, 0.4);
    animation: shoot 2s ease-out forwards;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(400px) translateY(400px);
        opacity: 0;
    }
}

/* ================= LAYOUT ================= */
.layout {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

/* ================= TEXTE EN HAUT CENTRÉ ================= */
.container-text {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    z-index: 100;
    overflow: visible;
}

/* Titre avec l'année en dessous */
.title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Texte OR */
.main-title,
.year,
.animated-text {
    color: #FFF8DC;
    background: linear-gradient(
        135deg,
        #FFFFFF 0%,
        #FFF8DC 15%,
        #FFE87C 30%,
        #FFF8DC 45%,
        #FFFFFF 60%,
        #FFE87C 75%,
        #FFF8DC 85%,
        #FFFFFF 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: shimmerBright 2.5s ease-in-out infinite, breathe 4s ease-in-out infinite;
    text-shadow:
        0 0 8px rgba(255, 248, 220, 0.4),
        0 0 15px rgba(255, 232, 124, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 6px rgba(255, 248, 220, 0.3));
}

@keyframes shimmerBright {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 300% center;
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(255, 248, 220, 0.3));
    }
    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 10px rgba(255, 248, 220, 0.4));
    }
}

.main-title {
    font-family: 'Parisienne', cursive;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    font-weight: 400;
    margin: 0;
}

.year {
    font-family: 'Luxurious Script', cursive;
    font-size: 7rem;
    font-weight: 400;
    margin: 0;
    padding-right: 10px;
    overflow: visible;
}

.animated-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    min-height: 2.8rem;
    letter-spacing: 0.05em;
    font-weight: 400;
    font-style: italic;
}

/* ================= PLANÈTES CENTRÉES ================= */
.solar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    margin-top: 280px;
}

/* Orbite d'origine */
.orbit {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    animation: orbitRotate 40s linear infinite;
    transform: scale(0.85);
}

@keyframes orbitRotate {
    from { transform: scale(0.85) rotate(0deg); }
    to { transform: scale(0.85) rotate(360deg); }
}

/* Base planète */
.planet {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform-origin: -180px center;
    cursor: pointer;

    box-shadow:
        inset -18px -18px 30px rgba(0,0,0,0.55),
        0 0 40px rgba(255,255,255,0.25);
}

.planet:hover {
    filter: brightness(1.1);
}

/* Labels des planètes - DÉSACTIVÉS */
.planet::after,
.sun::after {
    display: none; /* Masquer les labels */
}

/* ================= PLANÈTES RÉALISTES ================= */
.mercury {
    width: 72px;
    height: 72px;
    background: radial-gradient(circle at 35% 35%, #B8B8B8, #8C8C8C, #5C5C5C, #3A3A3A);
    transform: rotate(0deg) translateX(180px);
    --rotation: 0deg;
    box-shadow: 
        inset -8px -8px 20px rgba(0, 0, 0, 0.7),
        inset 4px 4px 12px rgba(255, 255, 255, 0.15),
        0 0 20px rgba(150, 150, 150, 0.3);
}

.venus {
    width: 96px;
    height: 96px;
    background: radial-gradient(circle at 35% 35%, #FFF5E1, #FFE4B5, #F5DEB3, #DEB887, #C9A563);
    transform: rotate(45deg) translateX(180px);
    --rotation: 45deg;
    box-shadow: 
        inset -10px -10px 25px rgba(0, 0, 0, 0.5),
        inset 5px 5px 15px rgba(255, 255, 255, 0.3),
        0 0 25px rgba(255, 228, 181, 0.5);
}

.earth {
    width: 108px;
    height: 108px;
    background: 
        radial-gradient(ellipse at 25% 40%, rgba(100, 200, 100, 0.8) 0%, transparent 30%),
        radial-gradient(ellipse at 70% 30%, rgba(120, 220, 120, 0.7) 0%, transparent 25%),
        radial-gradient(ellipse at 50% 70%, rgba(90, 180, 90, 0.6) 0%, transparent 20%),
        radial-gradient(circle at 35% 35%, #6BB6FF, #4A90E2, #2E6FA8, #1B4A7A, #0D2744);
    transform: rotate(90deg) translateX(180px);
    --rotation: 90deg;
    box-shadow: 
        inset -12px -12px 30px rgba(0, 0, 0, 0.7),
        inset 6px 6px 20px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(74, 144, 226, 0.6);
    position: relative;
}

.earth::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 60%);
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.mars {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 35% 35%, #E27B58, #CD5C3A, #B44622, #8B2500, #6B1D00);
    transform: rotate(135deg) translateX(180px);
    --rotation: 135deg;
    box-shadow: 
        inset -10px -10px 25px rgba(0, 0, 0, 0.7),
        inset 5px 5px 15px rgba(255, 150, 100, 0.2),
        0 0 25px rgba(226, 123, 88, 0.5);
}

.jupiter {
    width: 168px;
    height: 168px;
    background: 
        radial-gradient(ellipse at 45% 45%, rgba(255, 240, 220, 0.3) 0%, transparent 40%),
        repeating-linear-gradient(
            88deg,
            #E8C48A 0px,
            #D4A574 8px,
            #C88B3A 16px,
            #A0522D 24px,
            #C88B3A 32px,
            #D4A574 40px,
            #E8C48A 48px
        ),
        radial-gradient(circle at 35% 35%, #F5E6D3, #E8C48A, #C88B3A, #A0522D, #6B3410);
    transform: rotate(180deg) translateX(180px);
    --rotation: 180deg;
    box-shadow: 
        inset -15px -15px 35px rgba(0, 0, 0, 0.6),
        inset 8px 8px 25px rgba(255, 255, 255, 0.15),
        0 0 40px rgba(200, 139, 58, 0.5);
    position: relative;
}

.jupiter::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 60%;
    width: 25%;
    height: 35%;
    background: radial-gradient(ellipse, rgba(220, 100, 80, 0.8), rgba(180, 70, 60, 0.6));
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(220, 100, 80, 0.6);
    pointer-events: none;
}

.saturn {
    width: 156px;
    height: 156px;
    background: radial-gradient(circle at 35% 35%, #FFF0D1, #F5E1B5, #E8D4A0, #D4B884, #B8984C);
    transform: rotate(225deg) translateX(180px);
    --rotation: 225deg;
    box-shadow: 
        inset -12px -12px 30px rgba(0, 0, 0, 0.6),
        inset 6px 6px 20px rgba(255, 255, 255, 0.25),
        0 0 35px rgba(250, 213, 165, 0.5);
}

/* Anneaux Saturne réalistes */
.saturn::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 84px;
    border: 7px solid transparent;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
    background: 
        linear-gradient(to bottom,
            rgba(250, 230, 200, 0.9) 0%,
            rgba(240, 220, 190, 0.95) 20%,
            rgba(230, 210, 180, 0.8) 40%,
            rgba(200, 180, 150, 0.7) 60%,
            rgba(180, 160, 130, 0.6) 80%,
            rgba(160, 140, 110, 0.5) 100%
        );
    box-shadow: 
        0 0 30px rgba(250, 213, 165, 0.6),
        inset 0 0 15px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.uranus {
    width: 114px;
    height: 114px;
    background: radial-gradient(circle at 35% 35%, #C9F7FF, #A7E9FF, #7FD8F0, #4FC3E0, #2A9BB5);
    transform: rotate(270deg) translateX(180px);
    --rotation: 270deg;
    box-shadow: 
        inset -10px -10px 25px rgba(0, 0, 0, 0.6),
        inset 5px 5px 18px rgba(200, 240, 255, 0.3),
        0 0 30px rgba(79, 208, 231, 0.6);
}

.neptune {
    width: 114px;
    height: 114px;
    background: radial-gradient(circle at 35% 35%, #8BA8FF, #6B8CFF, #4B6FE8, #2E4FCC, #1A3399);
    transform: rotate(315deg) translateX(180px);
    --rotation: 315deg;
    box-shadow: 
        inset -10px -10px 25px rgba(0, 0, 0, 0.7),
        inset 5px 5px 18px rgba(150, 170, 255, 0.2),
        0 0 30px rgba(65, 105, 225, 0.6);
}

/* Message au clic sur planète */
.planet-message {
    position: fixed;
    transform: translate(-50%, -50%);
    font-family: 'Parisienne', cursive;
    font-size: 60px;
    letter-spacing: 0.05em;
    color: #f0e4b1;
    text-shadow: 
        0 0 10px rgba(240, 228, 177, 0.9),
        0 0 20px rgba(240, 228, 177, 0.6);
    white-space: nowrap;
    opacity: 0;
    animation: floatUp 2s ease-out forwards;
    pointer-events: none;
    z-index: 1000;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(0);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-150px);
    }
}

/* ================= SOLEIL ================= */
.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, #fff4b0, #ffb700, #ff7b00);

    box-shadow:
        0 0 60px rgba(255, 180, 0, 0.9),
        0 0 120px rgba(255, 140, 0, 0.7),
        0 0 200px rgba(255, 100, 0, 0.5);

    animation: sunPulse 4s ease-in-out infinite;
}

/* Pulsation douce */
@keyframes sunPulse {
    0%, 100% {
        box-shadow:
            0 0 60px rgba(255, 180, 0, 0.9),
            0 0 120px rgba(255, 140, 0, 0.7),
            0 0 200px rgba(255, 100, 0, 0.5);
    }
    50% {
        box-shadow:
            0 0 90px rgba(255, 200, 0, 1),
            0 0 160px rgba(255, 160, 0, 0.9),
            0 0 260px rgba(255, 120, 0, 0.7);
    }
}

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

/* Tablettes paysage et petits écrans (max 1024px) */
@media (max-width: 1024px) {
    .container-text {
        top: 2rem;
        gap: 0.5rem;
        padding: 1.2rem 2.5rem;
    }

    .title-wrapper {
        gap: 0.8rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .year {
        font-size: 2.5rem;
    }

    .animated-text {
        font-size: 1.7rem;
        min-height: 2.3rem;
    }

    .orbit {
        width: 320px;
        height: 320px;
        transform: scale(0.8);
    }

    @keyframes orbitRotate {
        from { transform: scale(0.8) rotate(0deg); }
        to { transform: scale(0.8) rotate(360deg); }
    }

    .sun {
        width: 140px;
        height: 140px;
    }

    .planet {
        transform-origin: -140px center;
    }

    .mercury {
        width: 50px;
        height: 50px;
        transform: rotate(0deg) translateX(140px);
    }

    .venus {
        width: 65px;
        height: 65px;
        transform: rotate(45deg) translateX(140px);
    }

    .earth {
        width: 75px;
        height: 75px;
        transform: rotate(90deg) translateX(140px);
    }

    .mars {
        width: 60px;
        height: 60px;
        transform: rotate(135deg) translateX(140px);
    }

    .jupiter {
        width: 110px;
        height: 110px;
        transform: rotate(180deg) translateX(140px);
    }

    .saturn {
        width: 105px;
        height: 105px;
        transform: rotate(225deg) translateX(140px);
    }

    .saturn::after {
        width: 160px;
        height: 55px;
        border: 3px solid rgba(255,255,255,0.7);
    }

    .uranus {
        width: 75px;
        height: 75px;
        transform: rotate(270deg) translateX(140px);
    }

    .neptune {
        width: 75px;
        height: 75px;
        transform: rotate(315deg) translateX(140px);
    }
}

/* Tablettes portrait et smartphones paysage (max 768px) */
@media (max-width: 768px) {
    .layout {
        padding: 0;
    }

    .container-text {
        top: 1.5rem;
        gap: 0.4rem;
        padding: 1rem 2rem;
    }

    .title-wrapper {
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-title {
        font-size: 2rem;
    }

    .year {
        font-size: 2rem;
    }

    .animated-text {
        font-size: 1.5rem;
        min-height: 2rem;
    }

    .orbit {
        width: 260px;
        height: 260px;
        transform: scale(0.75);
    }

    @keyframes orbitRotate {
        from { transform: scale(0.75) rotate(0deg); }
        to { transform: scale(0.75) rotate(360deg); }
    }

    .sun {
        width: 110px;
        height: 110px;
    }

    .planet {
        transform-origin: -110px center;
    }

    .mercury {
        width: 40px;
        height: 40px;
        transform: rotate(0deg) translateX(110px);
    }

    .venus {
        width: 52px;
        height: 52px;
        transform: rotate(45deg) translateX(110px);
    }

    .earth {
        width: 60px;
        height: 60px;
        transform: rotate(90deg) translateX(110px);
    }

    .mars {
        width: 48px;
        height: 48px;
        transform: rotate(135deg) translateX(110px);
    }

    .jupiter {
        width: 90px;
        height: 90px;
        transform: rotate(180deg) translateX(110px);
    }

    .saturn {
        width: 85px;
        height: 85px;
        transform: rotate(225deg) translateX(110px);
    }

    .saturn::after {
        width: 130px;
        height: 45px;
        border: 2.5px solid rgba(255,255,255,0.7);
    }

    .uranus {
        width: 62px;
        height: 62px;
        transform: rotate(270deg) translateX(110px);
    }

    .neptune {
        width: 62px;
        height: 62px;
        transform: rotate(315deg) translateX(110px);
    }
    
    .planet-message {
        font-size: 35px;
        bottom: -45px;
    }
}

/* Smartphones portrait (max 480px) */
@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .container-text {
        top: 1rem;
        gap: 0.3rem;
        padding: 0.8rem 1.5rem;
    }

    .title-wrapper {
        gap: 0.5rem;
    }

    .main-title {
        font-size: 1.8rem;
        letter-spacing: 0.03em;
    }

    .year {
        font-size: 1.8rem;
    }

    .animated-text {
        font-size: 1.3rem;
        min-height: 1.7rem;
        letter-spacing: 0.03em;
    }

    .orbit {
        width: 210px;
        height: 210px;
        animation-duration: 50s;
        transform: scale(0.7);
    }

    @keyframes orbitRotate {
        from { transform: scale(0.7) rotate(0deg); }
        to { transform: scale(0.7) rotate(360deg); }
    }

    .sun {
        width: 85px;
        height: 85px;
        box-shadow:
            0 0 40px rgba(255, 180, 0, 0.9),
            0 0 80px rgba(255, 140, 0, 0.7),
            0 0 120px rgba(255, 100, 0, 0.5);
    }

    .planet {
        transform-origin: -85px center;
    }

    .mercury {
        width: 32px;
        height: 32px;
        transform: rotate(0deg) translateX(85px);
    }

    .venus {
        width: 42px;
        height: 42px;
        transform: rotate(45deg) translateX(85px);
    }

    .earth {
        width: 48px;
        height: 48px;
        transform: rotate(90deg) translateX(85px);
    }

    .mars {
        width: 38px;
        height: 38px;
        transform: rotate(135deg) translateX(85px);
    }

    .jupiter {
        width: 70px;
        height: 70px;
        transform: rotate(180deg) translateX(85px);
    }

    .saturn {
        width: 65px;
        height: 65px;
        transform: rotate(225deg) translateX(85px);
    }

    .saturn::after {
        width: 100px;
        height: 35px;
        border: 2px solid rgba(255,255,255,0.7);
    }

    .uranus {
        width: 50px;
        height: 50px;
        transform: rotate(270deg) translateX(85px);
    }

    .neptune {
        width: 50px;
        height: 50px;
        transform: rotate(315deg) translateX(85px);
    }
    
    .planet-message {
        font-size: 35px;
        bottom: -40px;
    }
}

/* Très petits smartphones (max 360px) */
@media (max-width: 360px) {
    .container-text {
        top: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .title-wrapper {
        gap: 0.4rem;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .year {
        font-size: 1.5rem;
    }

    .animated-text {
        font-size: 1.1rem;
        min-height: 1.5rem;
    }

    .orbit {
        width: 180px;
        height: 180px;
        transform: scale(0.65);
    }

    @keyframes orbitRotate {
        from { transform: scale(0.65) rotate(0deg); }
        to { transform: scale(0.65) rotate(360deg); }
    }

    .sun {
        width: 70px;
        height: 70px;
    }

    .planet {
        transform-origin: -75px center;
    }

    .mercury {
        width: 28px;
        height: 28px;
        transform: rotate(0deg) translateX(75px);
    }

    .venus {
        width: 36px;
        height: 36px;
        transform: rotate(45deg) translateX(75px);
    }

    .earth {
        width: 40px;
        height: 40px;
        transform: rotate(90deg) translateX(75px);
    }

    .mars {
        width: 32px;
        height: 32px;
        transform: rotate(135deg) translateX(75px);
    }

    .jupiter {
        width: 58px;
        height: 58px;
        transform: rotate(180deg) translateX(75px);
    }

    .saturn {
        width: 54px;
        height: 54px;
        transform: rotate(225deg) translateX(75px);
    }

    .saturn::after {
        width: 85px;
        height: 30px;
        border: 1.5px solid rgba(255,255,255,0.7);
    }

    .uranus {
        width: 42px;
        height: 42px;
        transform: rotate(270deg) translateX(75px);
    }

    .neptune {
        width: 42px;
        height: 42px;
        transform: rotate(315deg) translateX(75px);
    }
    
    .planet-message {
        font-size: 35px;
        bottom: -38px;
    }
}

/* Mode paysage pour smartphones */
@media (max-height: 500px) and (orientation: landscape) {
    .layout {
        flex-direction: row;
        padding: 1rem;
    }

    .container-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 40%;
        padding-left: 2vw;
        gap: 0.3rem;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .year {
        font-size: 1.5rem;
    }

    .animated-text {
        font-size: 1.2rem;
        min-height: 1.4rem;
    }

    .solar-wrapper {
        width: 60%;
        max-width: 300px;
    }

    .orbit {
        width: 200px;
        height: 200px;
        transform: scale(0.8);
    }

    @keyframes orbitRotate {
        from { transform: scale(0.8) rotate(0deg); }
        to { transform: scale(0.8) rotate(360deg); }
    }

    .sun {
        width: 70px;
        height: 70px;
    }
    
    .planet-message {
        font-size: 35px;
    }
}

/* ================= LOGOS EN BAS ================= */
.logos-container {
    position: fixed;
    bottom: 2rem;
    left: 0;
    width: 100%;
    z-index: 100;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-link {
    pointer-events: auto;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-link:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.6));
}

.logo {
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 1s forwards;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    object-fit: contain;
    cursor: pointer;
    display: block;
}

.logo-left {
    animation-delay: 1.2s;
    width: 170px;
    height: 170px;
}

.logo-right {
    animation-delay: 1.4s;
    width: 220px;
    height: 220px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive pour les logos */
@media (max-width: 768px) {
    .logos-container {
        bottom: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .logo-left {
        width: 100px;
        height: 100px;
    }
    
    .logo-right {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .logos-container {
        bottom: 1rem;
        padding: 0 1rem;
    }
    
    .logo-left {
        width: 80px;
        height: 80px;
    }
    
    .logo-right {
        width: 80px;
        height: 80px;
    }
}
