/* Importation des polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #8B0000; /* Un rouge foncé, proche de celui des ongles */
    --secondary-color: #A0522D; /* Un marron un peu plus chaud */
    --text-color: #333;
    --light-bg: #F5F5F5;
    --dark-bg: #222;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1em;
}

h1 {
    font-size: 3em;
    color: var(--dark-bg); /* PopNails en noir selon le flyer */
}

h2 {
    font-size: 1.8em;
    font-weight: 400;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.hero {
    background-color: var(--dark-bg); /* Fond noir du haut du flyer */
    color: white;
    padding: 40px 0;
    text-align: center;
}

.hero h1 {
    color: white; /* PopNails en blanc pour contraster sur fond noir */
    margin-top: 0;
}

.hero h2 {
    color: white;
    margin-bottom: 20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto 0;
    border-radius: 8px; /* Léger arrondi pour un look moderne ou comme sur l'image */
}

/* Contact Info Section */
.contact-info {
    background-color: white;
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.contact-info p {
    margin: 5px 0;
    font-size: 1.1em;
}

.contact-info strong {
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.services h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2em;
    margin-bottom: 40px;
}

.service-category {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-category h4 {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-top: 0;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.service-category p {
    font-style: italic;
    color: #666;
    margin-top: -10px;
    margin-bottom: 15px;
}

.service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-category li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 1.1em;
}

.service-category li:last-child {
    border-bottom: none;
}

.service-category li span {
    font-weight: 600;
    color: var(--primary-color);
}


/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}