/* Font - Gothams */

@font-face {
    font-family: 'Gotham';
    src:
      url('https://tickets.cafonline.com/cf_error_pages/assets/font/Gotham-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src:
      url('https://tickets.cafonline.com/cf_error_pages/assets/font/Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Gotham', sans-serif;
    background-color: #800000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('https://tickets.cafonline.com/cf_error_pages/assets/img/BG.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto 80%;
}

header {
    height: 80px;
    display: flex;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 5%);
    background-color: maroon;
}

header img {
    max-height: 80%;
    margin-left: 2rem;
    display: flex;
    align-items: center;
}

.separator {
    height: 2px;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
}

main {
    text-align: center;
    margin: auto;
    max-width: 800px;
    padding: 20px;
}

h1 {
    color: #00a651;
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    body {
        background-position: right 80px;
        background-size: contain;
    }

    h1 {
        font-size: 1.8em; 
    }

    p {
        font-size: 1em; 
    }
}

.page-ouverture main {
    max-width: 900px;
    text-align: left;
}

.page-ouverture h2 {
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2.2em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-ouverture p, .page-ouverture li {
    font-size: 1.1em;
    text-align: left;
}

.page-ouverture .section-divider {
    margin: 50px 0;
    border: none;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.2);
}

.page-ouverture ol {
    padding-left: 25px;
}

.page-ouverture li {
    padding-left: 10px;
    margin-bottom: 15px;
}

.page-ouverture .info-title {
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-ouverture .footer-section {
    margin-top: 40px;
    display: flex;
    flex-direction: row; 
    align-items: center;
    gap: 20px;
}

.page-ouverture .app-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.page-ouverture .app-badges img {
    height: 40px;
}

.page-ouverture .yalla-logo {
    height: 50px;
}

@media (max-width: 768px) {
    .page-ouverture main,
    .page-ouverture p,
    .page-ouverture li,
    .page-ouverture h2 {
        text-align: left;
    }

    .page-ouverture h2 {
        font-size: 1.6em;
    }

    .page-ouverture .yalla-logo {
         height: 40px;
    }

    .page-ouverture .app-badges img {
        height: 35px;
    }
}