* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    min-height: 100vh;
    background-color: #F3F4F6;
}

/* Menu Styles */
.menu {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #111827;
    font-weight: 600;
    font-size: 1.25rem;
}

.logo svg {
    color: #3B82F6;
}

.menu-items {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.menu-items li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #4B5563;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.menu-items li.active a {
    background-color: #EFF6FF;
    color: #3B82F6;
}

.menu-items li:not(.active) a:hover {
    background-color: #F3F4F6;
}

.menu-items svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Event Hero Section */
.event-hero {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.event-hero img {
    width: 100%;
    height: auto; /* au lieu de 100% */
    display: block; /* pour éviter l'espace sous l'image */
    position: relative; /* au lieu de absolute si nécessaire */
    object-fit: contain; /* au lieu de cover */
}

.back-button {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: white;
    color: #111827;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background-color: #F3F4F6;
}

.back-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Event Details Content */
.event-details-content {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.event-header {
    margin-bottom: 2rem;
}

.event-header h1 {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4B5563;
    font-size: 1rem;
}

.meta-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #3B82F6;
}

.event-description {
    margin-bottom: 3rem;
}

.event-description h2 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.event-description p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Tickets Section */
.tickets-section h2 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.tickets-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.ticket-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.ticket-card {
    background-color: #F9FAFB;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
    transition: all 0.2s;
}

.ticket-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.ticket-header h3 {
    font-size: 1.25rem;
    color: #111827;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3B82F6;
}

.ticket-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.ticket-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4B5563;
    margin-bottom: 0.75rem;
}

.ticket-features li svg {
    width: 1rem;
    height: 1rem;
    color: #3B82F6;
}

.ticket-quantity {
    border-top: 1px solid #E5E7EB;
    padding-top: 1rem;
}

.ticket-quantity label {
    display: block;
    color: #4B5563;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EFF6FF;
    border: 1px solid #93C5FD;
    color: #3B82F6;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background-color: #DBEAFE;
}

.quantity-controls input {
    width: 4rem;
    height: 2rem;
    text-align: center;
    border: 1px solid #E5E7EB;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.quantity-controls input:focus {
    outline: none;
    border-color: #93C5FD;
    ring: 2px solid #EFF6FF;
}

/* Booking Summary */
.booking-summary {
    position: sticky;
    top: 6rem;
}

.summary-content {
    background-color: #F9FAFB;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
}

.summary-content h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 1rem;
}

.summary-items {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #4B5563;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    color: #111827;
    font-weight: 600;
    padding-top: 0.5rem;
    border-top: 1px solid #E5E7EB;
    margin-top: 0.5rem;
}

.booking-button {
    width: 100%;
    padding: 0.75rem;
    background-color: #3B82F6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.booking-button:hover {
    background-color: #2563EB;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tickets-container {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .menu-container {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-items {
        width: 100%;
        justify-content: center;
    }

    .event-hero {
    }

    .event-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .event-header h1 {
        font-size: 1.875rem;
    }
}