@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@200;300;400;500;600;700&display=swap');

/* Ajout d'un styling de base pour tous les éléments */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background-color: #101010;
    color: #fff;
    overflow-x: hidden;
}

header {
    background-color: rgba(0, 0, 0, 0.9);
    color: #ac8132;
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(232, 185, 35, 0.3);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: #ac8132;
    text-transform: none;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar ul li {
    display: inline-block;
    margin-left: 30px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.navbar a:hover {
    color: #ac8132;
}

.navbar a.contact-link {
    background-color: #ac8132;
    color: #000;
    padding: 8px 16px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar a.contact-link:hover {
    background-color: #fff;
    color: #000;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    height: 2px;
    width: 25px;
    background-color: #ac8132;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Styles pour le menu mobile */
.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    height: calc(100vh - 70px);
    z-index: 100;
}

.mobile-menu ul {
    list-style-type: none;
    padding: 30px;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInDown 0.3s forwards;
    animation-delay: calc(0.1s * var(--animation-order, 0));
}

.mobile-menu a {
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #ac8132;
}

/* Styles responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .navbar {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero */

.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ac8132;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    transition: transform 10s ease;
}

.hero:hover .hero-background {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 6rem;
    margin: 0 0 30px;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.1;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.2s forwards;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0 0 50px;
    color: #ac8132;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.btn-primary, .btn-secondary {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 14px 36px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    box-sizing: border-box;
}

.btn-primary {
    background-color: #ac8132;
    color: #000;
    border: none;
}

.btn-primary:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 30px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 12px 20px;
        text-align: center;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* Ornaments */
.ornament {
    position: absolute;
    z-index: 2;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    pointer-events: none;
}

.ornament-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 100 100' fill='%23e8b923'%3E%3Cpath d='M40,0 C40,20 20,40 0,40 C20,40 40,60 40,80 C40,60 60,40 80,40 C60,40 40,20 40,0 Z'/%3E%3C/svg%3E");
}

.ornament-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 100 100' fill='%23e8b923'%3E%3Cpath d='M40,0 C40,20 20,40 0,40 C20,40 40,60 40,80 C40,60 60,40 80,40 C60,40 40,20 40,0 Z'/%3E%3C/svg%3E");
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #ac8132;
    border-radius: 13px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: #ac8132;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { 
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% { 
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.chevrons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chevron {
    display: block;
    width: 16px;
    height: 8px;
    border-bottom: 2px solid #ac8132;
    border-right: 2px solid #ac8132;
    transform: rotate(45deg);
    margin: -4px;
    animation: chevronDown 2s infinite;
}

.chevron:nth-child(1) {
    animation-delay: 0s;
}

.chevron:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes chevronDown {
    0% { 
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% { 
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero-logo {
        font-size: 5.5rem;
    }
    
    .ornament {
        width: 200px;
        height: 200px;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        font-size: 4rem;
    }
    
    .ornament {
        width: 150px;
        height: 150px;
        opacity: 0.15;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .separator {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        font-size: 3rem;
    }
    
    .ornament {
        display: none;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .separator {
        max-width: 220px;
    }
    
    .crown-icon {
        width: 60px;
        height: 30px;
    }
}

.hero2 {
    height:60vh;
}

/* Presentation */

.about {
    background-color: #000000;
    color: #ffffff;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ac8132;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.title-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 250px;
}

.title-separator span {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ac8132, transparent);
    flex-grow: 1;
}

.title-separator i {
    color: #ac8132;
    margin: 0 15px;
    font-size: 14px;
}

.about-content {
    margin-bottom: 70px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #f0f0f0;
}

.about-features {
    margin-bottom: 60px;
}

.about-features h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    color: #ac8132;
    margin-bottom: 50px;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    display: flex;
    background: linear-gradient(145deg, #0c0c0c, #141414);
    border: 1px solid rgba(232, 185, 35, 0.1);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(232, 185, 35, 0.1);
    border-color: rgba(232, 185, 35, 0.3);
}

.feature-icon {
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.8rem;
    color: #ac8132;
}

.feature-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ac8132;
    margin-bottom: 10px;
}

.feature-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f0f0f0;
}

.about-cta {
    text-align: center;
    margin-top: 40px;
}

.about-decoration {
    position: absolute;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.about-decoration img {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.about-decoration-left {
    left: -80px;
    top: 10%;
}

.about-decoration-right {
    right: -80px;
    bottom: 5%;
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .about {
        padding: 90px 0;
    }
    
    .about .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .about-decoration img {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 70px 0;
    }
    
    .about .section-title {
        font-size: 2.2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .about-decoration {
        opacity: 0.08;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 50px 0;
    }
    
    .about .section-title {
        font-size: 1.8rem;
    }
    
    .title-separator {
        width: 200px;
    }
    
    .feature-icon {
        flex: 0 0 40px;
        font-size: 1.5rem;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
}

/* Showcase */

.showcase {
    background-color: #000000;
    color: #ffffff;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ac8132;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.showcase .section-title::after {
    display: none;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.showcase-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.gallery-main {
    height: 100%;
}

.gallery-main .gallery-item {
    height: 100%;
}

.gallery-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: calc(50% - 10px);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(232, 185, 35, 0.3);
}

.gallery-item:hover::before {
    opacity: 0.7;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.showcase-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.showcase-rating {
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: #ac8132;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.rating-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #ac8132;
    font-weight: 500;
}

.showcase-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0c0c0c, #141414);
    border: 1px solid rgba(232, 185, 35, 0.2);
    border-radius: 50%;
    color: #ac8132;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.detail-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #f0f0f0;
}

.showcase-cta {
    margin-top: 20px;
}

.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.show {
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid rgba(232, 185, 35, 0.5);
    box-shadow: 0 0 30px rgba(232, 185, 35, 0.2);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 30px;
    color: #ac8132;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
}

@media (max-width: 992px) {
    .showcase {
        padding: 90px 0;
    }
    
    .showcase .section-title {
        font-size: 2.5rem;
    }
    
    .showcase-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-main {
        height: 400px;
    }
    
    .gallery-sidebar {
        flex-direction: row;
        height: 250px;
    }
    
    .gallery-sidebar .gallery-item {
        height: 100%;
        width: calc(50% - 10px);
    }
    
    .showcase-details {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .showcase {
        padding: 70px 0;
    }
    
    .showcase .section-title {
        font-size: 2.2rem;
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .gallery-sidebar {
        height: 200px;
    }
    
    .stars {
        font-size: 1.5rem;
    }
    
    .rating-text {
        font-size: 1rem;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        min-width: 40px;
    }
    
    .detail-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .showcase {
        padding: 50px 0;
    }
    
    .showcase-gallery {
        gap: 15px;
    }
    
    .gallery-main {
        height: 250px;
    }
    
    .gallery-sidebar {
        height: auto;
        flex-direction: column;
    }
    
    .gallery-sidebar .gallery-item {
        width: 100%;
        height: 200px;
    }
    
    .detail-item {
        width: 100%;
        justify-content: flex-start;
    }
    
    .close-modal {
        top: -30px;
        right: 0;
    }
}

/* Dining Experience */

.dining-experience {
    background-color: #000000;
    color: #ffffff;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.dining-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.dining-header {
    text-align: center;
    margin-bottom: 70px;
}

.dining-experience .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ac8132;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.dining-experience .section-title::after {
    display: none;
}

.dining-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.dining-image-column {
    position: relative;
}

.dining-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
    height: 100%;
}

.dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dining-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
}

.dining-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dining-text-content {
    padding: 20px 0;
}

.dining-text-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ac8132;
    margin-bottom: 20px;
    font-weight: 500;
}

.dining-text-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.dining-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.dining-features li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0c0c0c, #141414);
    border: 1px solid rgba(232, 185, 35, 0.2);
    border-radius: 50%;
    color: #ac8132;
    font-size: 1.5rem;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.feature-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #f0f0f0;
}

.key-service {
    background: linear-gradient(145deg, #0c0c0c, #141414);
    border: 1px solid rgba(232, 185, 35, 0.2);
    border-radius: 5px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.key-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(232, 185, 35, 0.15);
    border-color: rgba(232, 185, 35, 0.4);
}

.key-service-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.key-service-header i {
    font-size: 2rem;
    color: #ac8132;
    margin-right: 15px;
}

.key-service-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ac8132;
    margin: 0;
    font-weight: 500;
}

.key-service p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.key-service .btn-secondary {
    margin-top: 10px;
    display: inline-block;
}

@media (max-width: 992px) {
    .dining-experience {
        padding: 90px 0;
    }
    
    .dining-experience .section-title {
        font-size: 2.5rem;
    }
    
    .dining-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .dining-image {
        height: 400px;
    }
    
    .dining-text-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .dining-experience {
        padding: 70px 0;
    }
    
    .dining-experience .section-title {
        font-size: 2.2rem;
    }
    
    .dining-image {
        height: 350px;
    }
    
    .dining-text-content h3 {
        font-size: 1.6rem;
    }
    
    .dining-text-content p {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 15px;
        min-width: 40px;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    .key-service {
        padding: 25px;
    }
    
    .key-service-header i {
        font-size: 1.8rem;
    }
    
    .key-service-header h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .dining-experience {
        padding: 50px 0;
    }
    
    .dining-experience .section-title {
        font-size: 1.8rem;
    }
    
    .dining-image {
        height: 250px;
    }
    
    .dining-text-content h3 {
        font-size: 1.4rem;
    }
    
    .dining-features li {
        margin-bottom: 15px;
    }
    
    .feature-icon {
        width: 35px;
        height: 50px;
        font-size: 1rem;
        min-width: 35px;
    }
    
    .key-service {
        padding: 20px;
    }
}

/* C.T.A */

.cta-section {
    position: relative;
    padding: 100px 0;
    background-color: #000;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.cta-content {
    position: relative;
    background: linear-gradient(145deg, #0c0c0c, #141414);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(232, 185, 35, 0.15);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./images/bg-pattern.png');
    background-size: 300px;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
    text-align: center;
}

.cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.1), rgba(232, 185, 35, 0.05));
    border: 1px solid rgba(232, 185, 35, 0.3);
    border-radius: 50%;
}

.cta-icon i {
    font-size: 2.5rem;
    color: #ac8132;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ac8132;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.3;
}

.cta-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.cta-content::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 185, 35, 0.1) 0%, rgba(232, 185, 35, 0) 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 1;
}

.cta-content::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 185, 35, 0.1) 0%, rgba(232, 185, 35, 0) 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    z-index: 1;
}

@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-inner {
        padding: 60px 40px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-inner {
        padding: 50px 30px;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .cta-icon i {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-inner {
        padding: 40px 20px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .cta-icon i {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        padding: 12px 20px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* Footer */

.site-footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 185, 35, 0), rgba(232, 185, 35, 0.5), rgba(232, 185, 35, 0));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #ac8132;
    margin: 0 0 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-separator {
    display: flex;
    align-items: center;
    width: 80%;
    margin-bottom: 20px;
}

.footer-separator span {
    height: 1px;
    background: linear-gradient(90deg, #ac8132, transparent);
    flex-grow: 1;
}

.footer-separator i {
    color: #ac8132;
    margin: 0 10px;
    font-size: 0.8rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: #ac8132;
    font-size: 1.2rem;
    width: 25px;
    display: flex;
    justify-content: center;
}

.contact-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #f0f0f0;
    margin: 0;
}

.footer-nav {
    padding-top: 10px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a {
    font-family: 'Montserrat', sans-serif;
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding-left: 15px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #ac8132;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.footer-nav a:hover {
    color: #ac8132;
    padding-left: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    padding-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0c0c0c, #141414);
    border: 1px solid rgba(232, 185, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ac8132;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(232, 185, 35, 0.2);
    border-color: rgba(232, 185, 35, 0.4);
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(232, 185, 35, 0.1);
    font-size: 0.9rem;
    color: #f0f0f0;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #ac8132;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-separator {
        margin: 0 auto 20px;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .footer-nav ul {
        align-items: center;
    }
    
    .footer-nav a::before {
        display: none;
    }
    
    .footer-nav a {
        padding-left: 0;
    }
    
    .footer-nav a:hover {
        padding-left: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 50px 0 20px;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem;
    }
}

/* Mentions Légales */

.mentions-legales {
    background-color: #000;
    color: #ac8132;
    padding: 80px 0;
    position:relative;
}

.mentions-container {
    max-width: 800px;
    margin: 0 auto;
}

.mentions-legales .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.mentions-legales .legal-info,
.mentions-legales .hosting-info,
.mentions-legales .design-info,
.mentions-legales .articles,
.mentions-legales .contact-info {
    margin-bottom: 30px;
}

.mentions-legales h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #FF1493;
}

.mentions-legales article {
    margin-bottom: 20px;
}

.mentions-legales article h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.mentions-legales article p {
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mentions-legales .section-title {
        font-size: 2rem;
    }

    .mentions-legales h3 {
        font-size: 1.5rem;
    }

    .mentions-legales article h4 {
        font-size: 1.2rem;
    }
}

/* Services */

.services-section {
    background-color: #000000;
    color: #ffffff;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ac8132;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.services-intro {
    max-width: 800px;
    margin: 30px auto 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f0f0f0;
}

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

.service-card {
    background: linear-gradient(145deg, #0c0c0c, #141414);
    border: 1px solid rgba(232, 185, 35, 0.1);
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(232, 185, 35, 0.1);
    border-color: rgba(232, 185, 35, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #ac8132;
    border-radius: 8px;
    margin-right: 20px;
    font-size: 1.8rem;
    flex-shrink: 0;
    border: 1px solid rgba(232, 185, 35, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ac8132;
    margin: 0 0 15px;
    font-weight: 600;
}

.service-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
    margin: 0;
}

.services-cta {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .services-section {
        padding: 90px 0;
    }
    
    .services-section .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 70px 0;
    }
    
    .services-section .section-title {
        font-size: 2.2rem;
    }
    
    .services-intro {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-section .section-title {
        font-size: 1.8rem;
    }
    
    .services-intro {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 25px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
}

.logo-img {
    width: 70px;
    height: 70px;
}

/* Luxury Services */

.luxury-services {
    background-color: #000000;
    color: #ffffff;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.luxury-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 185, 35, 0), rgba(232, 185, 35, 0.5), rgba(232, 185, 35, 0));
}

.luxury-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.luxury-header {
    text-align: center;
    margin-bottom: 80px;
}

.luxury-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ac8132;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.luxury-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    margin: 20px auto 30px;
}

.luxury-separator span {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ac8132, transparent);
    flex-grow: 1;
}

.luxury-separator i {
    color: #ac8132;
    margin: 0 15px;
    font-size: 14px;
}

.luxury-intro {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f0f0f0;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-bottom: 80px;
}

.service-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-category.reverse {
    direction: rtl;
}

.service-category.reverse .service-details,
.service-category.reverse .service-image {
    direction: ltr;
}

.service-image {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(232, 185, 35, 0.3);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-category:hover .service-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.5)
    );
    transition: background 0.3s ease;
}

.service-category:hover .image-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.6)
    );
}

.service-details {
    padding: 20px 0;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #ac8132;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border: 1px solid rgba(232, 185, 35, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ac8132;
    margin: 0 0 20px;
    font-weight: 600;
}

.service-details p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f0f0f0;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #f0f0f0;
}

.service-features li i {
    color: #ac8132;
    margin-right: 10px;
    font-size: 0.9rem;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ac8132, #d4a520);
    color: #000;
    padding: 12px 25px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(232, 185, 35, 0.2);
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 185, 35, 0.3);
    background: linear-gradient(45deg, #d4a520, #ac8132);
}

.services-cta {
    text-align: center;
    background: linear-gradient(145deg, #0c0c0c, #141414);
    border: 1px solid rgba(232, 185, 35, 0.2);
    border-radius: 8px;
    padding: 60px 40px;
    margin-top: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.services-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #ac8132;
    margin: 0 0 20px;
    font-weight: 600;
}

.services-cta p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .luxury-services {
        padding: 90px 0;
    }
    
    .luxury-header h2 {
        font-size: 2.5rem;
    }
    
    .service-category {
        gap: 30px;
    }
    
    .service-image {
        height: 350px;
    }
    
    .service-details h3 {
        font-size: 1.8rem;
    }
    
    .services-cta h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .luxury-services {
        padding: 70px 0;
    }
    
    .luxury-header h2 {
        font-size: 2.2rem;
    }
    
    .luxury-intro {
        font-size: 1rem;
    }
    
    .services-showcase {
        gap: 70px;
    }
    
    .service-category {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-category.reverse {
        direction: ltr;
    }
    
    .service-image {
        height: 300px;
    }
    
    .service-details h3 {
        font-size: 1.6rem;
    }
    
    .service-details p {
        font-size: 1rem;
    }
    
    .services-cta {
        padding: 40px 30px;
    }
    
    .services-cta h3 {
        font-size: 1.8rem;
    }
    
    .services-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .luxury-services {
        padding: 50px 0;
    }
    
    .luxury-header {
        margin-bottom: 50px;
    }
    
    .luxury-header h2 {
        font-size: 1.8rem;
    }
    
    .luxury-separator {
        width: 240px;
    }
    
    .luxury-intro {
        font-size: 0.95rem;
    }
    
    .services-showcase {
        gap: 50px;
    }
    
    .service-image {
        height: 240px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-details h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .service-details p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .services-cta {
        padding: 30px 20px;
    }
    
    .services-cta h3 {
        font-size: 1.5rem;
    }
    
    .services-cta p {
        font-size: 0.95rem;
    }
}

/* Availability Section */

.availability-section {
    background-color: #000000;
    color: #ffffff;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.availability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 185, 35, 0), rgba(232, 185, 35, 0.5), rgba(232, 185, 35, 0));
}

.availability-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.availability-header {
    text-align: center;
    margin-bottom: 70px;
}

.availability-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ac8132;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.availability-intro {
    max-width: 800px;
    margin: 30px auto 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f0f0f0;
}

.availability-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    min-height: 600px;
}

.availability-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.availability-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    background: linear-gradient(145deg, #0c0c0c, #141414);
    border: 1px solid rgba(232, 185, 35, 0.1);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.4s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(232, 185, 35, 0.1);
    border-color: rgba(232, 185, 35, 0.3);
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #ac8132;
    border-radius: 8px;
    font-size: 1.6rem;
    border: 1px solid rgba(232, 185, 35, 0.2);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.info-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ac8132;
    margin: 0 0 10px;
    font-weight: 500;
}

.info-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f0f0f0;
    margin: 0;
}

.availability-cta {
    text-align: center;
    margin: 30px 0;
}

.availability-calendar {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(232, 185, 35, 0.2);
    height: 100%;
    min-height: 500px;
    background-color: #0a0a0a;
}

.calendar-frame {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.calendar-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ac8132, transparent);
    z-index: 10;
}

.calendar-frame iframe {
    background-color: transparent;
    height: 100%;
    min-height: 500px;
}

@media (max-width: 992px) {
    .availability-section {
        padding: 90px 0;
    }
    
    .availability-header h2 {
        font-size: 2.5rem;
    }
    
    .availability-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .availability-calendar {
        height: 500px;
    }
    
    .info-item {
        padding: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .info-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .availability-section {
        padding: 70px 0;
    }
    
    .availability-header h2 {
        font-size: 2.2rem;
    }
    
    .availability-intro {
        font-size: 1rem;
    }
    
    .availability-info {
        gap: 20px;
    }
    
    .info-item {
        padding: 20px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .info-content h3 {
        font-size: 1.1rem;
    }
    
    .info-content p {
        font-size: 0.9rem;
    }
    
    .availability-calendar {
        height: 400px;
    }
    
    .calendar-frame iframe {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .availability-section {
        padding: 50px 0;
    }
    
    .availability-header h2 {
        font-size: 1.8rem;
    }
    
    .availability-intro {
        font-size: 0.95rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
    }
    
    .info-icon {
        margin-bottom: 15px;
    }
    
    .availability-calendar {
        height: 350px;
    }
    
    .calendar-frame iframe {
        min-height: 350px;
    }
}


/* Hero Minimal */
.hero-minimal {
    position: relative;
    height: 30vh; /* Petit vh comme demandé */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    padding-top: 70px;
}

.hero-minimal .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/prestations-hero.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
    z-index: 1;
}

.hero-minimal .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-minimal .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 30px;
}

.hero-minimal .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin: 0 0 20px;
    color: #ac8132;
    line-height: 1.1;
}

.hero-minimal .title-separator {
    width: 250px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .hero-minimal .hero-title {
        font-size: 3rem;
    }
    
    .hero-minimal .title-separator {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .hero-minimal {
        height: 35vh;
    }
    
    .hero-minimal .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-minimal .title-separator {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-minimal {
        height: 30vh;
    }
    
    .hero-minimal .hero-title {
        font-size: 2rem;
    }
    
    .hero-minimal .title-separator {
        width: 170px;
    }
}

        /* Styles spécifiques pour la galerie */
        .gallery-section {
            padding: 80px 0;
            background-color: #000;
            color: #fff;
            overflow: hidden;
        }
        
        .gallery-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .gallery-intro {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .gallery-intro h2 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #fff;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .gallery-intro p {
            font-size: 1.3rem;
            color: #ccc;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .gallery-masonry {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            padding-bottom: 30px;
        }
        
        .gallery-masonry-item {
            position: relative;
            overflow: hidden;
            border-radius: 6px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.5);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            aspect-ratio: 3/2;
            transform-origin: center;
        }
        
        .gallery-masonry-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0,0,0,0.8), 0 0 25px rgba(212, 175, 55, 0.3);
            z-index: 5;
        }
        
        .gallery-masonry-item.clicked {
            transform: scale(0.98);
            box-shadow: 0 5px 15px rgba(0,0,0,0.6);
            transition: all 0.3s ease;
        }
        
        .gallery-masonry-item a {
            display: block;
            height: 100%;
            width: 100%;
        }
        
        .gallery-masonry-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .gallery-masonry-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-masonry-item.clicked img {
            transform: scale(1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 30px 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }
        
        .gallery-masonry-item:hover .gallery-overlay {
            opacity: 1;
            transform: translateY(0);
        }
        
        .gallery-info h3 {
            color: #fff;
            font-size: 1.4rem;
            margin-bottom: 5px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.8);
        }
        
        .gallery-info span {
            color: #d4af37;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .gallery-categories {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .category-btn {
            background: transparent;
            border: 2px solid #d4af37;
            color: #fff;
            padding: 12px 30px;
            margin: 10px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
        }
        
        .category-btn:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }
        
        .category-btn:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: #d4af37;
            transition: all .3s;
            z-index: -1;
        }
        
        .category-btn:hover:before, .category-btn.active:before {
            width: 100%;
        }
        
        .category-btn:hover, .category-btn.active {
            color: #000;
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
            transform: translateY(-3px);
        }
        
        @media (max-width: 1200px) {
            .gallery-masonry {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .gallery-intro h2 {
                font-size: 2.5rem;
            }
            
            .gallery-intro p {
                font-size: 1.1rem;
            }
            
            .gallery-masonry {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .category-btn {
                padding: 10px 20px;
                margin: 5px;
                font-size: 0.8rem;
            }
        }
        
        /* Style pour le lightbox */
        .lb-outerContainer {
            background-color: #000;
            border-radius: 0;
            padding: 10px;
        }
        
        .lb-container {
            padding: 0;
        }
        
        .lb-dataContainer {
            padding-top: 15px;
            max-width: 80%;
            margin: 0 auto;
        }
        
        .lb-data .lb-caption {
            font-size: 18px;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            color: #fff;
        }
        
        .lb-data .lb-number {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .lb-nav a.lb-prev,
        .lb-nav a.lb-next {
            opacity: 0.8;
        }
        
        .lb-nav a.lb-prev:hover,
        .lb-nav a.lb-next:hover {
            opacity: 1;
        }
        
        .lb-cancel {
            background-size: contain;
        }
        
        /* Animation pour les filtres */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .gallery-masonry-item {
            animation: fadeIn 0.5s ease forwards;
            animation-delay: calc(var(--animation-order) * 0.1s);
            opacity: 0;
        }

/* Styles spécifiques pour les mentions légales */
.mentions-legales {
    padding: 100px 0;
    background: #000;
    color: #fff;
}

.mentions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #d4af37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 20px auto;
}

.legal-section {
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #d4af37;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.legal-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.2);
}

.legal-section h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.legal-section h3 i {
    margin-right: 15px;
    font-size: 1.5rem;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #ccc;
    font-size: 1.1rem;
}

.legal-section p strong {
    color: #fff;
    font-weight: 600;
}

.articles article {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.articles article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.articles h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .mentions-legales {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .legal-section {
        padding: 20px;
    }

    .legal-section h3 {
        font-size: 1.5rem;
    }

    .articles h4 {
        font-size: 1.2rem;
    }
}

/* Ajout des styles pour la section Contact */

.contact-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 25px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.contact-info-column, 
.contact-form-column {
    flex: 1 1 400px;
    padding: 0 20px;
    margin-bottom: 30px;
}

/* Styles pour la colonne d'informations */
.contact-info-header {
    margin-bottom: 30px;
}

.contact-info-header h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-separator {
    width: 50px;
    height: 3px;
    background: #d4af37;
    margin-top: 15px;
}

.contact-info-list {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    flex: 0 0 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: #d4af37;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover .info-icon {
    background: #d4af37;
    color: #000;
    transform: scale(1.1);
}

.info-details h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-details p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

.info-details a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: #d4af37;
}

.contact-social {
    margin-top: 30px;
}

.contact-social h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-icons {
    display: flex;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
}

/* Styles pour le formulaire */
.contact-form-wrapper {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-header p {
    color: #ccc;
    font-size: 1rem;
}

.contact-form {
    position: relative;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-row {
    display: flex;
    margin: 0 -10px;
}

.form-group.half {
    flex: 0 0 50%;
    padding: 0 10px;
}

.input-wrapper, 
.textarea-wrapper, 
.select-wrapper {
    position: relative;
}

.input-wrapper i, 
.textarea-wrapper i, 
.select-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 1rem;
    pointer-events: none;
}

.textarea-wrapper i {
    top: 25px;
    transform: none;
}

.contact-form input[type="text"], 
.contact-form input[type="email"], 
.contact-form input[type="tel"], 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.contact-form label {
    position: absolute;
    left: 45px;
    top: 15px;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-form input:focus + label, 
.contact-form select:focus + label, 
.contact-form textarea:focus + label, 
.contact-form input:not(:placeholder-shown) + label, 
.contact-form select:not(:placeholder-shown) + label, 
.contact-form textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: #d4af37;
    background: #000;
    padding: 0 5px;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #d4af37;
    pointer-events: none;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form-privacy {
    display: flex;
    align-items: flex-start;
}

.form-privacy input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
}

.form-privacy label {
    position: static;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-privacy a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-privacy a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 30px;
    text-align: center;
}

.btn-submit {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-submit i {
    margin-left: 10px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #000;
    transition: all 0.5s ease;
    z-index: 0;
}

.btn-submit:hover {
    color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-submit:hover::before {
    width: 100%;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .form-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info-column, 
    .contact-form-column {
        flex: 1 1 100%;
    }
    
    .contact-info-header h3,
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group.half {
        flex: 1 1 100%;
    }
    
    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-intro {
        font-size: 1rem;
    }
    
    .info-icon {
        flex: 0 0 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .info-details h4 {
        font-size: 1rem;
    }
    
    .info-details p {
        font-size: 0.9rem;
    }
    
    .contact-form input[type="text"], 
    .contact-form input[type="email"], 
    .contact-form input[type="tel"], 
    .contact-form select, 
    .contact-form textarea {
        padding: 12px 12px 12px 40px;
        font-size: 0.9rem;
    }
    
    .contact-form label {
        font-size: 0.9rem;
        left: 40px;
    }
    
    .contact-form input:focus + label, 
    .contact-form textarea:focus + label {
        font-size: 0.75rem;
    }
    
    .input-wrapper i, 
    .textarea-wrapper i, 
    .select-wrapper i {
        font-size: 0.9rem;
    }
}

/* Message de succès du formulaire */
.form-success-message {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-icon i {
    font-size: 40px;
    color: #d4af37;
}

.form-success-message h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-success-message p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon i {
        font-size: 30px;
    }
    
    .form-success-message h3 {
        font-size: 1.5rem;
    }
    
    .form-success-message p {
        font-size: 1rem;
    }
}