:root {
    --primary: #cce6ff;
    --secondary: #00cc66;
    --light: #cce6ff;
    --dark: #006633;
    --accent: #0077e6;
    --pale: #ebfad7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--dark);
}

.logo h3 {
	font-size: 1rem;
	color: #7883AE;
	line-height: 0.5em;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 400;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent);
}

 /* Mobile */
.mobile-menu-btn {
    display: none;    
}


/* Hero Section */
.hero {
    height: 80vh;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: 100%;    
	background-color: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
     margin-top: 10px; /* Pour compenser la navbar fixe */
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}


.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero .slogan {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Sections communes */
section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--accent);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    margin: 15px auto;
}

/* À propos */

   .oiseaux {
  list-style-image: url('images/oiseau-30px.png');
        justify-content: center;
        
}
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-text ul {
    margin: 20px 0 20px 20px;
}

.about-text li {
    margin-bottom: 8px;
}

.highlight-box {
    background-color: var(--primary);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.highlight-box i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: white;
}

.highlight-box p {
    color: cornflowerblue;
    margin: 0;
}

/* Services */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--accent);
}

.specialties {
    background-color: var(--secondary);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.specialties h3 {
    color: white;
    margin-bottom: 20px;
}

.specialties-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.specialties-list span {
    background-color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.specialties-list i {
    color: var(--primary);
    margin-right: 8px;
}

/* Adresse */
.location-content {
	display: flex;
	gap: 40px;
	align-items: center;
}

.address {
    flex: 1;
}

.map {
    flex: 1;
    height: 400px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
}

.address h3 {
    margin-bottom: 20px;
    color: var(--accent);
}

.address p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.address i {
    color: var(--primary);
    margin-right: 10px;
}

/* Heures */
.hours {
    background-color: white;
}

.hours-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.hours-content table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.hours-content td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.hours-content tr:last-child td {
    border-bottom: none;
}

.hours-content td:first-child {
    font-weight: bold;
    text-align: left;
}

.hours-content td:last-child {
    text-align: right;
}

.note {
    font-style: italic;
    color: #777;
}

/* Contact */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.contact-info a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--accent);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #aaa;
}

.footer-cta h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}

/* Boutons */
.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}
.pale {
    background-color: var(--pale);
     padding: 25px 20px;
    border-radius: 30px;
}


/* Responsive */
@media (max-width: 992px) {
    .about-content,
    .location-content,
    .contact-content {
        flex-direction: column;
    }
    
    .about-image,
    .map {
        margin-top: 30px;
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-content img {
    width: 90%;
    height: auto;
}
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
        transition: left 0.3s;
    }
    
    nav ul.show {
        left: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }

@media (max-width: 576px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-cta {
        margin-top: 30px;
    }
    
    /* Language switcher */
.language-switcher {
    background-color: var(--secondary);
    padding: 8px 15px;
    border-radius: 20px;
    margin-left: 15px;
    font-weight: bold;
    transition: all 0.3s;
}

.language-switcher:hover {
    background-color: var(--accent);
    color: white;
    transform: none;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 15px;
        display: inline-block;
    }
 
 
}
