/* ========================================
   SØNARK - Styles Communs
   ======================================== */

/* Reset et variables */
:root {
    --color-gold: #c9a66c;
    --color-gold-light: #d4b78a;
    --color-dark: #1a1a2e;
    --color-purple: #2d1b4e;
    --color-cream: #faf8f5;
    --color-beige: #f5f0e8;
    --color-text: #3d3d3d;
    --color-text-light: #6b6b6b;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-cream);
}

/* ========================================
   Navigation
   ======================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    padding: 1rem 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

/* Navigation transparente pour pages internes */
nav.nav-light {
    background: rgba(250, 248, 245, 0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

nav.nav-light .nav-links a {
    color: var(--color-text);
}

nav.nav-light .menu-toggle span {
    background: var(--color-text);
}

.nav-logo {
    height: 50px;
    transition: height 0.3s ease;
}

nav.scrolled .nav-logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-cream);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

nav.scrolled .nav-links a {
    color: var(--color-text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-cream);
    transition: all 0.3s ease;
}

nav.scrolled .menu-toggle span {
    background: var(--color-text);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-purple) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/espace1.png') center center / cover no-repeat;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-logo {
    max-width: 350px;
    margin-bottom: 2rem;
    animation: pulse 4s ease-in-out infinite, fadeInUp 1s ease;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--color-gold);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--color-gold);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

/* Page Header (pour pages internes) */
.page-header {
    padding: 160px 10% 80px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-purple) 100%);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/Logo SONARK fond spirituel.jpg') center center / cover no-repeat;
    opacity: 0.15;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: white;
    letter-spacing: 3px;
    position: relative;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

/* ========================================
   Sections générales
   ======================================== */
section {
    padding: 100px 10%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.section-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.9;
    color: var(--color-text-light);
}

/* Sections avec fond alterné */
.section-cream {
    background: var(--color-cream);
}

.section-beige {
    background: var(--color-beige);
}

.section-dark {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-purple) 100%);
    color: white;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/Logo SONARK fond spirituel.jpg') center center / cover no-repeat;
    opacity: 0.15;
}

.section-dark .section-title {
    color: white;
    position: relative;
}

.section-dark .section-text {
    color: rgba(255,255,255,0.85);
    position: relative;
}

/* ========================================
   Grilles et layouts
   ======================================== */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.concept-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.concept-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.concept-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--color-gold);
    fill: none;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.feature-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Content Box */
.content-box {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    z-index: 1;
}

.content-box h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.steps-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,166,108,0.25);
    border-radius: 12px;
    padding: 28px;
}

.steps-box p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
}

.steps-box p:last-child {
    margin-bottom: 0;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.two-column img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.two-column-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

/* Liste avec puces dorées */
.golden-list {
    list-style: none;
    margin: 1.5rem 0;
}

.golden-list li {
    padding: 0.5rem 0;
    padding-left: 25px;
    position: relative;
    color: var(--color-text-light);
}

.golden-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Gift Cards */
.gift-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    position: relative;
}

.gift-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 166, 108, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    text-align: center;
}

.gift-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.gift-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.gift-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.gift-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

/* Reservation Grid */
.reservation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.reservation-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
}

.reservation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.reservation-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 0.8rem;
}

.reservation-card .duration {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.reservation-card .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

/* ========================================
   Boutons
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: var(--color-gold);
    color: white;
}

.btn-primary {
    background: var(--color-gold);
    color: white;
}

.btn-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

/* ========================================
   Contact
   ======================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-gold);
    fill: none;
}

.contact-item span {
    color: var(--color-text);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text);
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
}

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

/* ========================================
   Footer
   ======================================== */
footer {
    background: var(--color-dark);
    color: white;
    padding: 60px 10% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--color-gold);
    background: var(--color-gold);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: rgba(255,255,255,0.6);
    transition: fill 0.3s ease;
}

.social-links a:hover svg {
    fill: white;
}

/* ========================================
   Utilitaires
   ======================================== */
.disclaimer {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.8;
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

/* ========================================
   Animations
   ======================================== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.95;
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1200px) {
    .gift-cards,
    .reservation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .concept-grid,
    .two-column,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: white !important;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header {
        padding: 120px 5% 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .hero-logo {
        max-width: 250px;
    }

    .services-grid,
    .features-grid,
    .gift-cards,
    .cards-grid,
    .reservation-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
