/* ==================== */
/* Styles généraux */
/* ==================== */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #333; /* Couleur de texte par défaut */
    background-color: #f8f9fa; /* Fond de page */
}

/* ==================== */
/* Fond d'écran */
/* ==================== */
.background-container {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background-image: url('daniel2.jpg');
    background-size: 90% auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
}

.background-container .text-center {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.background-container h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #E1A624;
    font-family: cursive;
}

.background-container p {
    font-size: 1.5rem;
    font-family: sans-serif;
}

/* Media queries pour le fond d'écran */
@media (max-width: 768px) {
    .background-container {
        height: 80vh;
        background-size: 95% auto;
    }
}

@media (min-width: 1400px) {
    .background-container {
        height: 95vh;
        background-size: 85% auto;
    }
}

/* ==================== */
/* Barre de navigation */
/* ==================== */
.custom-navbar {
    background-color: rgba(0, 0, 0, 0.075);
    padding: 10px 0;
}

.navbar-nav .nav-item .nav-link {
    color: #FFFFFF;
    margin: 0 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #DAAB3A;
}

.logo-container {
    width: 200px;
    height: auto;
}

.logo-container .logo {
    max-width: 100%;
    height: auto;
}

/* ==================== */
/* Bouton de retour en haut */
/* ==================== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.3s;
}

.back-to-top.show {
    display: block;
    opacity: 0.7;
}

.back-to-top:hover {
    opacity: 1;
}

.back-to-top img.arrow-icon {
    max-width: 100%;
    height: auto;
}

/* ==================== */
/* Section À propos du photographe */
/* ==================== */
.about-photographer {
    padding: 60px 0;
    background-color: #fff;
}

.about-photographer h2 {
    font-size: 2.5rem;
    color: #DAAB3A;
    margin-bottom: 20px;
    text-align: center;
}

.about-photographer p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ==================== */
/* Section Carrousel d'images */
/* ==================== */
.image-slider-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.owl-carousel {
    display: flex;
    justify-content: center;
}

.owl-item {
    text-align: center;
    position: relative;
}

.owl-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.owl-nav .owl-prev {
    left: -40px;
}

.owl-nav .owl-next {
    right: -40px;
}

/* ==================== */
/* Section Séance Photo-Portrait */
/* ==================== */
.photo-portrait-section {
    padding: 60px 0;
    background-color: #fff;
}

.photo-portrait-section h1 {
    font-size: 2.5rem;
    color: #DAAB3A;
    margin-bottom: 20px;
    text-align: center;
}

.photo-portrait-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.photo-portrait-section .lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.photo-portrait-section .card {
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.photo-portrait-section .card-body {
    padding: 20px;
}

.photo-portrait-section .card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.photo-portrait-section .card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* ==================== */
/* Section ADphoto */
/* ==================== */
.adphoto {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.adphoto .col-md-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
}

.adphoto img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.adphoto h3 {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

/* ==================== */
/* Pied de page */
/* ==================== */
.footer {
    background-color: #0a0b0c;
    color: #fff;
    padding: 40px 0;
}

.footer h4 {
    color: #ffd700;
    margin-bottom: 20px;
}

.footer p, .footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .social-icons a {
    color: #ffd700;
    margin-right: 10px;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer .social-icons a:hover {
    color: #fff;
}

.footer .quick-links li {
    margin-bottom: 10px;
}

.footer .quick-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer .quick-links a:hover {
    color: #ffd700;
}

.footer .photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.footer .photo-gallery img {
    width: 15%;
    margin-bottom: 5px;
    border-radius: 5px;
}

.footer form {
    display: flex;
    flex-direction: column;
}

.footer form input {
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
    padding: 10px;
}

.footer form button {
    background-color: #ffd700;
    border: none;
    border-radius: 5px;
    padding: 10px;
    color: #000;
    font-weight: bold;
    transition: background-color 0.3s;
}

.footer form button:hover {
    background-color: #ffa500;
}

/* ==================== */
/* Boutons personnalisés */
/* ==================== */
.custom-btn {
    background-color: #ffa500;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.custom-btn:hover {
    background-color: #c7b000;
}