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

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

header {
    background-image: url('couvreur-figeac.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 30px;
    text-align: center;
}

header .header-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    display: inline-block;
}

header h1 {
    font-size: 2.5em;
    color: #ff6347; /* Tomate */
}

header p {
    font-size: 1.2em;
}

.phone {
    font-weight: bold;
    color: #ff6347;
}

/* Navigation */
nav {
    background-color: #004d40; /* Teal foncé */
    text-align: center;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

nav ul li a:hover {
    color: #ff6347; /* Couleur hover */
}

/* Content */
.content {
    margin: 20px;
    padding: 20px;
}

.box-text {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.box-text p {
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #004d40; /* Teal foncé */
    color: white;
    text-align: center;
    padding: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #ff6347;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
}
