
.logo {
     display: flex;
     align-items: center;
     text-decoration: none;
     font-family: 'Playfair Display', serif;
     transition: all 0.3s ease;
     color: var(--primary-color);
 }

.logo:hover {
}

/* Image Styling */
.logo-img {
    height: 120px;      /* large and bold */
    width: auto;
    filter: brightness(1.1) contrast(1.05);
    margin-bottom: 0.8rem;
}

/* Text Styling with Silver Effect */
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;

    background: linear-gradient(145deg, #dcdcdc, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Add subtle shine with text shadow */
    text-shadow:
            0 1px 1px rgba(255, 255, 255, 0.4),
            0 2px 2px rgba(0, 0, 0, 0.15);
}


.hero {
    height: 100vh;
    background: var(--gradient-hero),
    url('../assets/img/bannerhero.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 30% 70%, rgba(46, 79, 79, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(201, 179, 126, 0.08) 0%, transparent 50%),
            linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top:400PX ;
    max-width: 800px;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: 'Montserrat Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--warm-beige);
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(46, 79, 79, 0.1);
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
}

.hero p {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--gradient-mineral);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-mineral);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 179, 126, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent-color);
    background: var(--gradient-gold);
    color: var(--text-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1000;
}

.scroll-indicator:hover {
    color: var(--primary-color);
}

.section {
    padding: 120px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--gradient-marble);
}

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

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

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 80px 0;
}

.feature-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-marble);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 179, 126, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 179, 126, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(201, 179, 126, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;

}

.feature-icon:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: var(--primary-color);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Enhanced Product Showcase */
.product-showcase {
    background: var(--gradient-mineral);
    color: var(--white);
    position: relative;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9B37E' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
    z-index: 1;
}

.product-row:nth-child(even) {
    direction: rtl;
}

.product-row:nth-child(even) > * {
    direction: ltr;
}

.product-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    border: 3px solid rgba(201, 179, 126, 0.3);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(201, 179, 126, 0.1) 0%, transparent 50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-image:hover::before {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image:hover img {
    transform: scale(1.08);
}

.product-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.product-content p {
    font-size: 1.2rem;
    color: var(--primary-color);;
    line-height: 1.7;
    margin-bottom: 32px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-marble);
}

.product-btn:hover {
    background: var(--gradient-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: var(--white);
}

/* Enhanced Global Presence */
.global-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.global-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 179, 126, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.global-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.global-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.global-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-marble);
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}
@media (max-width: 768px) {
    .logo {
        justify-content: center;
    }

    .logo-img {
        height: 80px;
        margin-bottom: 0.5rem;
    }

    .logo-text {
        font-size: 2rem;
        letter-spacing: 1px;
    }
}
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        padding: 0 16px;
    }

    .hero-content {
        margin-top: 150px;
        max-width: 100%;
        padding: 0 5px;
    }

    .hero h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1rem;
        max-width: 90%;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 40px 0;
    }

    .feature-card {
        padding: 32px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .product-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-row:nth-child(even) {
        direction: ltr; /* pour éviter inversion sur mobile */
    }

    .product-image img {
        height: 250px;
    }

    .product-content h3 {
        font-size: 2rem;
    }

    .product-content p {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .global-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .global-text h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .stat-item {
        padding: 24px 16px;
    }
}
@media (max-width: 480px) {
    .section {
        padding: 60px 16px;
    }

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

    .section-title h2 {
        font-size: 2rem;
    }
}
/* Responsive : tablettes (max-width 1024px) */
@media (max-width: 1024px) {
    .hero {
        height: 80vh;
        background-position: center center;
    }

    .hero-content {
        margin-top: 250px;
        max-width: 600px;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 90%;
    }
}

/* Responsive : mobiles (max-width 768px) */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        margin-top: 0;
        max-width: 90%;
        padding: 0 10px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.1;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .hero {
        background-size: cover;   /* show full image */
        background-position: center center  ;
        height: 50vh;               /* adjust height as needed */
        background-repeat: no-repeat;
    }
}
/* --- NAVBAR --- */
.navbar {
    position: fixed;
    left: 0;
    width: 100%;
    background-color: transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: top 0.4s ease, opacity 0.4s ease;
}

.navbar.visible {
    background-color: white;
    opacity: 1;
    pointer-events: auto;
}

.logo-wrapper {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    font-weight: 900;
    z-index: 1001;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #2c3e50;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.logo-wrapper.scrolled {
    position: fixed;
    top: 40px;
    left: 30%;
    transform: translateY(-50%) scale(0.5);
    font-size: 32px;
    gap: 10px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo-img {
    width: 200px;
    height: auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

}

.logo-wrapper.scrolled .logo-img {
    width: 200px;
}
.logo-wrapper.scrolled .logo-text {
    background: var(--text-dark);
    z-index: 1002;
    -webkit-background-clip: text;

}

.logo-text {
    background: whitesmoke;
    font-size: 100px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: 4px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;

    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo-wrapper:hover .logo-text::after {
    transform: scaleX(1);
}
/* Mobile phones */
@media (max-width: 480px) {
    .logo-wrapper {
        top: 25%;
        font-size: 6vw;
        gap: 1vw;
    }

    .logo-wrapper.scrolled {
        top: 40px;
        left: 0%;
        font-size: 3vw;
        gap: 0.5vw;
    }

    .logo-img {
        width: 40vw;
        max-width: 140px;
    }
    .logo-text {
        font-size: 17vw;

    }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .logo-wrapper {
        top: 28%;
        font-size: 7vw;
        gap: 1.2vw;
    }

    .logo-wrapper.scrolled {
        top: 35px;
        left: 20%;
        font-size: 3vw;
        gap: 0.75vw;
    }

    .logo-img {
        width: 30vw;
        max-width: 180px;
    }
}

/* Larger desktops */
@media (min-width: 1200px) {
    .logo-wrapper {
        font-size: 100px; /* fallback to original */
        gap: 20px;
    }

    .logo-wrapper.scrolled {
        font-size: 32px;
        gap: 10px;
    }

    .logo-img {
        width: 200px;
    }
}