/* Reset simple */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/* Basics */

* {
    font-family: 'Inter', sans-serif;
}

.bold-text {
    font-weight: 600;
}

/* Tarifs */

.header-background {
    width: 100%;
    height: 30vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/hero-background.png') no-repeat center center fixed;
    background-size: cover;
}

.tarifs-section {
    background-color: white;
    min-height: 70vh;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tarifs-container {
    max-width: 800px;
    width: 100%;
}

.tarifs-card {
    background: white;
    border: 3px solid #d1d1d1;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo-section {
    margin-bottom: 40px;
}

.tarifs-title {
    font-size: 2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.tarifs-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
}

.pricing-list {
    margin-bottom: 40px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 2px solid #d1d1d1;
    margin-bottom: 15px;
}

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

.service-name {
    font-size: 1.1rem;
    color: #333;
    text-align: left;
    flex: 1;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-align: right;
}

.cleaning-alert {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #f39c12;
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
    position: relative;
    overflow: hidden;
}

.cleaning-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #f39c12;
}

.alert-icon {
    font-size: 2rem;
    flex-shrink: 0;
    animation: pulse-warning 2s infinite;
}

.alert-content {
    flex: 1;
}

.alert-content h4 {
    color: #d68910;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alert-content p {
    color: #8b4513;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

@keyframes pulse-warning {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.closing-message h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #333;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .tarifs-card {
        padding: 30px 10px;
        margin: 0 10px;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }

    .tarifs-section {
        padding: 40px 10px !important;
    }
    
    .tarifs-title {
        font-size: 1.6rem;
    }
    
    .tarifs-subtitle {
        font-size: 1.3rem;
    }
    
    .service-name,
    .price {
        font-size: 1rem;
    }
    
    .closing-message h3 {
        font-size: 1.5rem;
    }
    
    .cleaning-alert {
        padding: 15px;
        gap: 10px;
        margin: 20px 0;
    }
    
    .alert-icon {
        font-size: 1.5rem;
    }
    
    .alert-content h4 {
        font-size: 1rem;
    }
    
    .alert-content p {
        font-size: 0.9rem;
    }
}

/* Contact Page Styles */
.contact-section {
    background-color: white;
    padding: 60px 20px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-header {
    text-align: center;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.contact-subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: #333;
    line-height: 1.6;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #f9f9f9;
    border: 1px solid #d1d1d1;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #b0b0b0;
}

.contact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #d1d1d1;
    color: #333333;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 16px;
    }

    .contact-container {
        gap: 32px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-method {
        padding: 20px;
    }

    .contact-icon {
        width: 58px;
        height: 58px;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.8rem;
    }

    .contact-method {
        align-items: flex-start;
    }

    .contact-icon {
        width: 52px;
        height: 52px;
        aspect-ratio: 1 / 1;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Album page styles */
.album-section {
    background: white;
    min-height: 100vh;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
}

.album-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 2rem 0;
}

.album-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.album-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for album page */
@media (max-width: 768px) {
    .album-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 1rem 0;
    }
    
    .album-image {
        height: 250px;
        border-radius: 15px;
    }
    
    .album-container {
         padding: 0 1rem;
     }
 }

/* ===== ADAPTATIONS MOBILE ===== */

/* Header mobile avec menu hamburger */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    width: 280px;
    height: 100%;
    background: white;
    padding: 60px 30px 30px;
    position: relative;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 40px;
    height: 40px;
}

.close-line {
    display: block;
    width: 20px;
    height: 2px;
    background: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.close-line:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #E3C36F;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
    /* Header mobile - masquer complètement le menu desktop */
    .header {
        position: relative;
        justify-content: center;
        padding: 2rem;
        gap: 0;
    }
    
    .hamburger-menu {
        display: block;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .header-logo {
        margin: 0;
        width: 70% !important;
        object-fit: contain;
    }
    
    .header-list {
        display: none !important;
    }
    
    /* Hero mobile - titre plus petit et mieux positionné */
    .hero {
        padding-top: 120px;
        gap: 15px !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        margin-top: 100px;
    }

    .hero-list {
        gap: 15px !important;
    }
    
    .hero-list-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 17px;
    }
    
    .hero-list-item img {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 8px;
    }
    
    .hero-list-item div {
        font-size: 0.9rem !important;
        line-height: 1.3;
    }
    
    .hero-button {
        font-size: 1rem;
        padding: 12px 24px;
        margin-top: 30px;
    }
    
    /* Description mobile - textes et images 90% largeur */
    .description {
        padding: 40px 20px !important;
    }
    
    .description h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .description-section {
        margin-bottom: 40px;
        width: 100% !important;
    }

    .maps-link {
        overflow: visible !important;
    }

    .description-section p {
        width: 90% !important;
        margin: 0 auto 20px auto;
        font-size: 1rem;
        line-height: 1.6;
        text-align: justify;
    }

    .description-section a {
        width: 100% !important;
    }
    
    .description-section img {
        width: 90% !important;
        height: auto !important;
        margin: 0 auto;
        display: block;
        border-radius: 10px;
    }

    .description-section:last-of-type {
        flex-direction: column-reverse;
    }
    
    .map-container {
        width: 90% !important;
        margin: 20px auto;
    }
    
    /* Footer mobile - réduire l'espace entre les listes */
    .footer {
        padding: 30px 20px;
    }
    
    .footer-lists {
        flex-direction: column;
        gap: 20px !important;
        align-items: center;
    }
    
    .footer-list {
        text-align: center;
        width: 100%;
    }
    
    /* Album mobile */
    .album-section {
        padding: 40px 15px;
    }
    
    .album-gallery {
        gap: 15px;
        grid-template-columns: 1fr;
    }
    
    .album-gallery img {
        height: 250px;
    }
    
    /* Header background mobile */
    .header-background {
        height: 100px;
    }
    
    .hero-list-item {
        flex: 0 1 calc(50% - 10px);
        min-width: 150px;
    }
    
    /* Description mobile - alternance texte-image */
    .description-section {
        flex-direction: column;
    }
    
    .description-section:first-of-type {
        order: 1;
    }
    
    .description-section:first-of-type p {
        order: 1;
    }
    
    .description-section:first-of-type .maps-link {
        order: 2;
        margin-top: 20px;
    }
    
    .description-section:last-of-type {
        order: 2;
        margin-top: 40px;
    }
    
    .description-section:last-of-type p {
        order: 2;
        margin-top: 20px;
    }
    
    .description-section:last-of-type img {
        order: 1;
    }
    
    /* Footer mobile - listes en colonne */
    .footer-lists {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-list {
        width: 100%;
    }
    
    /* Adaptations générales mobile */
    .tarifs-card {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }
.tarifs-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .pricing-list {
        gap: 15px;
    }
    
    .pricing-item {
        padding: 15px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-method {
         padding: 20px;
     }
     
     /* Hero mobile - adaptations supplémentaires */
     .hero {
         padding: 2rem 1rem;
         gap: 2rem;
     }
     
     .hero-title {
         font-size: 2.2rem;
         padding-top: 2rem;
     }
     
     .hero-button {
         padding: 0.8rem 2rem;
         font-size: 1rem;
     }
     
     /* Description mobile - adaptations supplémentaires */
     .description {
         padding: 2rem 1rem;
     }
     
     .description h2 {
         font-size: 2rem;
         margin-bottom: 2rem;
         text-align: center;
     }
     
     .description-section {
         margin-bottom: 2rem;
     }
     
     .description-section p {
         font-size: 1rem;
         line-height: 1.6;
         text-align: justify;
     }
     
     .maps-container {
         max-width: 100%;
         height: 200px;
     }
     
     /* Album mobile - adaptations supplémentaires */
     .album-section {
         padding: 1rem 0;
     }
     
     .album-gallery {
         padding: 1rem 0;
     }
     
     /* Header background mobile */
     .header-background {
         height: 150px;
     }
 }

