/* Styles spécifiques pour la page Acteurs */

/* Variables spécifiques pour la page acteurs */
:root {
    --color-beige-clair: #f8f5f2;
    --color-beige-moyen: #e9e5e0;
    --color-taupe: #a39b92;
    --color-brun: #5a4f45;
    --color-noir: #1a1a1a;
    --color-gold: #d4a76a;
}

/* Hero Section Acteurs */
.acteurs-hero {
    height: 100vh;
    background-image: url('../images/acteurs/CRISTALLERIE_acteurs.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--color-white);
    overflow: hidden;
}

@media (max-width: 768px) {
    .acteurs-hero {
        height: 80vh;
        background-position: 60% center;
    }
}

@media (max-width: 576px) {
    .acteurs-hero {
        height: 70vh;
    }
}

.acteurs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.acteurs-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 0 40px 80px;
    margin-left: 40px;
}

.acteurs-hero .location {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 40px;
    color: var(--color-white);
    opacity: 0.8;
}

.acteurs-hero .hero-logo {
    height: 30px;
    width: auto;
    filter: brightness(1.2);
}

.acteurs-hero .main-title h1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 120px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 0.9;
}

.acteurs-hero .tagline {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-white);
    opacity: 0.8;
    text-transform: none;
    font-style: italic;
}

.acteurs-hero .hero-footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-white);
    opacity: 0.8;
    z-index: 1;
}

/* Section Acteurs */
.acteurs-section {
    padding: 120px 0;
    background-color: #F7F3F0;
    position: relative;
    overflow: hidden;
    color: #3C3026;
}

.acteurs-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.acteurs-section .acteurs-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: #3C3026;
    margin-bottom: 40px;
    text-align: left;
}

.acteurs-section .acteurs-title .inter-tight {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
}

.acteurs-section .acteurs-intro {
    font-family: var(--font-secondary);
    font-size: 20px;
    line-height: 1.6;
    color: #3C3026;
    margin-bottom: 80px;
    max-width: 900px;
    text-align: left;
    opacity: 1; /* Visible par défaut */
    transform: translateY(0); /* Position normale par défaut */
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.acteurs-section .acteurs-intro.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Spacer entre hero et sections d'acteurs */
.spacer {
    height: 60px;
    background-color: #F7F3F0;
}

/* Contenu de la section acteurs */
.acteurs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
    position: relative;
    margin-bottom: 120px;
}

.acteurs-content:last-child {
    margin-bottom: 0;
}

.acteurs-content.reversed {
    direction: rtl;
}

.acteurs-content.reversed > * {
    direction: ltr;
}

.acteur-image {
    position: relative;
    grid-column: 1;
    grid-row: 1 / span 2;
}

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

.acteur-text {
    grid-column: 2;
    grid-row: 1;
}

.acteur-description h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.acteur-description p {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.8;
    color: #3C3026;
    margin-bottom: 20px;
}

.acteur-image-small {
    grid-column: 2;
    grid-row: 2;
    margin-top: 30px;
    max-width: 70%;
    justify-self: end;
}

.acteurs-content.reversed .acteur-image-small {
    justify-self: start;
}

.acteur-image-small img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-container {
    margin-top: 30px;
}

/* Style pour les boutons avec cercle doré */
.btn-savoir-plus {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-savoir-plus span {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-brun);
    margin-right: 15px;
}

.btn-circle-gold {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a977 0%, #e8b87d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-circle-gold img {
    width: 20px;
    height: 20px;
}

.btn-savoir-plus:hover .btn-circle-gold {
    transform: translateX(5px);
}

/* Section Promoteur */
.promoteur-section {
    padding: 100px 0;
    background-color: #f7f3f0;
    color: #0b2026;
    position: relative;
    overflow: hidden;
    opacity: 1; /* Visible par défaut */
    transform: translateY(0); /* Position normale par défaut */
    transition: opacity 1s ease, transform 1s ease;
}

.promoteur-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.promoteur-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.promoteur-title {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(11, 32, 38, 0.7);
    margin-bottom: 10px;
    text-align: center;
}

.promoteur-heading {
    font-family: 'Inter Tight', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #0b2026;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 1px;
}

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

.promoteur-logo {
    margin-bottom: 30px;
}

.promoteur-logo img {
    max-width: 120px;
    height: auto;
}

.promoteur-text {
    padding-right: 20px;
}

.promoteur-text p {
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(11, 32, 38, 0.8);
}

.promoteur-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-site-web {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #0b2026;
    text-decoration: none;
    margin-top: 30px;
    transition: color 0.3s ease;
}

.commercialisation-section .btn-site-web {
    color: white;
}

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: white;
    margin-left: 10px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-site-web:hover {
    color: rgba(11, 32, 38, 0.7);
}

.commercialisation-section .btn-site-web:hover {
    color: rgba(255, 255, 255, 0.7);
}

.btn-site-web:hover .arrow-circle {
    transform: translateX(5px);
}

/* Section Architecture */
.architecture-section {
    padding: 100px 0;
    background-color: #ffffff;
    color: #0b2026;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}

.architecture-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.architecture-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.architecture-title {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(11, 32, 38, 0.7);
    margin-bottom: 10px;
    text-align: center;
}

.architecture-heading {
    font-family: 'Inter Tight', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #0b2026;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 1px;
}

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

.architecture-logo {
    margin-bottom: 30px;
}

.architecture-logo img {
    max-width: 120px;
    height: auto;
    border-radius: 4px;
}

.architecture-text {
    padding-right: 20px;
}

.architecture-text p {
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(11, 32, 38, 0.8);
}

.architecture-text p strong {
    font-weight: 600;
    color: #0b2026;
}

.architecture-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Section Commercialisation */
.commercialisation-section {
    padding: 100px 0;
    background-color: #0b2026;
    color: white;
    position: relative;
    overflow: hidden;
    opacity: 1; /* Visible par défaut */
    transform: translateY(0); /* Position normale par défaut */
    transition: opacity 1s ease, transform 1s ease;
}

.commercialisation-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.commercialisation-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.commercialisation-title {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    text-align: center;
}

.commercialisation-heading {
    font-family: 'Inter Tight', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: white;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 1px;
}

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

.commercialisation-text {
    padding-right: 20px;
}

.commercialisation-logo {
    margin-bottom: 30px;
}

.commercialisation-logo img {
    max-width: 120px;
    height: auto;
}

.commercialisation-text p {
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.commercialisation-image {
    grid-column: 2;
    grid-row: 1 / span 2;
}

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

.commercialisation-section .btn-site-web {
    color: #0b2026;
}

.commercialisation-section .arrow-circle {
    background-color: #0b2026;
    color: white;
}

.commercialisation-section .btn-site-web:hover {
    color: var(--color-gold);
}

/* Section Consulter les disponibilités */
.disponibilites-section {
    background-color: #e0b77c;
    background-image: linear-gradient(135deg, #e0b77c, #d6a05e);
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
    min-height: 400px;
    position: relative;
}

.disponibilites-section .background-letter {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Tan Pearl', serif;
    font-size: 550px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.07);
    line-height: 0.7;
    z-index: 1;
    pointer-events: none;
}

.disponibilites-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.disponibilites-section h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
}

.btn-disponibilites {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background-color: #ffffff;
    color: #d6a05e;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-disponibilites .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-disponibilites:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-disponibilites:hover .arrow {
    transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .acteurs-content {
        gap: 40px;
    }
    
    .promoteur-content {
        gap: 40px;
    }
    
    .architecture-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .acteurs-hero .main-title h1 {
        font-size: 90px;
    }
    
    .acteurs-section .acteurs-title {
        font-size: 36px;
    }
    
    .acteurs-content {
        grid-template-columns: 1fr;
        grid-gap: 40px;
        margin-bottom: 80px;
    }
    
    .acteurs-content.reversed {
        direction: ltr;
    }
    
    .acteur-image {
        grid-column: 1;
        grid-row: 1;
    }
    
    .acteur-text {
        grid-column: 1;
        grid-row: 2;
    }
    
    .acteur-image-small {
        grid-column: 1;
        grid-row: 3;
        justify-self: start;
        max-width: 100%;
    }
    
    .promoteur-content {
        flex-direction: column;
        text-align: center;
    }
    
    .promoteur-logo {
        margin-bottom: 30px;
    }
    
    .architecture-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .architecture-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .acteurs-hero .main-title h1 {
        font-size: 70px;
    }
    
    .acteurs-hero .hero-content {
        padding: 0 20px 60px;
        margin-left: 20px;
    }
    
    .acteurs-section {
        padding: 80px 0;
    }
    
    .acteurs-section .container {
        padding: 0 20px;
    }
    
    .acteurs-section .acteurs-title {
        font-size: 28px;
    }
    
    .acteur-description h3 {
        font-size: 24px;
    }
    
    .acteur-description p {
        font-size: 15px;
    }
    
    .promoteur-section {
        padding: 60px 0;
    }
    
    .promoteur-section .container {
        padding: 0 20px;
    }
    
    .promoteur-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .promoteur-text {
        order: 2;
    }
    
    .promoteur-image {
        order: 1;
    }
    
    .promoteur-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }
    
    .promoteur-text h2 {
        font-size: 28px;
    }
    
    .promoteur-text p {
        font-size: 15px;
    }
    
    .architecture-section {
        padding: 60px 0;
    }
    
    .architecture-section .container {
        padding: 0 20px;
    }
    
    .architecture-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .architecture-text {
        order: 2;
        padding-right: 0;
    }
    
    .architecture-image {
        order: 1;
    }
    
    .architecture-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }
    
    .architecture-text p {
        font-size: 15px;
    }
    
    .commercialisation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .commercialisation-image {
        order: 1;
    }
    
    .commercialisation-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }
    
    .commercialisation-text {
        order: 2;
        padding-right: 0;
    }
    
    .disponibilites-section h2 {
        font-size: 32px;
    }
    
    .disponibilites-section .background-letter {
        font-size: 350px;
    }
}

@media (max-width: 576px) {
    .acteurs-hero .main-title h1 {
        font-size: 50px;
    }
    
    .acteurs-hero .location {
        font-size: 14px;
    }
    
    .acteurs-hero .tagline {
        font-size: 16px;
    }
    
    .acteurs-section .acteurs-title {
        font-size: 24px;
    }
    
    .acteur-description h3 {
        font-size: 20px;
    }
    
    .acteur-description p {
        font-size: 14px;
    }
    
    .promoteur-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .promoteur-title {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .promoteur-text h2 {
        font-size: 24px;
    }
    
    .promoteur-text p {
        font-size: 14px;
    }
    
    .architecture-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .architecture-title {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .architecture-text p {
        font-size: 14px;
    }
    
    .architecture-logo img {
        max-width: 100px;
    }
    
    .commercialisation-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .commercialisation-title {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .commercialisation-text p {
        font-size: 14px;
    }
    
    .commercialisation-logo img,
    .promoteur-logo img {
        max-width: 100px;
    }
    
    .disponibilites-section {
        padding: 60px 0;
    }
    
    .disponibilites-section h2 {
        font-size: 28px;
    }
    
    .btn-disponibilites {
        padding: 12px 25px;
        font-size: 13px;
        width: 80%;
        text-align: center;
        justify-content: center;
    }
    
    .spacer {
        height: 40px;
    }
}
