/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-overlay {
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    color: white;
}

.editorial-kicker {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.editorial-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 500px;
}

.cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-ctas {
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-brass {
    background-color: #d4af37;
    color: #1a1a1a !important;
}

.btn-brass:hover {
    background-color: #e5c158;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #d4af37;
}

.btn-ghost {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-footnote {
    font-size: 0.875rem;
    opacity: 0.85;
}

.hero-experiences {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-experience-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
}

.experience-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-line {
    width: 2px;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-line-vertical {
    width: 2px;
    height: 2rem;
}

.card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-meta {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.card-body {
    padding: 1.5rem;
}

.card-body p {
    margin: 0;
    line-height: 1.6;
    color: #fff;
}

.card-footer {
    padding: 1rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-badge {
    color: #1a1a1a;
}

/* Maison Section */
.maison {
    background-color: #f9f8f6;
}

.section-header {
    margin-bottom: 3rem;
}

.stack-sm {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stack-md {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.editorial-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d4af37;
    margin: 0;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #1a1a1a;
}

.section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.maison-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.maison-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    overflow: hidden;
}

.shadow-parallax {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.radius-xl {
    border-radius: 1rem;
}

.maison-image picture {
    display: block;
    width: 100%;
}

.maison-image img {
    width: 100%;
    height: auto;
    display: block;
}

.maison-text {
    padding: 2rem;
}

.maison-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #1a1a1a;
}

.maison-text p {
    margin: 0;
    color: #333;
    line-height: 1.8;
}

.maison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.maison-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tag-pill {
    display: inline-block;
    background-color: #d4af37;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    width: fit-content;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.link-arrow:hover {
    gap: 1rem;
}

.link-arrow::after {
    content: "→";
}

/* Cuisine Section */
.cuisine {
    background-color: white;
}

.cuisine-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cuisine-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.cuisine-card {
    color: #1a1a1a;
}

.cuisine-card p { color:#ccc; }

.cuisine-aside {
    padding: 2rem;
}

.cuisine-aside h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #1a1a1a;
}

.cuisine-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cuisine-list li {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cuisine-list p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.text-muted {
    color: #666;
    font-size: 0.95rem;
}

/* Soirées Section */
.soirees {
    background-color: #1a1a1a;
    color: white;
    position: relative;
}

.soirees-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.soirees-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.soirees-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.soirees-inner {
    position: relative;
    z-index: 1;
}

.soirees-inner p, .soirees-inner h2 {
    color: #ccc;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.soiree-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.soiree-card .card-header,
.soiree-card .card-body,
.soiree-card .card-footer {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: transparent;
}

.soiree-card .card-meta {
    color: #d4af37;
}

.soiree-card .card-title {
    color: white;
}

.soiree-card .card-body p {
    color: #ccc;
}

.soirees-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.flex-between {
    justify-content: space-between;
}

.soirees-footer .text-muted {
    color: rgba(255, 255, 255, 0.7);
}

/* Actes Section */
.actes {
    background-color: #f9f8f6;
}

.actes-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.acte-panel {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 0.5rem;
}

.acte-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.acte-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.acte-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acte-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    width: 100%;
}

.acte-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d4af37;
    margin-bottom: 1rem;
}

.acte-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.acte-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    color:#f9f8f6;
}

.acte-i,
.acte-ii,
.acte-iii {
    border-radius: 0.5rem;
}

/* Événements Section */
.evenements {
    background-color: white;
}

.evenements-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.evenements-intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.evenements-intro h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.evenements-intro p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #333;
}

.evenements-gallery {
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
}

.gallery-item {
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.layout-full-bleed {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.section {
    padding: 4rem 0;
}

.pt-section {
    padding-top: 4rem;
}

.pb-section {
    padding-bottom: 4rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .editorial-title {
        font-size: 2.5rem;
    }

    .maison-layout,
    .cuisine-layout,
    .evenements-layout {
        grid-template-columns: 1fr;
    }

    .maison-grid,
    .grid-2,
    .grid-3,
    .actes-panels {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    .editorial-title {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 1rem;
    }

    .maison-grid,
    .grid-2,
    .grid-3,
    .actes-panels {
        grid-template-columns: 1fr;
    }

    .soirees-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .editorial-title {
        font-size: 1.75rem;
    }

    .hero-experiences {
        margin-top: 2rem;
    }

    .cluster {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}
