/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #F9F7F0;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

/* Transitions & Animations */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.featured-card {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

/* Form Styles (inscription.php) */
.pill-toggle input:checked + label {
    background-color: #F5C100;
    color: #1A1A1A;
    border-color: #F5C100;
    font-weight: 700;
}

.level-pill input:checked + label {
    background-color: #F5C100;
    color: #1A1A1A;
    border-color: #F5C100;
    font-weight: 800;
}

.level-pill label:hover::after {
    content: attr(data-price);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #1A1A1A;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    z-index: 10;
}

input:focus, select:focus, textarea:focus {
    border-color: #F5C100 !important;
    ring-color: #F5C100 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(245, 193, 0, 0.2) !important;
}

.required-star::after {
    content: " *";
    color: #ef4444;
}

.section-badge {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F5C100;
    color: #1A1A1A;
    border-radius: 50%;
    font-weight: 800;
    font-size: 14px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1A1A1A;
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    border-top: 2px solid #F5C100;
    border-radius: 0 0 8px 8px;
    padding: 8px 0;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-content a {
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(245, 193, 0, 0.1);
    color: #F5C100;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-trigger {
    cursor: pointer;
    display: flex;
    items-center: center;
    gap: 4px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.25rem !important; line-height: 1.2 !important; }
    h2 { font-size: 1.75rem !important; }
    .btn-mobile-sm { padding: 0.6rem 1.2rem !important; font-size: 0.75rem !important; }
}

/* Drawer Animation */
#mobile-menu-drawer {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu-drawer.translate-x-full {
    transform: translateX(100%);
}

#mobile-menu-drawer.translate-x-0 {
    transform: translateX(0);
}

/* Mobile Nav Overlay */
#mobile-menu-overlay {
    transition: opacity 0.3s ease;
}


