:root {
    --primary: #f5bd62;
    /* Kiminu Gold */
    --primary-dark: #e5ac52;
    --accent: #5c3507;
    /* Kiminu Dark Brown */
    --hover: #fff3e0;
    --dark: #1a1a1a;
    --light-warm: #fef9f2;
}

.bg-kiminu-dark {
    background-color: var(--accent) !important;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

h1,
h2,
h3,
h4,
.navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Bootstrap Overrides */
.btn-kiminu {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-kiminu:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 189, 98, 0.3);
}

.btn-outline-kiminu {
    border-color: var(--primary);
    color: var(--primary);
    border-radius: 4px;
    font-weight: 600;
}

.btn-outline-kiminu:hover {
    background-color: var(--primary);
    color: #fff;
}

.text-kiminu {
    color: var(--primary) !important;
}

.bg-light-warm {
    background-color: var(--light-warm);
}

.border-kiminu {
    border-color: var(--primary) !important;
    color: var(--primary);
}

/* Navbar */
.transition-navbar {
    transition: background 0.4s, padding 0.4s;
    background: transparent;
}

.transition-navbar.scrolled {
    background: white !important;
    padding: 0.2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 12px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* Hero */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('assets/hero.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.9) 25%,
            rgba(255, 255, 255, 0.5) 50%,
            transparent 100%);
    z-index: 1;
}

.hero-text-box {
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Service Mini Cards */
.service-mini-card {
    transition: transform 0.3s;
    border-radius: 12px !important;
}

.service-mini-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.link-kiminu {
    color: var(--accent);
    transition: color 0.3s;
}

.link-kiminu:hover {
    color: var(--primary);
}

/* Footer & Utils */
.brightness-0 {
    filter: brightness(0);
}

.invert {
    filter: invert(1);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #adb5bd;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.hover-kiminu:hover {
    color: var(--primary) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Stacked Layout Styles */
.service-card-stacked,
.profile-card-stacked {
    border-radius: 20px !important;
    min-height: 450px;
    transition: var(--transition);
}

.profile-img-stacked {
    min-height: 450px;
    width: 100%;
    filter: brightness(1.02);
}

.tracking-widest {
    letter-spacing: 0.2rem;
}

.service-card-stacked:hover,
.profile-card-stacked:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

@media (max-width: 768px) {

    .service-card-stacked .row>div,
    .profile-card-stacked .row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .service-card-stacked img,
    .profile-card-stacked img {
        height: 350px !important;
        width: 100% !important;
        object-fit: cover;
    }
}

/* Profile Card Premium Style (based on slides) */
.profile-card-premium {
    border-radius: 4px !important;
    background: #fff;
    transition: var(--transition);
    min-height: 380px;
}

.profile-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.profile-img-side {
    filter: brightness(1.05);
    background-color: #f8f9fa;
}

.x-small {
    font-size: 0.7rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .profile-card-premium .col-5 {
        width: 100%;
        height: 250px;
    }

    .profile-card-premium .col-7 {
        width: 100%;
    }
}

/* Team Grid Expansion */
.team-card-new {
    border-radius: 12px !important;
    overflow: hidden;
    transition: var(--transition);
}

.team-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.team-img-wrapper {
    height: 300px;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card-new:hover .team-img-wrapper img {
    transform: scale(1.1);
}

/* Organigramme Styles */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-node {
    background: #fff;
    border: 2px solid var(--kiminu-gold);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 250px;
    margin: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.org-line-v {
    width: 2px;
    height: 40px;
    background: var(--kiminu-gold);
}

.org-level-2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.timeline-item {
    border-left: 3px solid var(--kiminu-gold);
    padding-left: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--kiminu-gold);
    border-radius: 50%;
}

.hover-translate-x:hover {
    transform: translateX(15px);
}

/* Hostess Profiles - Horizontal Layout */
.hostess-card {
    background: white;
    border: none;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 4rem;
}

.hostess-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.hostess-card .card-img-wrapper {
    height: 100%;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.hostess-card .row {
    display: flex;
    align-items: stretch;
}

.hostess-card .col-lg-5 {
    display: flex;
}

.hostess-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hostess-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.hostess-card .profile-info {
    padding: 3rem;
}

.hostess-card .name-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.hostess-card .hostess-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.hostess-card .hostess-meta {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    margin-bottom: 1rem;
    display: block;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.language-line {
    margin-top: 2rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .hostess-card .card-img-wrapper {
        height: 350px;
    }

    .hostess-card .profile-info {
        padding: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hostess-name {
        font-size: 1.8rem;
    }
}

.img-frame {
    transition: transform 0.5s ease;
}

.img-frame:hover {
    transform: scale(1.02);
}

.bg-kiminu-light {
    background-color: rgba(245, 189, 98, 0.1);
}

.text-kiminu-dark {
    color: var(--accent) !important;
}

.hover-border-kiminu:hover {
    border-color: var(--primary) !important;
}

/* Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@media (max-width: 991px) {
    .navbar {
        background: white !important;
    }

    .hero-section {
        height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
        background-position: right center;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(to right,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, 0.9) 60%,
                rgba(255, 255, 255, 0.4) 100%);
    }
}