
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Raleway:wght@400;600;700&display=swap');

:root {
    --rouge: #c31625;
    --rouge-dark: #8b0000;
    --vert: #8fae1c;
    --dark: #111111;
    --dark2: #1a1a1a;
    --light: #f9f5f0;
    --text: #333;
    --text-light: #666;
    --gold: #c8a84b;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Raleway', sans-serif;
}
body {
    font-family: var(--font-body);
    background-color: var(--light);
    background-image: url('images/fond.jpeg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--text);
    overflow-x: hidden;
}

/* ============================
   NAVBAR (Bootstrap override)
============================ */
.navbar {
    background-color: var(--dark) !important;
    padding: 0.9rem 1.5rem;
    border-bottom: 3px solid var(--rouge);
}

.navbar-brand img {
    height: 48px;
}

.nav-link {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.85) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease !important;
}

.nav-link:hover {
    color: var(--rouge) !important;
}

/* ============================
   HERO
============================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(160deg, #0a0a0a 0%, #1a0505 40%, #2a0808 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 50% 60%, rgba(195,22,37,0.18) 0%, transparent 70%),
        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='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(195,22,37,0.12) 0%, transparent 65%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 2rem;
    animation: fadeUp 1s ease both;
}

.hero-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 1;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.hero-title span {
    color: var(--rouge);
    display: block;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 1.4rem;
    animation: bounce 2s infinite;
    z-index: 2;
}
    
/* ============================
   BUTTONS
============================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--rouge);
    color: #fff;
    border: 2px solid var(--rouge);
}

.btn-primary:hover {
    background-color: var(--rouge-dark);
    border-color: var(--rouge-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195,22,37,0.4);
    color: #fff;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* ============================
   STATS BAND
============================ */
.stats-band {
    display: flex;
    justify-content: center;
    gap: 0;
    background: var(--rouge);
    padding: 0;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 3.5rem;
    border-right: 1px solid rgba(255,255,255,0.2);
    flex: 1;
    min-width: 160px;
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.4rem;
}

/* ============================
   SECTIONS
============================ */
.section {
    padding: 6rem 1.5rem;
}

.section.dark {
    background: var(--dark);
    color: #fff;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-inner.col-center {
    grid-template-columns: 1fr;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--rouge);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-tag.light {
    color: var(--vert);
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.section.dark h2 {
    color: #fff;
}

.section-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

.section-text p strong {
    color: var(--rouge);
}

.section-text .btn {
    margin-top: 1rem;
}

/* ============================
   DINO CARDS (Exposition visual)
============================ */
.section-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dino-card {
    background: #fff;
    border-left: 4px solid var(--vert);
    padding: 1.2rem 1.8rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dino-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.dino-card.highlight {
    border-left-color: var(--rouge);
    background: linear-gradient(135deg, #fff5f5, #fff);
}

.dino-emoji {
    font-size: 2.5rem;
}

.dino-card p {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--dark);
    letter-spacing: 1px;
}

.dino-card.highlight p {
    color: var(--rouge);
}

/* ============================
   SERVICES CARDS
============================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    width: 100%;
}

.card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    transition: background 0.3s, transform 0.3s;
    text-align: left;
}

.card:hover {
    background: rgba(195,22,37,0.12);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

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

footer {
    background: var(--dark);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.85rem;
    border-top: 3px solid var(--rouge);
}

.dino-table {
    width: 90%;
    max-width: 1100px;
    margin: 2rem auto 4rem;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    background-color: #fff;
}

.dino-table thead {
    background: linear-gradient(135deg, var(--rouge), var(--rouge-dark));
    color: #fff;
}

.dino-table thead th {
    padding: 14px 18px;
    text-align: left;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.dino-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.2s ease;
}

.dino-table tbody tr:last-child { border-bottom: none; }
.dino-table tbody tr:nth-child(even) { background-color: #fdf3f3; }
.dino-table tbody tr:hover { background-color: #fce4e4; }

.dino-table tbody td {
    padding: 13px 18px;
    font-size: 0.95rem;
    color: var(--text);
}

.dino-table tbody td:first-child {
    font-weight: 700;
    color: var(--rouge-dark);
}

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

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

@media (max-width: 576px) {
    .section-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stats-band {
        gap: 0;
    }

    .stat {
        padding: 1.5rem 1.5rem;
        min-width: 120px;
    }

    .tour-item {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .tour-hours { text-align: left; }
}