/* ---------- RESET & VARIABLES ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F8F5F2;
    color: #2C2A2A;
    line-height: 1.5;
}

/* Suppression absolue de tous les angles ronds */
.navbar, .navbar-brand, .nav-link, .btn, .card, .destination-card, .feature-card, 
.step-card, .testimonial-card, .contact-form, .form-control, footer, img,
.hero-section, .hero-overlay, .container, .row, .col, section, .price-badge,
.gallery-item, .stat-item, .pill-icon, button, .btn-primary, .btn-outline-light,
.btn-outline-dark-sm, .form-select {
    border-radius: 0 !important;
}

/* Typographie raffinée scandinave : Inter (sans) + Cormorant Garamond (serif) */
h1, h2, h3, h4, .serif, .navbar-brand, .step-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}
h1 { font-size: 4rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 2.8rem; margin-bottom: 2.2rem; margin-top: 1.4rem; font-weight: 600; }
h3 { font-size: 1.4rem; }
.section-subhead {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #5C7C6E;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

section{
    box-shadow: 0 0px 1px rgba(50,50,50,0.5);
}

/* Couleurs scandinaves */
:root {
    --cream: #FCF9F4;
    --pure-white: #FFFFFF;
    --sand: #F0EBE3;
    --sage: #5C7C6E;
    --dark-sage: #466355;
    --wood: #4A3F34;
    --charcoal: #3E3A37;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.appeared {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Navbar */
.navbar {
    background-color: var(--pure-white);
    padding: 1.2rem 0;
    border-bottom: 1px solid #E2DCD3;
    transition: all 0.25s;
}
.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.navbar-brand {
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--wood) !important;
}
.navbar-brand i {
    color: var(--sage);
    margin-right: 8px;
}
.nav-link {
    font-weight: 500;
    color: #2C2A2A !important;
    margin: 0 0.7rem;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}
.nav-link:hover {
    color: var(--sage) !important;
}

/* Hero parallax */
.hero {
    position: relative;
    min-height: 85vh;
    background-size: cover;
    background-position: center 25%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    margin-top: 78px;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(100deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 850px;
    margin: 0 auto;
}
.hero-content h1 {
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.btn-primary {
    background-color: var(--sage);
    border: none;
    color: white;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary:hover {
    background-color: var(--dark-sage);
    transform: translateY(-2px);
}
.btn-outline-light {
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: 12px 32px;
    font-weight: 600;
    transition: 0.2s;
}
.btn-outline-light:hover {
    background: white;
    color: var(--wood);
    border-color: white;
}

/* Sections */
section {
    padding: 100px 0;
}
.bg-soft {
    background-color: #FEFAF4;
}


/* Cartes destinations */
.destination-card {
    background: var(--pure-white);
    border:rgba(100,120,100,0.3) 1px solid;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
    transition:0.7s;
    text-align:center;
}
.destination-card:hover {
    border-color: var(--sage);
}
.destination-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.destination-card .card-body {
    padding: 50px 30px;
    flex: 1;
}

.destination-card .card-body p{
    margin-top:30px;    
    padding-top: 30px;
    border-top:rgba(100,100,100,0.5) 1px solid;
}

.price {
    font-weight: 700;
    font-size: 35px;
    color: var(--sage);
    margin: 18px 8px;
}

.btn-outline-dark-sm {
    background: transparent;
    border: 1px solid var(--wood);
    color: var(--wood);
    padding: 10px 20px;
    font-weight: 600;
    transition: 0.2s;
    text-align: center;
    width: 100%;
}

.btn-outline-dark-sm:hover {
    background: var(--wood);
    color: white;
}

/* Feature cards */
.feature-card {
    background: var(--pure-white);
    border:rgba(100,120,100,0.3) 1px solid;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #E6DFD6;
    transition: 0.2s;
    height: 100%;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
    transition:0.7s;
    text-align:center;
}

.feature-card p{
    margin-top:30px;    
    padding-top: 30px;
    border-top:rgba(100,100,100,0.5) 1px solid;
}
.feature-card i {
    font-size: 40px;
    background:rgba(100,200,100,0.01);
    color: var(--sage);
    padding: 2rem 2rem;
    border-radius:0%;
    margin-bottom: 1.5rem;
    border:rgba(100,120,100,0.15) 1px solid;
}
.feature-card:hover {
    border-color: var(--sage);
}

/* Step cards */
.step-card {
    background: var(--pure-white);
    border:rgba(100,120,100,0.3) 1px solid;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    text-align:center;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
    transition:0.7s;
}
.step-card:hover {
    border-color: var(--sage);
}
.step-card p{
    margin-top:30px;    
    padding-top: 30px;
    border-top:rgba(100,100,100,0.5) 1px solid;
}
.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sage);
    padding: 1rem;
    text-align:center;
    margin-bottom: 1.5rem;
    border:rgba(100,120,100,0.15) 1px solid;
}

/* Testimonials */
.testimonial-card {
    background: var(--pure-white);
    border:rgba(100,120,100,0.3) 1px solid;
    padding: 50px 40px;
    border: 1px solid #E6DFD6;
    height: 100%;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
    transition:0.7s;
    text-align:center;
}
.testimonial-card:hover {
    border-color: var(--sage);
}
.testimonial-card p{
    margin-top:30px;    
    border-bottom:rgba(100,100,100,0.5) 1px solid;
    padding: 30px 0px;
    margin-bottom:25px;
}

.testimonial-card i {
    font-size: 1.5rem;
    color: var(--sage);
    opacity: 0.6;
}
.stars {
    color: #D9B48B;
    margin-top: 1rem;
    letter-spacing: 2px;
}

/* Formulaire */
.contact-form {
    background: var(--pure-white);
    padding: 4rem 3.5rem;
    border: 1px solid #E6DFD6;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
    transition:0.7s;
}
.contact-form:hover {
    border-color: var(--sage);
}
.form-control, .form-select {
    border: 1px solid #DCD3C8;
    background-color: #FEFCF9;
    padding: 15px 18px;
    margin-top:10px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--sage);
    box-shadow: none;
}
.btn-submit {
    background: var(--wood);
    color: white;
    padding: 15px 10px;
    width: 100%;
    font-weight: 600;
    border: none;
    transition: 0.2s;
}
.btn-submit:hover {
    background: var(--charcoal);
}

/* Footer */
footer {
    background-color: #F0EBE3;
    padding: 3rem 0;
    border-top: 1px solid #E0D6CC;
    color: #4A3F34;
}
footer a {
    color: var(--sage);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    .hero { min-height: 70vh; margin-top: 68px; background-attachment: scroll; }
    .btn{
        width:80%;
        text-align:center;
    }
}
@media (max-width: 768px) {
    .hero-buttons { gap: 1rem; }
    .btn-primary, .btn-outline-light { padding: 16px 28px; font-size: 0.9rem; text-align:center; }
    section { padding: 70px 0; }
    .contact-form { padding: 1.8rem; }
    #mainNav {
        display:none;
    }
    .hero{
        margin-top: 0px;
    }
}
