/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    background: linear-gradient(286.52deg, #003038 -3.44%, #015E6C 92.96%);
    color: white;
    overflow-x: hidden;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contain-content {
    padding-top: 3.3%;
    padding-right: 20%;
    padding-left: 20%;
    display: flex;
    align-self: center;
    flex-direction: column;
    width: auto;
}

/* Logo */
.logo {
    z-index: 10;
}

.logo-img {
    height: 41px;
    width: auto;
}

/* Main Content */
.main-content {
    margin-top: 45px;
    flex: 1;
    display: flex;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
    z-index: 5;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Headlines */
.headlines {
    width: 65%;
}

.main-headline {
    font-size: 70px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 35px;
    letter-spacing: -0.02em;
}

.main-headline .line {
    display: block;
}

.sub-headline {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.95;
}

.sub-headline-bold {
    font-weight: 700;
}

/* Central Graphic */
.central-graphic {
    position: relative;
    width: 100%;
    width: 35%;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.star-container {
    position: relative;
    width: 100%;
    width: 535px;
    margin-bottom: 20px;
}

.star-shape {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.photo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 176px;
    height: 176px;
    z-index: 1;
    overflow: hidden;
}    

.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.buttons {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 10px 10px 20px;
    gap: 10px;
    position: absolute;
    width: 196px;
    height: 45px;
    left: calc(50% - 196px/2 + 50px);
    bottom: 85px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(150px);
    border-radius: 200px;
    z-index: 10;
}

.pill-button {
    pointer-events: none;
    cursor: none;
    background: none;
    border: none;
    color: white;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    flex: 1;
}

.pill-button:hover {
    opacity: 0.8;
}

.pill-button.location {
    background: #00E8DA;
    color: #003038;
    padding: 8px 12px;
    border-radius: 200px;
    flex: 0 0 auto;
    font-weight: 500;
}

.location-icon {
    width: 12px;
    height: 16px;
    flex-shrink: 0;
}

.location-icon path {
    fill: #003038;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 40px;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-items {
    display: flex;
    align-items: center;
}

.contact-text {
    font-size: 16px;
    margin-right: 8px;
    font-weight: 900;
}

.email {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
    margin-right: 12px;
}

.email:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-left: 8px;
}

.social-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.legal-text {
    font-size: 14px;
    opacity: 0.8;
}

.legal-link {
    color: #a89d9d;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Conditions Générales Page */
.conditions-content {
    padding-top: 80px;
    max-width: 900px;
    margin: 0 auto;
}

.conditions-wrapper {
    width: 100%;
}

/* Maintenance Message */
.maintenance-wrapper {
    width: 100%;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.maintenance-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    text-align: center;
}

.maintenance-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.maintenance-text p {
    margin-bottom: 16px;
}

.maintenance-text strong {
    font-weight: 700;
    color: #00E8DA;
}

.conditions-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.05em;
}

.conditions-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.conditions-text h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: white;
}

.conditions-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: white;
}

.conditions-text p {
    margin-bottom: 16px;
}

.conditions-text ul {
    margin-left: 30px;
    margin-bottom: 16px;
}

.conditions-text li {
    margin-bottom: 8px;
}

.conditions-text a {
    color: #00E8DA;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.conditions-text a:hover {
    opacity: 0.8;
}

.conditions-text strong {
    font-weight: 700;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 925px) {
    .container {
        padding: 30px 20px;
        min-height: 100vh;
    }

    .logo {
        position: static;
        top: auto;
        left: auto;
        text-align: center;
        margin-bottom: 30px;
    }

    .main-content {
        padding-top: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .headlines {
        text-align: center;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .main-headline {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .sub-headline {
        font-size: 16px;
    }

    .central-graphic {
        align-items: center;
        max-width: 100%;
        margin: 30px 0;
    }

    .star-container {
        max-width: 320px;
    }

    .photo-wrapper {
        width: 106px;
        height: 106px;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 48%;
    }

    .buttons {
        position: relative;
        left: 100px;
        bottom: 50px;
        max-width: 100%;
        margin-top: -30px;
        justify-content: center;
    }

    .pill-button {
        font-size: 14px;
    }

    .pill-button.location {
        padding: 6px 10px;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .contact-text {
        margin-right: 0;
    }

    .social-icons {
        margin-left: 0;
    }

    .legal-text {
        font-size: 12px;
    }

    .conditions-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .conditions-text {
        font-size: 14px;
    }

    .conditions-text h2 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .conditions-text h3 {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .maintenance-wrapper {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .maintenance-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .maintenance-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 36px;
    }

    .sub-headline {
        font-size: 14px;
    }

    .star-container {
        max-width: 280px;
    }

    .photo-wrapper {
        width: 93px;
        height: 94px;
        top: 47%;
    }

    .pill-button {
        font-size: 12px;
    }

    .pill-button.location {
        padding: 5px 8px;
    }

    .conditions-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .conditions-text {
        font-size: 13px;
    }

    .conditions-text h2 {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .conditions-text h3 {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .maintenance-wrapper {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .maintenance-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .maintenance-text {
        font-size: 14px;
    }
}