/ la-briqueterie / la-briqueterie / src / assets / css / responsive.css

@media (min-width: 769px) {
    header .logo {
        max-width: 720px;
    }

    body:not([data-site]) .card-content {
        padding-left: 0.5rem !important;
    }

    body:not([data-site]) .card-content h3 {
        margin-left: -1.5rem !important;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
        padding: 0;
        margin: 0;
    }

    header {
        padding: 1rem 0.5rem;
    }

    header .main-slogan {
        font-size: 1.5rem !important; /* Réduit de 2.5rem à 1.5rem sur mobile */
        letter-spacing: 1px !important;
    }

    body[data-site] header h1 {
        font-size: 2.5rem !important;
    }

    body[data-site="shared"] header h1 {
        font-size: 1.4rem !important;
        white-space: nowrap;
    }

    .header, .footer {
        padding: 10px;
        text-align: center;
    }

    .welcome-message {
        font-size: 1.5em;
        margin: 20px 0;
    }

    .location-selection {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .location-selection .location {
        width: 90%;
        margin: 10px 0;
        padding: 15px;
        background-color: var(--brand-orange);
        color: white;
        text-align: center;
        border-radius: 5px;
        cursor: pointer;
    }

    .video-container {
        width: 100%;
        height: auto;
    }

    .activity-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .activity-card {
        background-color: #000;
        color: var(--brand-orange);
        padding: 15px;
        border-radius: 5px;
        text-align: center;
        cursor: pointer;
    }

    .fixed-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-around;
        background-color: #000;
        padding: 10px 0;
    }

    .fixed-buttons button {
        background-color: var(--brand-orange);
        color: white;
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
    }
}