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

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
    cursor: default;
}

body {
    width: 100%;
    min-height: 100vh;
    line-height: 1.6;
    background-color: #fff;
    padding-top: 50px;
    overflow-x: hidden;
}

/* ===== Cursor Styles ===== */
a, button, 
input[type="submit"],
input[type="button"],
.discover-btn,
.submit-btn,
.prev, .next,
.tab-item,
.dropdown > a,
.social-links a,
.footer-section p a,
.footer-section ul li a {
    cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    cursor: text;
}

/* Custom cursor for interactive elements */
a:hover, button:hover, 
input[type="submit"]:hover,
input[type="button"]:hover,
.discover-btn:hover,
.submit-btn:hover,
.prev:hover, .next:hover,
.tab-item:hover,
.dropdown > a:hover,
.social-links a:hover,
.footer-section p a:hover,
.footer-section ul li a:hover {
    cursor: pointer;
}

/* ===== Typography ===== */
h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

/* ===== Layout Utilities ===== */
.section-p1 {
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
}

.section-m1 {
    margin: 40px 0;
}

/* ===== Header / Navbar ===== */
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 5%;
    background: #E5E4E2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    height: 85px;
}

#header.hidden {
    transform: translateY(-100%);
}

.logo {
    width: 110px;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
    margin-right: 100px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

#navbar, #navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#navbar li, .submenu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

#navbar {
    display: flex;
    gap: 35px;
    margin-left: auto;
    padding-right: 30px;
    margin-top: 8px;
    align-items: center;
}

#navbar li {
    padding: 0 12px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 15.5px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
    padding: 4px 0;
    letter-spacing: 0.3px;
    position: relative;
}

#navbar li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #C9BDA8;
    transition: width 0.3s ease;
}

#navbar li a:hover::after {
    width: 100%;
}

/* Dropdown menu styles */
.dropdown {
    position: relative;
}

.dropdown > a i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown:hover > a::after {
    display: none;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #E5E4E2;
    width: 280px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 25px 0;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.dropdown:hover .submenu {
    display: block;
}

.submenu li:last-child {
    margin-bottom: 0;
}

.submenu li a {
    padding: 25px 25px;
    display: block;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: normal;
    transition: all 0.3s ease;
    text-align: left;
    padding-left: 35px;
}

.submenu li a:hover {
    background: #C9BDA8;
    color: #ffffff !important;
}

.submenu li a::after {
    display: none;
}

/* ===== Slider Styles ===== */
.container {
    padding: 0;
    position: relative;
    margin-top: 88px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
    height: 600px;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 2;
}

.prev, .next {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev:hover, .next:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ===== Overlay Styles ===== */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.18); /* very transparent black */
    color: #fff;
    padding: 40px 60px;
    width: 80%;
    max-width: 800px;
    border-radius: 12px;
    text-align: center;
    z-index: 2;
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.overlay h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.overlay p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #fff;
    opacity: 0.9;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.overlay .button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.overlay .discover-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #C19A6B;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #C19A6B;
    text-align: center;
    min-width: 250px;
}

.overlay .discover-btn:hover {
    background-color: transparent;
    color: white;
}

/* ===== Contact Page Styles ===== */
.contact-container {
    max-width: 600px;
    margin: 150px auto 40px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-container h1 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-container button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s;
}

.contact-container button:hover {
    background-color: #45a049;
}

.contact-info {
    margin-top: 30px;
    text-align: center;
    color: #666;
}

/* Update body styles for contact page */
body.contact-page {
    background-color: #f5f5f5;
    padding: 20px;
}

/* ===== Contact Page Styles ===== */
.contact-page {
    background-color: #f5f5f5;
}

.banniere-bg {
    width: 100vw;
    height: 300px;
    background: url('Img/Presentation/background.jpeg') center center/cover no-repeat;
    margin: 0;
    padding: 0;
}

.contact-gallery-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    margin-top: -60px;
    margin-bottom: 40px;
    padding: 0 5%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-petit {
    width: 480px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-petit h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.contact-form-petit .form-group {
    margin-bottom: 16px;
}

.contact-form-petit .form-group label {
    display: none;
}

.contact-form-petit .form-group input,
.contact-form-petit .form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #222;
    background: transparent;
    padding: 7px 0 4px 0;
    font-size: 1rem;
    outline: none;
    margin-bottom: 0;
    color: #222;
}

.contact-form-petit .form-group input::placeholder,
.contact-form-petit .form-group textarea::placeholder {
    color: #888;
    font-size: 1rem;
}

.contact-form-petit .form-group textarea {
    min-height: 40px;
    resize: none;
}

.contact-form-petit .submit-btn {
    background-color: #C19A6B;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.contact-form-petit .submit-btn:hover {
    background-color: #a88a5d;
}

.gallery3-cadre {
    width: 480px;
    height: 340px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.gallery3-cadre img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    cursor: pointer;
}

.contact-info-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.contact-info-box {
    flex: 1;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    min-width: 250px;
}

.contact-info-box h4 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-info-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-info-box i {
    font-size: 24px;
    margin-bottom: 15px;
    color: #C19A6B;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

@media (max-width: 1300px) {
    .container {
        max-width: 95%;
    }
    
    .slide {
        height: 550px;
    }
}

@media (max-width: 900px) {
    .container {
        max-width: 90%;
    }
    
    .slide {
        height: 450px;
    }
    
    .overlay {
        padding: 30px 40px;
        width: 90%;
    }
    
    .overlay h1 {
        font-size: 1.8em;
    }
    
    .overlay p {
        font-size: 1em;
    }
    
    .contact-gallery-row {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        margin-top: 0;
    }
    
    .contact-info-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info-box {
        width: 100%;
        max-width: 480px;
    }
    
    .contact-form-petit,
    .gallery3-cadre {
        width: 100%;
        max-width: 480px;
    }
    
    .logo {
        margin-right: 40px;
        width: 90px;
    }
    
    #navbar {
        padding-right: 20px;
        gap: 25px;
    }
}

@media (max-width: 799px) {
    .background-image-section {
        height: 400px;
        padding: 0;
        position: relative;
    }

    .background-image-section .background-img {
        position: absolute;
        height: 100%;
        opacity: 0.3;
        width: 100%;
        object-fit: cover;
    }

    .background-image-section .ascale-img {
        position: absolute;
        left: 5%;
        top: 35%;
        transform: translateY(-50%);
        height: 40%;
        width: auto;
        max-width: 150px;
    }

    .background-image-section .importation-img {
        position: absolute;
        left: 50%;
        top: 35%;
        transform: translate(-50%, -50%);
        height: 40%;
        width: auto;
        max-width: 150px;
    }

    .background-image-section .local-img {
        position: absolute;
        right: 5%;
        top: 35%;
        transform: translateY(-50%);
        height: 40%;
        width: auto;
        max-width: 150px;
    }

    .background-image-section .ascale-title {
        position: absolute;
        left: 19%;
        top: 60%;
        transform: translateX(-50%);
        color: #E1C16E;
        font-size: 20px;
        font-weight: 900;
        text-align: center;
        z-index: 2;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Richgold Bold', serif;
        margin: -30px 0 0 0;
        padding: 0;
        line-height: 1;
    }

    .background-image-section .importation-title {
        position: absolute;
        left: 79%;
        top: 60%;
        transform: translateX(-50%);
        color: #E1C16E;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        z-index: 2;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Playfair Display', serif;
        margin: -30px 0 0 0;
        padding: 0;
        line-height: 1;
    }

    .background-image-section .local-title {
        position: absolute;
        left: 50%;
        top: 90%;
        transform: translateX(-50%);
        color: #C4A484;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        z-index: 2;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Playfair Display', serif;
        opacity: 1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .background-image-section .local-title:hover {
        transform: translateX(-50%) scale(1.05);
    }

    .welcome-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 95vw;
        max-width: 100vw;
        min-width: 0;
        padding: 28px 12px 22px 12px;
        background: #fcfcfa;
        border-radius: 18px;
        box-shadow: 0 6px 24px rgba(0,0,0,0.13);
        margin: 0 auto;
        text-align: center;
        margin-top: 0;
        font-size: 1.12em;
        box-sizing: border-box;
        word-break: break-word;
    }
    .welcome-text {
        margin-top: 0 !important;
        margin-bottom: 16px;
        width: 100%;
        text-align: center;
        white-space: normal;
        font-size: 1.35em;
        font-weight: 700;
    }
    .about-paragraph {
        margin-top: 0;
        font-size: 1.05em;
    }
    .welcome-img-inbox {
        width: 100%;
        max-width: 220px;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 12px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .welcome-text, .about-paragraph {
        text-align: center;
    }
    .welcome-img-inbox {
        margin-top: 16px;
    }
    .welcome img {
        display: block;
        margin: 0 auto 32px auto;
    }
    .welcome-content {
        margin-top: 0;
    }
    .welcome {
        display: flex;
        flex-direction: column !important;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        margin: 0 0 24px 0;
        width: 100%;
    }
    .welcome img {
        display: block;
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 14px;
        margin: 0 auto 18px auto;
        box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    }
    .welcome-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 95vw;
        max-width: 100vw;
        min-width: 0;
        padding: 32px 18px 24px 18px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.13);
        margin: 0 auto;
        text-align: center;
        font-size: 1.15em;
        box-sizing: border-box;
        word-break: break-word;
    }
    .welcome-text {
        margin-top: 0 !important;
        margin-bottom: 18px;
        width: 100%;
        text-align: center;
        white-space: normal;
        font-size: 1.38em;
        font-weight: 700;
    }
    .about-paragraph {
        margin-top: 0;
        font-size: 1.07em;
    }
    .welcome-content .discover-btn {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 477px) {
    #header {
        padding: 10px 20px;
    }
    
    .container {
        max-width: 85%;
    }
    
    .slide {
        height: 350px;
    }
    
    .overlay {
        padding: 15px 20px;
    }
    
    .overlay h1 {
        font-size: 1.2em;
    }
    
    .overlay p {
        font-size: 0.9em;
    }
    
    .overlay .discover-btn {
        padding: 8px 15px;
        font-size: 0.9em;
        min-width: 180px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-section p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .logo {
        width: 80px;
    }

    .background-image-section {
        height: auto;
        min-height: 400px;
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .background-image-section .background-img {
        position: relative;
        height: 200px;
        width: 100%;
        object-fit: cover;
        margin-bottom: 2px;
    }

    .background-image-section .overlay-text {
        position: relative;
        font-size: 38px;
        font-weight: 900;
        font-family: 'Richgold Bold', serif;
        color: #C4A484;
        text-align: center;
        z-index: 2;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-top: 0;
        margin-bottom: 10px;
        text-shadow: 0 3px 12px rgba(0,0,0,0.18), 0 1px 0 #fff;
        padding: 0 8px;
    }

    .background-image-section a {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .background-image-section .ascale-img {
        position: relative;
        width: 100%;
        height: 180px;
        object-fit: cover;
        margin: 0;
        display: block;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .background-image-section .ascale-title,
    .background-image-section .importation-title,
    .background-image-section .local-title {
        position: relative;
        font-size: 16px;
        margin: -35px 0 5px 0;
        padding: 0;
        text-align: center;
        line-height: 1.2;
        font-weight: 700;
        top: 0;
        transform: none;
    }
}

/* ===== Tabbed Section Styles ===== */
.tabbed-section {
    padding: 40px 20px;
    background: #fff;
    margin-bottom: 20px;
}

.tab-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    justify-content: center;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    transition: all 0.3s ease;
}

.tab-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.tab-item span {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Spartan', sans-serif;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.tab-item:first-child .tab-description {
    max-width: 600px;
}

.tab-description {
    font-size: 15px;
    color: #666;
    margin-top: 15px;
    text-align: center;
    font-family: 'Spartan', sans-serif;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

.tab-item:nth-child(n+2) .tab-description {
    max-width: 900px;
}

.tab-item:not(:last-child) span {
    white-space: nowrap;
}

.tab-item:last-child span {
    line-height: 1.1;
    display: inline-block;
}

.tab-item:hover img {
    transform: scale(1.1);
}

.tab-item.active img {
    animation: iconPop 0.5s ease;
}

@keyframes iconPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    
    .slider-wrapper {
        height: 60vh;
    }
    
    .slide {
        height: 60vh;
    }
    
    .slide img {
        height: 100%;
        object-fit: cover;
    }
    
    .overlay {
        padding: 20px;
        background: rgba(0, 0, 0, 0.2);
        width: 90%;
        max-width: 500px;
        border-radius: 10px;
    }
    
    .overlay h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .overlay p {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .overlay .discover-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 477px) {
    .slider-wrapper {
        height: 50vh;
    }
    
    .slide {
        height: 50vh;
    }
    
    .overlay {
        padding: 15px;
        width: 85%;
        background: rgba(0, 0, 0, 0.2);
    }
    
    .overlay h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .overlay p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .overlay .discover-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

.tab-pane h2 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
}

@media (min-width: 769px) {
    .tabs {
        gap: 50px;
    }
    .tabbed-section .tab-description {
        max-width: 1400px;
    }
}

/* ===== Background Image Section Styles ===== */
.background-image-section {
    width: 100%;
    padding: 0;
    margin-top: 0;
    text-align: center;
    position: relative;
    height: 650px;
    background-color: #fff;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.background-image-section .background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.background-image-section .ascale-img {
    position: absolute;
    left: 5%;
    top: 40%;
    transform: translateY(-50%);
    height: 55%;
    width: auto;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    cursor: pointer;
}

.background-image-section .importation-img {
    position: absolute;
    left: 65%;
    top: 40%;
    transform: translateY(-50%);
    height: 55%;
    width: auto;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    cursor: pointer;
}

.background-image-section .local-img {
    position: absolute;
    left: 50%;
    top: 75%;
    transform: translate(-50%, -50%);
    height: 55%;
    width: auto;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    cursor: pointer;
}

.background-image-section .ascale-title {
    position: absolute;
    left: 19%;
    top: 60%;
    transform: translateX(-50%);
    color: #C4A484;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Richgold Bold', serif;
    margin: -30px 0 0 0;
    padding: 0;
    line-height: 1;
}

.background-image-section .importation-title {
    position: absolute;
    left: 79%;
    top: 60%;
    transform: translateX(-50%);
    color: #C4A484;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    margin: -30px 0 0 0;
    padding: 0;
    line-height: 1;
}

.background-image-section .local-title {
    position: absolute;
    left: 50%;
    top: 90%;
    transform: translateX(-50%);
    color: #C4A484;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    opacity: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.background-image-section .local-title:hover {
    transform: translateX(-50%) scale(1.05);
}

.background-image-section .overlay-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Richgold Bold', serif;
    color: #C4A484;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.13), 0 1px 0 #fff;
}

/* ===== Ascale Presentation Section Styles ===== */
.ascale-section {
    width: 100%;
    padding: 40px 0;
    text-align: center;
}

.ascale-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    cursor: pointer;
}

/* ===== Catalogue Page Styles ===== */
.catalogue-header {
    text-align: center;
    padding: 100px 20px 50px;
    background: #f8f8f8;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.catalogue-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.catalogue-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.marble-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.marble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.marble-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    cursor: pointer;
    height: 300px;
}

.marble-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.marble-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    z-index: 2;
}

.marble-item h3 {
    font-size: 20px;
    color: white;
    margin: 0 0 5px;
    font-family: 'Playfair Display', serif;
}

.marble-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

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

.marble-item:hover .marble-item-content {
    background: rgba(0, 0, 0, 0.85);
}

@media (max-width: 768px) {
    .marble-item {
        height: 250px;
    }
    
    .marble-item-content {
        padding: 12px 15px;
    }
    
    .marble-item h3 {
        font-size: 18px;
    }
    
    .marble-item p {
        font-size: 13px;
    }
}

/* ===== Footer Styles ===== */
.footer {
    background-color: #E5E4E2;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

.footer-logo-img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
    margin-top: 10px;
}

.footer-section {
    margin-bottom: 10px;
}

.footer-section h3 {
    color: #1a1a1a;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p i {
    color: #C19A6B;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #C19A6B;
}

.footer-section p a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: #C19A6B;
}

.footer-section p a[href^="mailto:"] {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-section p a[href^="mailto:"]:hover {
    color: #C19A6B;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #666;
    font-size: 24px;
    transition: all 0.3s ease;
    cursor: pointer !important;
}

.social-links a:hover {
    color: #C19A6B;
}

.social-links a:active {
    cursor: grabbing !important;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #000;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    
    .footer-logo p {
        max-width: 600px;
        text-align: center;
    }
}

@media (max-width: 799px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        width: 100%;
        padding: 0;
    }
    .footer-section {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-logo-img {
        display: block;
        margin: 0 auto 14px auto;
    }
    .footer-section ul {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .footer-section ul li {
        width: 100%;
    }
    .footer-bottom {
        width: 100%;
        text-align: center;
    }
}

/* Mobile Navigation Styles */
#mobile {
    display: none;
    align-items: center;
}

#bar {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
    cursor: pointer;
}

@media (max-width: 799px) {
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 85px;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #E5E4E2;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 20px 0 0 10px;
        transition: 0.3s;
        z-index: 999;
    }

    #navbar.active {
        right: 0;
    }

    #navbar li {
        margin-bottom: 10px;
        padding: 0 8px;
    }

    #navbar li a {
        font-size: 14px;
        padding: 2px 0;
    }

    .dropdown .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 5px 0;
        display: none;
    }

    .dropdown.active .submenu {
        display: block;
    }

    .submenu li a {
        padding: 5px 15px;
        font-size: 13px;
    }

    #mobile {
        display: flex;
        padding: 0 10px;
    }

    #bar {
        font-size: 20px;
        padding-left: 10px;
    }
}

/* Mobile Slider Styles */
@media (max-width: 477px) {
    .container {
        padding: 0;
    }

    .slider-wrapper {
        height: 60vh;
    }

    .slide {
        height: 60vh;
    }

    .overlay {
        padding: 0 20px;
        text-align: center;
    }

    .overlay h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .overlay p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .overlay .discover-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Mobile Tabbed Section Styles */
@media (max-width: 768px) {
    .tabbed-section {
        padding: 20px 15px;
    }

    .tabs {
        flex-direction: column;
        gap: 15px;
    }

    .tab-item {
        width: 100%;
        padding: 15px;
    }

    .tab-item img {
        width: 40px;
        height: 40px;
    }

    .tab-item span {
        font-size: 16px;
        margin: 10px 0;
    }

    .tab-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Mobile Background Image Section Styles */
@media (max-width: 477px) {
    .background-image-section {
        height: auto;
        min-height: 400px;
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .background-image-section .background-img {
        position: relative;
        height: 200px;
        width: 100%;
        object-fit: cover;
        margin-bottom: 2px;
    }

    .background-image-section .overlay-text {
        position: relative;
        font-size: 38px;
        font-weight: 900;
        font-family: 'Richgold Bold', serif;
        color: #C4A484;
        text-align: center;
        z-index: 2;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-top: 0;
        margin-bottom: 10px;
        text-shadow: 0 3px 12px rgba(0,0,0,0.18), 0 1px 0 #fff;
        padding: 0 8px;
    }

    .background-image-section a {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .background-image-section .ascale-img {
        position: relative;
        width: 100%;
        height: 180px;
        object-fit: cover;
        margin: 0;
        display: block;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .background-image-section .ascale-title,
    .background-image-section .importation-title,
    .background-image-section .local-title {
        position: relative;
        font-size: 16px;
        margin: -35px 0 5px 0;
        padding: 0;
        text-align: center;
        line-height: 1.2;
        font-weight: 700;
        top: 0;
        transform: none;
    }
}

/* Ascale Presentation Section Styles */
.landscape-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.landscape-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.landscape-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.presentation-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.text-content {
    flex: 1;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
    color: #444;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.image-content {
    flex: 1;
}

.landscape-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .presentation-content {
        flex-direction: column;
    }
    
    .text-content, .image-content {
        width: 100%;
    }
    
    .landscape-section h2 {
        font-size: 2rem;
    }
}

/* Banner Section Styles */
.banner-section {
    width: 95%;
    height: 70vh;
    overflow: hidden;
    position: relative;
    margin: 60px auto 0;
    padding: 0;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .banner-section {
        height: 60vh;
        margin-top: 40px;
        width: 90%;
    }
}

@media (max-width: 477px) {
    .banner-section {
        height: 50vh;
        margin-top: 30px;
        width: 85%;
    }
}

.product-card {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

.product-info h3 {
    font-size: 20px;
    margin: 0 0 8px;
    color: white;
    font-family: 'Playfair Display', serif;
}

.product-info p {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .product-card {
        height: 250px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 18px;
    }
    
    .product-info p {
        font-size: 13px;
    }
}

@media (max-width: 477px) {
    .parallax-hero {
        height: 45vh;
        background-size: cover;
        background-position: center;
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 10px;
    }
    .product-card {
        margin-bottom: 12px;
        height: 180px;
    }
    .product-card img {
        height: 100%;
        object-fit: cover;
    }
    .section-title h2 {
        font-size: 1.2rem;
    }
    .section-title p {
        font-size: 0.95rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.main-container {
    position: relative;
    width: 100%;
    margin-top: 120px;
}

.parallax-hero {
    height: 100vh;
    background-image: url('Img/Local/heading.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.1s linear;
    margin-bottom: 0;
    overflow: hidden;
}

.parallax-hero::after {
    display: none;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    padding: 0 20px;
    position: relative;
    margin-bottom: 300px;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.products-section {
    background-color: white;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    margin-top: 100px;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    opacity: 1;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #C19A6B;
    opacity: 1;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    opacity: 1;
}

.section-title p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    opacity: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
    justify-items: center;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.product-card {
    background: transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 350px;
    margin: 0 auto;
}

.product-card::before {
    display: none;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    z-index: 3;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.product-info p {
    display: none;
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .product-card {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .parallax-hero {
        height: 100vh;
    }
    .hero-content {
        margin-bottom: 200px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.3rem;
    }
    .products-section {
        margin-top: 50px;
        padding: 30px 20px;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 20px 10px;
    }
    .product-card {
        width: 100%;
        max-width: none;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.parallax-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
    perspective: 1000px;
}

.parallax-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 80% 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-image {
    display: block;
    max-width: 100%;
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.products-section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.product-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 300px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: left;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    padding-left: 10px;
}

/* Add parallax effect on scroll */
@media (min-width: 768px) {
    .parallax-image {
        transform: translateY(var(--scroll-offset, 0));
        transition: transform 0.1s linear;
    }
}

/* ===== Import Page Styles ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.parallax-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
    perspective: 1000px;
}

.parallax-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Img/Import/heading.jpeg') no-repeat center center;
    background-size: cover;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.products-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.main-container {
    margin-top: 80px;
}

@media (max-width: 768px) {
    .contact-gallery-row {
        flex-direction: column;
    }
    
    .contact-form-petit {
        order: 2;
        width: 100%;
        margin-top: 30px;
    }
    
    .gallery3-cadre {
        order: 1;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .gallery3-cadre img {
        width: 100%;
        height: auto;
    }
}

.policy {
    font-size: 1.1rem;
}
.policy p {
    font-size: 1.1rem;
}

@keyframes welcomeFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 799px) {
  .welcome {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0 0 24px 0;
    width: 100%;
  }
  .welcome img {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 14px;
    margin: 0 auto 18px auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  }
  .welcome-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95vw;
    max-width: 100vw;
    min-width: 0;
    padding: 32px 18px 24px 18px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    margin: 0 auto;
    text-align: center;
    font-size: 1.15em;
    box-sizing: border-box;
    word-break: break-word;
  }
  .welcome-text {
    margin-top: 0 !important;
    margin-bottom: 18px;
    width: 100%;
    text-align: center;
    white-space: normal;
    font-size: 1.38em;
    font-weight: 700;
  }
  .about-paragraph {
    margin-top: 0;
    font-size: 1.07em;
  }
}

.welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 40px 0 0 0;
    gap: 36px;
    width: 100%;
}
.welcome img {
    display: block;
    margin: 0 auto 0 auto;
    width: 100%;
    max-width: 340px;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.welcome-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(196, 164, 132, 0.13);
    padding: 28px 18px 22px 18px;
    max-width: 600px;
    width: 94vw;
    margin: 0 auto;
    text-align: center;
    font-size: 1.08em;
    color: #333;
}
.welcome-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #C4A484;
    margin-bottom: 16px;
    margin-top: 0;
    letter-spacing: 1px;
    text-align: center;
}
.about-paragraph {
    font-family: 'Playfair Display', serif;
    font-size: 1.13rem;
    line-height: 1.6;
    color: #444;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}
.about-paragraph p {
    margin-bottom: 18px;
}
.discover-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 18px;
    background-color: #C4A484;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-top: 18px;
    transition: background-color 0.3s ease;
}
.discover-btn:hover {
    background-color: #b39373;
}
.offers {
    padding: 40px 20px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.offers-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #C4A484;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.offers-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}
.footer {
    background-color: #E5E4E2;
    color: #666;
    padding: 40px 20px 20px;
    margin-top: 50px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-section {
    flex: 1;
    min-width: 250px;
}
.footer-logo {
    max-width: 300px;
}
.footer-logo-img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}
.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.footer-section p {
    margin: 10px 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: #C19A6B;
}
.social-links {
    display: flex;
    gap: 20px;
}
.social-links a {
    color: #666;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: #C19A6B;
}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #000;
}
.footer-bottom p {
    font-size: 0.9rem;
    color: #666;
    opacity: 0.8;
}
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.offer-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
.offer-card:hover {
    transform: translateY(-5px);
}
.offer-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}
.offer-card h3 {
    font-family: 'Playfair Display', serif;
    color: #C4A484;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.offer-card p {
    font-family: 'Playfair Display', serif;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}
@media (max-width: 477px) {
  .welcome {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    gap: 56px !important;
    padding: 0 !important;
    width: 100% !important;
    text-align: center !important;
  }
  .welcome img {
    margin: 0 auto 0 auto !important;
    display: block !important;
    max-width: 90vw !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07) !important;
  }
  .welcome-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(196, 164, 132, 0.13);
    padding: 28px 14px 22px 14px;
    font-size: 1em;
    width: 94vw;
    max-width: 99vw;
    margin: 0 auto;
    margin-top: 0;
    text-align: center;
    color: #333;
  }
  .welcome-text {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  .about-paragraph {
    font-size: 1em;
  }
}
@media (min-width: 478px) {
  .welcome {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 80px;
    padding: 20px;
    margin: 40px 0 0 0;
    width: 100%;
  }
  .welcome img {
    margin: 0;
    max-width: 350px;
    width: 350px;
    height: 350px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  }
  .welcome-content {
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    max-width: 600px;
    width: auto;
    margin: 0;
    text-align: left;
    font-size: 1.13rem;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .welcome-text {
    font-size: 2rem;
    color: #C4A484;
    margin-bottom: 16px;
    margin-top: 0;
    letter-spacing: 1px;
    text-align: left;
  }
  .about-paragraph {
    font-size: 1.13rem;
    line-height: 1.6;
    color: #444;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
  }
  .about-paragraph p {
    margin-bottom: 18px;
  }
  .discover-btn {
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
    margin-top: 18px;
  }
}

/* === Migrated from marbre-ascale.html <style> block === */
.parallax-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    perspective: 1000px;
    background: url('Img/Ascale/heading.png') no-repeat center 10%;
    background-size: 80%;
    background-attachment: fixed;
    transform-style: preserve-3d;
}

.parallax-hero::before {
    display: none; /* Override the global style */
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

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

.products-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
  html, body {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  #main-container, .main-container, .container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
  }
  body {
    font-size: 15px;
  }
  #header {
    padding: 8px 6px;
  }
  .logo {
    width: 65px;
  }
  .container {
    max-width: 98vw;
    padding: 0 2vw;
  }
  .slider-wrapper {
    height: 180px;
    min-height: 140px;
  }
  .slide {
    height: 180px;
  }
  .slide img {
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
  .overlay {
    padding: 8px 6px;
    width: 98vw;
    max-width: 99vw;
    font-size: 1em;
  }
  .overlay h1 {
    font-size: 1.1em;
    margin-bottom: 6px;
  }
  .overlay p {
    font-size: 0.95em;
    margin-bottom: 8px;
  }
  .overlay .discover-btn {
    padding: 7px 10px;
    font-size: 0.95em;
    min-width: 120px;
  }
  .tabbed-section {
    padding: 10px 2vw;
  }
  .tabs {
    flex-direction: column;
    gap: 8px;
  }
  .tab-item {
    padding: 8px;
  }
  .tab-item img {
    width: 32px;
    height: 32px;
  }
  .tab-item span {
    font-size: 13px;
  }
  .tab-description {
    font-size: 12px;
    padding: 0 2px;
  }
  .background-image-section {
    min-height: 250px;
    padding: 8px 2vw;
    gap: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100vw;
    box-sizing: border-box;
  }
  .background-image-section > * {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .background-image-section .background-img,
  .background-image-section .ascale-img,
  .background-image-section .importation-img,
  .background-image-section .local-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  .background-image-section .ascale-title,
  .background-image-section .importation-title,
  .background-image-section .local-title,
  .background-image-section .overlay-text {
    text-align: center;
    width: 100%;
  }
  .background-image-section {
    min-height: 350px;
    padding: 24px 2vw 24px 2vw;
    gap: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100vw;
    box-sizing: border-box;
  }
  .background-image-section .background-img {
    display: block;
    margin: 0 auto 12px auto;
    height: 160px;
    max-width: 95vw;
    border-radius: 12px;
    object-fit: cover;
  }
  .background-image-section .ascale-img,
  .background-image-section .importation-img,
  .background-image-section .local-img {
    display: block;
    margin: 18px auto 0 auto;
    height: 110px;
    max-width: 90vw;
    border-radius: 12px;
    object-fit: cover;
  }
  .background-image-section .ascale-title,
  .background-image-section .importation-title,
  .background-image-section .local-title {
    font-size: 2em;
    margin: 10px 0 18px 0;
    text-align: center;
    font-weight: 900;
    letter-spacing: 1.5px;
    line-height: 1.1;
  }
  .background-image-section .overlay-text {
    font-size: 2.4em;
    margin-bottom: 18px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.1;
  }
  #mobile {
    display: flex;
    padding: 0 2px 0 0;
    justify-content: flex-end;
    align-items: center;
  }
  #bar {
    font-size: 22px;
    padding-left: 4px;
    padding-right: 0;
    margin-right: 0;
  }
  #navbar {
    width: 120px;
    padding-right: 0;
    padding-left: 0;
    top: 50px;
    font-size: 11px;
    max-height: 60vh;
    height: auto;
    overflow-y: auto;
  }
  #navbar li {
    margin-bottom: 3px;
    padding: 0 2px;
  }
  #navbar li a {
    font-size: 11px;
    padding: 1px 0;
  }
  .dropdown .submenu {
    font-size: 10px;
    padding: 1px 0;
  }
}

@media (max-width: 480px) {
  #navbar {
    width: 90px;
    padding: 0;
    top: 40px;
    font-size: 9px;
    max-height: 30vh;
    height: auto;
    overflow-y: auto;
    box-shadow: none;
    background: #E5E4E2;
  }
  #navbar li {
    margin-bottom: 1px;
    padding: 0 1px;
  }
  #navbar li a {
    font-size: 9px;
    padding: 0;
  }
  .dropdown .submenu {
    font-size: 8px;
    padding: 0;
  }
}

@media (max-width: 480px) {
  #header {
    position: relative;
  }
  #mobile {
    display: flex;
    position: absolute;
    right: 10px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    z-index: 1001;
  }
  #bar {
    font-size: 22px;
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .background-image-section {
    min-height: 380px;
    padding: 32px 2vw 32px 2vw;
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100vw;
    box-sizing: border-box;
    background: #fff;
  }
  .background-image-section .background-img {
    display: block;
    margin: 0 auto 18px auto;
    height: 140px;
    max-width: 95vw;
    border-radius: 14px;
    object-fit: cover;
  }
  .background-image-section .overlay-text {
    font-size: 2.2em;
    margin-bottom: 18px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.1;
  }
  .background-image-section .ascale-img,
  .background-image-section .importation-img,
  .background-image-section .local-img {
    display: block;
    margin: 24px auto 0 auto;
    height: 90px;
    max-width: 90vw;
    border-radius: 12px;
    object-fit: cover;
  }
  .background-image-section .ascale-title,
  .background-image-section .importation-title,
  .background-image-section .local-title {
    font-size: 1.3em;
    margin: 12px 0 24px 0;
    text-align: center;
    font-weight: 900;
    letter-spacing: 1.5px;
    line-height: 1.1;
  }
}

@media (max-width: 480px) {
  .background-image-section {
    font-size: 0.95em;
    text-align: center;
  }
  .background-image-section .overlay-text,
  .background-image-section .ascale-title,
  .background-image-section .importation-title,
  .background-image-section .local-title {
    font-size: 1em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .background-image-section .background-img,
  .background-image-section .ascale-img,
  .background-image-section .importation-img,
  .background-image-section .local-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .background-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5em 0 1.5em 0;
    gap: 0;
    background: none;
  }
  .background-image-section .ascale-img,
  .background-image-section .importation-img,
  .background-image-section .local-img {
    display: block;
    max-width: 95vw;
    width: auto;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .background-image-section .ascale-img,
  .background-image-section .importation-img {
    margin-bottom: 2em;
  }
}

@media (max-width: 600px) {
  .background-image-section .ascale-img,
  .background-image-section .importation-img,
  .background-image-section .local-img {
    background: none;
    box-shadow: none;
  }
}

@media (max-width: 600px) {
  .background-image-section .background-img {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .background-image-section .local-img {
    display: block;
    margin-left: 30vw;
    margin-right: 0;
    max-width: 50vw;
    width: 100%;
    height: auto;
    border-radius: 1em;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .mobile-products-heading {
    display: block;
    font-size: 1.4em;
    text-align: center;
    margin: 1.2em 0 0.8em 0;
    color: #C4A484;
    font-family: 'Richgold Bold', serif;
    font-weight: 900;
    letter-spacing: 1.5px;
  }
  .background-image-section .overlay-text {
    display: none !important;
  }
}

@media (min-width: 601px) {
  .mobile-products-heading {
    display: none;
  }
}

@media (max-width: 600px) {
  .background-image-section .ascale-img,
  .background-image-section .importation-img {
    margin-bottom: 2em;
  }
}

@media (max-width: 600px) {
  .background-image-section .importation-img {
    margin-left: 0;
    margin-right: auto;
    max-width: 90vw;
    width: auto;
    height: auto;
    display: block;
  }
}

@media (max-width: 600px) {
  body #navbar {
    width: 60px !important;
    font-size: 10px !important;
    padding: 0 !important;
  }
  body #navbar li {
    padding: 0 2px !important;
    margin-bottom: 2px !important;
  }
  body #navbar li a {
    font-size: 10px !important;
    padding: 1px 0 !important;
  }
  body .dropdown .submenu {
    font-size: 9px !important;
    padding: 1px 0 !important;
  }
}

@media (max-width: 480px) {
  .overlay {
    background: rgba(0, 0, 0, 0.28) !important;
    color: #fff !important;
    padding: 18px 10px !important;
    width: 96vw !important;
    max-width: 99vw !important;
    font-size: 1em !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.13) !important;
  }
  .overlay h1 {
    font-size: 1.15em !important;
    margin-bottom: 8px !important;
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.18) !important;
  }
  .overlay p {
    font-size: 0.98em !important;
    margin-bottom: 10px !important;
    color: #fff !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.13) !important;
  }
  .overlay .discover-btn {
    padding: 8px 12px !important;
    font-size: 0.98em !important;
    min-width: 120px !important;
  }
}
