@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&display=swap');

:root {
    --primary-font: 'Montserrat', sans-serif;
    --color-background: #0a0a0a;
    --color-text: #f0f0f0;
    --color-accent: #d4af37; /* Gold */
    --color-accent-dark: #b89b2e;
    --color-overlay-bg: rgba(0, 0, 0, 0.7);
    --header-height: 80px;
    --transition-speed: 0.4s;
    --border-radius-main: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size for rem units */
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent-dark) var(--color-background);
}

/* Custom scrollbar for Chromium browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-background);
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-accent-dark);
    border-radius: 20px;
}

body {
    font-family: var(--primary-font);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
    position: relative; /* For loader positioning */
    overscroll-behavior: none; /* Prevent pull-to-refresh on mobile */
    touch-action: pan-y; /* Allow vertical scrolling while maintaining other restrictions */
}

img {
    max-width: 100%;
    height: auto;
}

/* --- LOADER --- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-logo {
    margin-bottom: 1.5rem;
    position: relative;
    width: 180px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    animation: logoAnimation 1.5s ease-out;
}

@keyframes logoAnimation {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
        filter: brightness(0) drop-shadow(0 0 0 rgba(212, 175, 55, 0));
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 15px rgba(212, 175, 55, 0.7));
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--color-accent);
    animation: loadingAnimation 2s ease-out forwards;
    box-shadow: 0 0 10px 1px rgba(212, 175, 55, 0.5);
}

@keyframes loadingAnimation {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader.hidden .loader-logo img {
    animation: logoFadeOut 0.6s ease forwards;
}

@keyframes logoFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2) translateY(-20px);
        filter: brightness(1.5) drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 3vw;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.logo-container img {
    height: calc(var(--header-height) * 0.7); /* Augmenté de 0.5 à 0.7 pour un logo plus grand */
    max-width: 200px; /* Augmenté la largeur maximale de 150px à 200px */
    cursor: pointer;
    transition: filter var(--transition-speed), transform 0.3s ease;
}

.logo-container img:hover {
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    transform: scale(1.05);
}

/* --- DOT NAVIGATION --- */
.dot-navigation {
    display: none;
}

/* --- MAIN CONTENT & VIDEO BACKGROUND --- */
.site-main {
    position: relative;
    padding-top: 0; /* Enlever le padding-top */
    height: 100%;
    /* overflow: hidden; */ /* fullPage.js handles overflow */
}

/* Removed fixed video container styles */
/* .video-background-container { ... } */
/* #bg-video { ... } */

/* --- PAGE SECTIONS --- */
/* Styles for .page-section might be overridden by fullPage.js's .section */
/* .page-section { ... } */

/* --- PER-SECTION VIDEO STYLES --- */
.section .section-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Behind section content */
    opacity: 0; /* Initially hidden, controlled by JS */
    visibility: hidden; /* Initially hidden */
    filter: brightness(0.85);
    /* No CSS transition on opacity/visibility - GSAP controls this */
    will-change: opacity; /* Performance optimization hint */
    transform: translateZ(0); /* Hardware acceleration */
    -webkit-transform: translateZ(0); /* For Safari */
    backface-visibility: hidden; /* Reduces composite layers */
    -webkit-backface-visibility: hidden; /* For Safari */
    perspective: 1000; /* Improve mobile rendering */
    -webkit-perspective: 1000; /* For Safari */
}

/* Active section video is controlled by JavaScript/GSAP */

.section-content {
    /* min-height: auto; */ /* Not needed? */
    /* height: auto; */ /* Not needed? */
    opacity: 0; /* Start hidden for GSAP animation */
    visibility: hidden; /* Start hidden for GSAP animation */
    transform: translateY(15px); /* Start slightly offset for GSAP animation */
    position: relative; /* Ensure content is above video */
    z-index: 1;
    /* Hide scrollbar if it appears */
    overflow: auto; /* Ensure overflow is scrollable if needed, but hide bar */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.section-content::-webkit-scrollbar {
    display: none;
}

.section-content h1 {
    font-size: 3.5rem;
    font-weight: 900; /* Black */
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, var(--color-accent), #f8e9b0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    transform: translateZ(0); /* Fix for Safari */
    margin-left: -2px; /* Visual alignment */
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-content h1 strong {
    font-weight: 900; /* Black */
    font-style: italic;
    display: inline;
}

.section-content h2 {
    font-size: 2.8rem;
    font-weight: 900; /* Black */
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--color-text);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.section-content p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.discover-more-btn {
    background-color: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    padding: 12px 28px;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--border-radius-main);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    outline: none;
}

.discover-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transition: left 0.3s ease;
    z-index: -1;
}

.discover-more-btn:hover {
    color: var(--color-background);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.discover-more-btn:hover::before {
    left: 0;
}

/* --- MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-overlay-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) cubic-bezier(0.19, 1, 0.22, 1);
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--color-background);
    padding: 35px 40px;
    border-radius: var(--border-radius-main);
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 25px rgba(212, 175, 55, 0.2);
}

.modal-overlay.visible .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close-btn:hover {
    color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

#modal-body-content h2 {
    font-size: 2rem;
    font-weight: 900; /* Black */
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    min-height: 2.5rem; /* Ensure space for multi-line titles */
    word-wrap: break-word; /* Ensure long words wrap properly */
    hyphens: auto; /* Enable hyphenation for long words */
}

#modal-body-content h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    min-height: 2rem; /* Ensure consistent height for subtitle */
    word-wrap: break-word;
    hyphens: auto;
}

#modal-body-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    word-wrap: break-word;
    hyphens: auto;
}

html[lang="fr"] #modal-body-content h2,
html[lang="fr"] #modal-body-content h3 {
    font-size: 95%; /* French text tends to be longer */
}

html[lang="es"] #modal-body-content h4 {
    font-size: 95%; /* Spanish can have longer section titles */
}

@media (max-width: 768px) {
    #modal-body-content h2 {
        font-size: 1.8rem; /* Slightly smaller on mobile for multilingual support */
    }
    
    #modal-body-content h3 {
        font-size: 1.1rem;
    }
    
    html[lang="fr"] #modal-body-content h2 {
        font-size: 1.7rem;
    }
}

#modal-body-content ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
    padding-left: 10px;
}

#modal-body-content li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 5px;
}

#modal-body-content li::before {
    content: "•";
    color: var(--color-accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.tags {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--color-accent);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.whatsapp-container-modal {
    margin-top: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.whatsapp-btn-modal {
    display: inline-block;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: var(--border-radius-main);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-modal:hover {
    background-color: #1DAE54;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.email-btn-modal {
    display: inline-block !important;
    background-color: #4A6FE3 !important; /* Email Blue */
    color: white !important;
    text-decoration: none !important;
    padding: 12px 25px !important;
    border-radius: var(--border-radius-main) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    box-shadow: 0 4px 10px rgba(74, 111, 227, 0.3) !important;
    border: none !important;
    cursor: pointer !important;
}

.email-btn-modal:hover {
    background-color: #3A5ED3 !important;
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 6px 15px rgba(74, 111, 227, 0.4) !important;
    color: white !important;
}

/* Social links et bouton contact en bas à droite */
.social-links-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: row; /* Changé en row pour afficher les éléments côte à côte */
    align-items: center;
    gap: 15px;
    z-index: 100;
}

/* Sélecteur de langue */
.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn {
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    backdrop-filter: blur(5px);
    font-size: 0; /* Remove any space for text */
}

.lang-btn.active {
    box-shadow: 0 0 0 2px var(--color-accent);
    transform: scale(1.1);
}

.lang-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.flag-icon {
    width: 24px !important; /* Fixed width with !important */
    height: 24px !important; /* Fixed height with !important */
    max-width: 24px !important; /* Force max width */
    max-height: 24px !important; /* Force max height */
    display: block; /* Fix rendering issues */
    overflow: hidden; /* Prevent overflow issues */
    pointer-events: none; /* Prevent SVG from intercepting events */
    position: absolute; /* Position within button */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center perfectly */
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-accent);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.social-icon {
    width: 20px;
    height: 20px;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.social-link:hover {
    transform: scale(1.1);
    background-color: var(--color-accent);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.contact-btn {
    background-color: var(--color-accent);
    color: #000;
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
    background-color: #e9c649;
}

/* Modal de contact */
#contact-modal .modal-content {
    max-width: 550px;
}

.contact-form-container {
    padding: 10px 0;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 900;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
}

.contact-form-container p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: rgba(240, 240, 240, 0.8);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-text);
    border-radius: var(--border-radius-main);
    font-family: var(--primary-font);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    width: 100%;
    background-color: var(--color-accent);
    color: #000;
    border: none;
    border-radius: var(--border-radius-main);
    padding: 12px 20px;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.submit-btn:hover {
    background-color: #e9c649;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .site-header {
        padding: 0 2vw;
    }
    
    .dot-navigation {
        right: 20px; /* Adjust for smaller screens */
        gap: 15px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .section-content h1 {
        font-size: 2.8rem;
    }
    
    .section-content h2 {
        font-size: 2.2rem;
    }
    
    .section-content p {
        font-size: 1rem;
    }
    
    .discover-more-btn {
        padding: 10px 22px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    html {
        font-size: 14px;
    }
    
    .logo-container img {
        height: calc(var(--header-height) * 0.65); /* Augmenté de 0.45 à 0.65 */
    }
    
    .section-content {
        padding: 30px;
    }
    
    .section-content h1 {
        font-size: 2.2rem;
    }
    
    .section-content h2 {
        font-size: 1.8rem;
    }
    
    .modal-content {
        padding: 25px 20px;
        width: 95%;
    }
    
    #modal-body-content h2 {
        font-size: 1.8rem; /* Slightly smaller on mobile for multilingual support */
    }
    
    #modal-body-content h3 {
        font-size: 1.1rem;
    }
    
    html[lang="fr"] #modal-body-content h2 {
        font-size: 1.7rem;
    }
    
    #modal-body-content h3 {
        font-size: 1.1rem;
    }
    
    #modal-body-content p {
        font-size: 0.95rem;
    }
      .social-links-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-icon {
        width: 17px;
        height: 17px;
    }
    
    .lang-btn {
        width: 35px;
        height: 35px;
    }
    
    .contact-btn {
        padding: 7px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 60px;
    }
    
    html {
        font-size: 13px;
    }
    
    /* Mobile video optimizations */
    .section .section-bg-video {
        object-position: center center; /* Ensure video is always centered on mobile */
        height: 100vh; /* Force full height */
        width: 100vw; /* Force full width */
    }
    
    .logo-container img {
        margin-top: 5px;
        height: calc(var(--header-height) * 0.8);
    }
    
    .social-links-container {
        gap: 8px;
    }
      .lang-btn, .social-link {
        width: 32px;
        height: 32px;
    }
    
    .flag-icon {
        width: 20px;
        height: 20px;
    }
    
    .dot-navigation {
        right: 10px;
        gap: 12px;
    }
    
    
    .section-content {
        padding: 25px 20px;
    }
    
    .section-content h1 {
        font-size: 1.8rem;
    }
    
    .section-content h2 {
        font-size: 1.5rem;
    }
    
    .section-content p {
        font-size: 0.9rem;
    }
    
    .discover-more-btn {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
    
    .modal-close-btn {
        font-size: 1.5rem;
        top: 10px;
        right: 15px;
    }
    
    .whatsapp-btn-modal {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Utility class for JS to control body scroll when modal is open */
.no-scroll {
    overflow: hidden;
    touch-action: none;
    -ms-touch-action: none;
}

/* Animation class for section elements */
.fade-in {
    animation: fadeIn 0.8s forwards;
}

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

/* Optimize loading for images and videos */
[loading="lazy"] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Ajustements pour fullPage.js */
#fullpage {
    height: 100%;
    position: relative;
    touch-action: none;
}

.section {
    position: relative;
    box-sizing: border-box;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--header-height);
}

/* Style des points de navigation fullPage */
#fp-nav ul li a span, 
.fp-slidesNav ul li a span {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#fp-nav ul li a.active span, 
.fp-slidesNav ul li a.active span {
    background: var(--color-accent);
    transform: scale(1.4);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

/* Hide scrollbar within fullPage.js overflow container */
.fp-overflow {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.fp-overflow::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.fp-warning, .fp-watermark {
    display: none !important;
}