/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo span img {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
    width: 130px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav a:hover {
    background-color: rgba(236, 72, 153, 0.2);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    padding: 0 24px;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content > p:first-of-type {
    font-size: 24px;
    color: #64748b;
    margin-bottom: 32px;
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.4);
}

/* Concept Section */
.concept {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-top: 10vh;
    position: relative;
    z-index: 1;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.concept-item {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.concept-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.concept-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.concept-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.concept-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Univers Section */
.univers {
    padding: 80px 0;
    background-color: #ffffff;
}

.univers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.univers-item {
    text-align: center;
    padding: 24px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.univers-item:hover {
    border-color: #ec4899;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.15);
}

.univers-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.univers-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

/* Magasins Section */
.magasins {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    text-align: center;
    margin-bottom: 64px;
}

.magasins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.magasin-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.magasin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ec4899 0%, #1f2937 100%);
}

.magasin-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.card-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

.magasin-tag {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.card-content {
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .icon {
    font-size: 20px;
    width: 24px;
    flex-shrink: 0;
    color: #ec4899;
}

.address-content {
    flex: 1;
}

.address-main {
    font-weight: 600;
    color: #1e293b;
    font-size: 16px;
    margin-bottom: 4px;
}

.address-city {
    color: #64748b;
    font-size: 14px;
}

.hours-content {
    flex: 1;
}

.hours-line {
    color: #475569;
    font-size: 14px;
    margin-bottom: 2px;
}

.hours-line:last-child {
    margin-bottom: 0;
}

.special-hours {
    color: #ec4899;
    font-weight: 500;
}

/* Map Section */
.map-section {
    margin-top: 24px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.map-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.map-toggle:hover {
    border-color: #ec4899;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    transform: translateY(-1px);
}

.map-toggle .map-icon {
    color: #ec4899;
    font-size: 16px;
}

.map-toggle .arrow {
    transition: transform 0.3s ease;
    color: #64748b;
    font-size: 12px;
}

.map-toggle.active .arrow {
    transform: rotate(180deg);
}

.map-container {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0;
    border-radius: 12px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.map-container.active {
    max-height: 220px;
    margin-top: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 12px;
    width: 100%;
    height: 200px;
    display: block;
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
    color: #f8fafc;
}

.footer-section h3 {
    font-size: 24px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 24px;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content > p:first-of-type {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .magasins {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .magasins-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .magasin-card {
        padding: 24px;
    }

    .card-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .footer {
        padding: 48px 0 24px;
    }

    .footer-content {
        gap: 32px;
    }

    .univers-item h4 {
        font-size: 14px;
    }
    
    .concept {
        padding: 60px 0;
    }
    
    .concept-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .concept-item {
        padding: 24px 16px;
    }
    
    .concept-icon {
        font-size: 36px;
    }
    
    .univers {
        padding: 60px 0;
    }
    
    .univers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .univers-item {
        padding: 20px 12px;
    }
    
    .univers-icon {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }

    .magasin-card {
        padding: 20px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.magasin-card {
    animation: fadeInUp 0.6s ease forwards;
}

.magasin-card:nth-child(1) { animation-delay: 0.1s; }
.magasin-card:nth-child(2) { animation-delay: 0.2s; }
.magasin-card:nth-child(3) { animation-delay: 0.3s; }
.magasin-card:nth-child(4) { animation-delay: 0.4s; }
.magasin-card:nth-child(5) { animation-delay: 0.5s; }
.magasin-card:nth-child(6) { animation-delay: 0.6s; }
.magasin-card:nth-child(7) { animation-delay: 0.7s; }
.magasin-card:nth-child(8) { animation-delay: 0.8s; }
.magasin-card:nth-child(9) { animation-delay: 0.9s; }
.magasin-card:nth-child(10) { animation-delay: 1s; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Modal de contact */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.modal-header .store-tag {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.modal-info {
    margin-bottom: 32px;
}

.modal-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.modal-info-item:last-child {
    border-bottom: none;
}

.modal-info-item .icon {
    font-size: 20px;
    width: 24px;
    flex-shrink: 0;
    color: #ec4899;
}

.modal-info-item .info-content {
    flex: 1;
}

.modal-info-item .info-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.modal-info-item .info-value {
    font-size: 16px;
    color: #1e293b;
    font-weight: 500;
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.modal-btn {
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    border: none;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.modal-btn-secondary {
    background: white;
    color: #1e293b;
    border: 2px solid #e2e8f0;
}

.modal-btn-secondary:hover {
    border-color: #ec4899;
    color: #ec4899;
    transform: translateY(-1px);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    height: fit-content;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.1);
    border-color: #ec4899;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 24px;
    width: 32px;
    flex-shrink: 0;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.contact-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ec4899 0%, #1f2937 100%);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    text-align: center;
}

.contact-form .form-subtitle {
    color: #64748b;
    text-align: center;
    margin-bottom: 32px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: #f8fafc;
    color: #1e293b;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    background: white;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    display: block;
    transition: opacity 0.3s ease;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loader {
    opacity: 1;
}

.loader-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notification */
.notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    transform: translateX(120%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10001;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #10b981;
}

.notification.error {
    border-left: 4px solid #ef4444;
}

.notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-message {
    color: #1e293b;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .modal {
        padding: 32px 24px;
        margin: 16px;
    }
    
    .modal-actions {
        grid-template-columns: 1fr;
    }
}

/* Contact – responsive */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;   /* empile les colonnes */
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .contact { padding: 60px 0; }

  .contact-wrapper {
    grid-template-columns: 1fr;   /* sécurité si d'autres styles écrasent */
    gap: 24px;
  }

  .contact-info,
  .contact-form {
    padding: 24px;                /* moins de padding sur mobile */
    border-radius: 16px;
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 22px;
  }

  .contact-form .form-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .form-group { margin-bottom: 16px; }

  .form-group label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px;              /* évite le zoom iOS */
  }

  .submit-btn {
    padding: 16px 20px;
    font-size: 16px;
  }

  /* petite marge en haut quand le header est fixe */
  #contact .container { scroll-margin-top: 84px; }
}

@media (max-width: 480px) {
  .contact-info,
  .contact-form { padding: 20px; }
  .contact-form h3 { font-size: 20px; }
  .submit-btn { padding: 14px 18px; }
}