* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}


body {
    background-color: black;
    font-family: 'Inter', sans-serif;
    color: white;
    overflow-x: hidden;
}

main {
    padding-top: 70px;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: black;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(95, 177, 179, 0.1);
}

#logo {
    height: 120px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5fb1b3, #edbc36);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #5fb1b3;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-button {
    background: linear-gradient(90deg, #5fb1b3, #edbc36);
    color: black;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: "Alex Brush", cursive;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(95, 177, 179, 0.3);
    text-decoration: none;
    display: inline-block;
}

.contact-button:hover {
    border: #edbc36 2px, solid;

}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.burger-line {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #5fb1b3, #edbc36);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 100px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
    max-width: min(400px, 100vw);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(95, 177, 179, 0.1);
}

.mobile-nav a {
    display: block;
    padding: 20px 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.mobile-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5fb1b3, #edbc36);
    transition: width 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a:active {
    color: #5fb1b3;
    padding-left: 25px;
}

.mobile-nav a:hover::before {
    width: 15px;
}

.mobile-contact {
    background: linear-gradient(135deg, #5fb1b3, #edbc36);
    color: black !important;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
    font-family: 'Alex Brush', cursive;
}

.mobile-contact:hover {
    background: linear-gradient(135deg, #edbc36, #5fb1b3);
    padding-left: 15px !important;
}

.hero {
    text-align: center;
    position: relative;
    margin-bottom: 200px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(95, 177, 179, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 3px;
    position: relative;
}

.hero h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #5fb1b3, #edbc36);
    border-radius: 2px;
}

.hero h2 {
    font-family: "Alex Brush", cursive;
    font-size: 3rem;
    color: #edbc36;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
    margin-top: 30px;
}

.accueil-section {
    padding: 30px 60px;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.accueil-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.accueil-image {
    position: relative;
    padding: 0;
    overflow: hidden;
    border-radius: 25px;
    cursor: pointer;
    border: 2px solid rgba(95, 177, 179, 0.2);
    transition: all 0.4s ease;
    max-height: 670px;
}

.accueil-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.accueil-image:hover::before {
    opacity: 1;
}

.accueil-image::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 40px;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(95, 177, 179, 0.1), rgba(237, 188, 54, 0.1));
    border-radius: 30px;
    z-index: -2;
    filter: blur(20px);
}

.accueil-image img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    transition: transform 0.6s ease;
}

.accueil-image:hover {
    border-color: #edbc36;
    box-shadow: 0 20px 50px rgba(237, 188, 54, 0.4);
    transform: translateY(-10px);
}

.accueil-image:hover img {
    transform: scale(1.05);
}


.accueil-texte h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #edbc36 50%, #5fb1b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accueil-subtitle {
    font-family: "Alex Brush", cursive;
    font-size: 2rem;
    color: #5fb1b3;
    margin-bottom: 35px;
    opacity: 0.9;
}

.accueil-texte p {
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 300;
}

.accueil-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(95, 177, 179, 0.08), rgba(237, 188, 54, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(95, 177, 179, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(95, 177, 179, 0.15), rgba(237, 188, 54, 0.1));
    transform: translateX(10px);
    border-color: rgba(237, 188, 54, 0.4);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #5fb1b3, #edbc36);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(95, 177, 179, 0.3);
}

.highlight-icon svg {
    width: 22px;
    height: 22px;
    fill: #000;
}

.highlight-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.gallery-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 25px;
}

.section-title h2 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 400;
    color: white;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #5fb1b3, #edbc36);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/5;
    cursor: pointer;
    border: 2px solid rgba(95, 177, 179, 0.2);
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.4);
}

.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    border-color: #edbc36;
    box-shadow: 0 20px 50px rgba(237, 188, 54, 0.4);
    transform: translateY(-10px);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: #edbc36;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.video-section {
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
}

.video-container {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    width: 100%;
    position: relative;
}

.video-container video {
    width: 48%;
    height: 700px;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #5fb1b3;
    box-shadow: 0 20px 60px rgba(95, 177, 179, 0.3);
}

.services-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(95, 177, 179, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(95, 177, 179, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #5fb1b3;
    box-shadow: 0 20px 40px rgba(95, 177, 179, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #5fb1b3, #edbc36);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(95, 177, 179, 0.3);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.card-title {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: #edbc36;
    margin-bottom: 15px;
    font-weight: 500;
}

.card-duration {
    color: #5fb1b3;
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-list {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.services-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 300;
}

.services-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #5fb1b3;
    font-weight: bold;
    font-size: 1.2rem;
}

.card-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: white;
    font-family: "Inter", sans-serif;
    position: relative;
    padding-top: 20px;
}

.card-price::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #5fb1b3, #edbc36);
}

.address-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
}

.address-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.address-info {
    padding: 40px;
    background: linear-gradient(145deg, rgba(95, 177, 179, 0.08), rgba(237, 188, 54, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(95, 177, 179, 0.2);
}

.address-info h3 {
    font-family: "Alex Brush", cursive;
    font-size: 2.5rem;
    color: #edbc36;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #5fb1b3, #edbc36);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-text strong {
    color: #5fb1b3;
    display: block;
    margin-bottom: 5px;
}

.info-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #5fb1b3;
}

.map-container {
    flex: 1;
    width: 100%;
    height: 460px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(72, 197, 182, 0.15);
    transition: transform 0.3s ease;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    background: black;
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(95, 177, 179, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5fb1b3;
}

.mentions-legales a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mentions-legales {
    padding: 15px;
}

.mentions-legales a:hover {
    color: #5fb1b3;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .accueil-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .accueil-texte {
        padding: 20px;
        text-align: center;
    }

    .accueil-highlights {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-item {
        max-height: none;
        width: 100%;
    }

    .video-container {
        flex-direction: column;
        align-items: center;
    }

    .video-container video {
        width: 100%;
        max-width: 600px;
        height: auto;
        aspect-ratio: 9/16;
    }

    .address-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .contact-button {
        display: none;
    }

    .site-header {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    #logo {
        height: 80px;
    }

    main {
        padding-top: 110px;
    }

    .hero {
        padding: 40px 20px 30px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .accueil-section {
        padding: 60px 20px;
    }

    .accueil-image {
        padding: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .accueil-image img {
        height: auto;
        aspect-ratio: 1;
    }

    .accueil-texte {
        padding: 20px 0;
    }

    .accueil-texte h2 {
        font-size: 2rem;
    }

    .accueil-highlights {
        grid-template-columns: 1fr;
    }

    .gallery-section {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .video-section {
        padding: 60px 20px;
    }

    .services-section {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 10px;
    }

    .service-card {
        min-height: auto;
    }

    .address-section {
        padding: 60px 20px;
    }

    .address-info {
        padding: 30px 20px;
    }

    .map-container {
        height: 350px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    #logo {
        height: 70px;
    }

    main {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .accueil-section {
        padding: 5px 15px;
    }

    .accueil-image {
        padding: 0;
    }

    .accueil-texte h2 {
        font-size: 1.7rem;
    }

    .accueil-texte p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .highlight-item {
        padding: 15px 20px;
    }

    .gallery-section {
        padding: 40px 15px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .gallery-grid {
        gap: 20px;
    }

    .video-section {
        padding: 40px 15px;
    }

    .video-container video {
        max-width: 100%;
    }

    .services-section {
        padding: 40px 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-price {
        font-size: 1.8rem;
    }

    .address-section {
        padding: 40px 15px;
    }

    .address-info h3 {
        font-size: 2rem;
    }

    .info-text {
        font-size: 0.95rem;
    }

    .map-container {
        height: 300px;
    }

    .site-footer {
        padding: 30px 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .copyright {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    .mobile-menu {
        max-width: 100%;
    }

    .mobile-nav a {
        font-size: 1.1rem;
    }
}