/* ============================================================
   teamStyle.css  —  Celesté House · Team Page (New Design)
   ============================================================ */

/* --- BIẾN MÀU BỔ SUNG (dùng thêm bên cạnh style.css) --- */
:root {
    --gold-new: #b89a6a;
    --gold-light: #d4b896;
    --ink: #0a0a0a;
    --ink-mid: #111111;
    --ink-soft: #0d0d0d;
    --gold-line: rgba(184, 154, 106, 0.22);
    --text-muted: #666;
    --text-dim: #888;
}

/* ============================================================
   HERO SPLIT
   ============================================================ */
.team-hero-new {
    position: relative;
    background: var(--ink);
    display: flex;
    flex-direction: column;
}

/* Nav tái sử dụng style.css — chỉ đảm bảo hero đủ cao */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 0px);
    padding-top: 90px; /* offset nav */
}

/* Trái — ảnh + text */
.hero-left {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-left-img {
    position: absolute;
    inset: 0;
    background: url('https://i.pinimg.com/1200x/9c/57/d4/9c57d4fa326d11e68607e99d943364ad.jpg') center / cover;
    filter: brightness(0.3);
    transform: scale(1.05);
    animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
}

.hero-big-number {
    position: absolute;
    bottom: 20px;
    right: -8px;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 160px;
    font-weight: 300;
    line-height: 1;
    color: rgba(184, 154, 106, 0.12);
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

.hero-left-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 50px 56px;
}

.hero-eyebrow {
    font-size: 10px;
    letter-spacing: 5px;
    color: var(--gold-new);
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    animation: slideFromLeft 0.9s 0.3s ease forwards;
}

.hero-h1 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 22px;
    opacity: 0;
    animation: slideFromLeft 0.9s 0.5s ease forwards;
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold-new);
}

.hero-tagline {
    font-size: 13px;
    color: #aaa;
    line-height: 1.75;
    max-width: 340px;
    opacity: 0;
    animation: slideFromLeft 0.9s 0.7s ease forwards;
}

/* Phải — stats + CTA */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    border-left: 1px solid var(--gold-line);
    background: var(--ink-mid);
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://i.pinimg.com/1200x/9c/57/d4/9c57d4fa326d11e68607e99d943364ad.jpg') center / cover;
    opacity: 0.04;
    pointer-events: none;
}

.hero-stats { position: relative; z-index: 2; }

.stat-row {
    border-bottom: 1px solid var(--gold-line);
    padding: 26px 0;
    opacity: 0;
    animation: slideFromRight 0.8s ease forwards;
}

.stat-row:nth-child(1) { animation-delay: 0.4s; }
.stat-row:nth-child(2) { animation-delay: 0.55s; }
.stat-row:nth-child(3) { animation-delay: 0.7s; border-bottom: none; }

.stat-num {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 300;
    color: var(--gold-new);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    margin-top: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: slideFromRight 0.8s 0.9s ease forwards;
}

/* Buttons chung */
.btn-cta-main {
    background: var(--gold-new);
    color: #000;
    border: none;
    padding: 13px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-cta-main:hover { background: var(--gold-light); }

.btn-cta-ghost {
    background: transparent;
    color: var(--gold-new);
    border: 1px solid var(--gold-new);
    padding: 13px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-cta-ghost:hover { background: var(--gold-new); color: #000; }

/* Animations */
@keyframes slideFromLeft {
    from { opacity: 0; transform: translateX(-24px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideFromRight {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
    background: var(--gold-new);
    padding: 12px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 22s linear infinite;
}

.mq-item {
    font-size: 10px;
    letter-spacing: 3px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 36px;
    flex-shrink: 0;
}

.mq-dot {
    opacity: 0.4;
    margin-left: 36px;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEADER CHUNG
   ============================================================ */
.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid var(--gold-line);
    padding-bottom: 28px;
    margin-bottom: 0;
}

.sh-kicker {
    font-size: 10px;
    letter-spacing: 5px;
    color: var(--gold-new);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sh-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    color: #fff;
    /* reset style.css h2 */
    margin-bottom: 0 !important;
}

.sh-title::after { display: none !important; } /* override style.css */

.sh-title em {
    font-style: italic;
    color: var(--gold-new);
}

.sh-count {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 300;
    color: var(--gold-line);
    line-height: 1;
    user-select: none;
}

/* ============================================================
   CHEFS SECTION
   ============================================================ */
.chefs-section {
    padding: 80px 0;
    background: var(--ink);
}

.chefs-section .section-header-row {
    margin: 0 6% 0;
}

.sh-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    padding: 28px 10%;
    border-bottom: 1px solid var(--gold-line);
}

/* Chef Band */
.chef-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
    border-top: 1px solid var(--gold-line);
}

.chef-band-reverse .cb-img { order: 2; }
.chef-band-reverse .cb-info { order: 1; }

/* Ảnh */
.cb-img {
    position: relative;
    overflow: hidden;
}

.cb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 1s ease;
    display: block;
}

.chef-band:hover .cb-img img { transform: scale(1.05); }

.cb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.28);
    transition: background 0.4s;
}

.chef-band:hover .cb-overlay { background: rgba(10, 10, 10, 0.15); }

/* Info */
.cb-info {
    padding: 52px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--ink-mid);
    border-left: 1px solid var(--gold-line);
}

.chef-band-reverse .cb-info {
    border-left: none;
    border-right: 1px solid var(--gold-line);
    background: var(--ink);
}

.cb-index {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 300;
    color: rgba(184, 154, 106, 0.22);
    line-height: 1;
    margin-bottom: 20px;
}

.cb-name {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.cb-role {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold-new);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cb-stars {
    color: var(--gold-new);
    letter-spacing: 5px;
    font-size: 13px;
    margin-bottom: 20px;
}

.cb-desc {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.85;
    margin-bottom: 26px;
    max-width: 380px;
}

.cb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.cb-tags span {
    border: 1px solid var(--gold-line);
    color: var(--gold-new);
    padding: 4px 14px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ============================================================
   STAFF SECTION
   ============================================================ */
.staff-section-new {
    padding: 80px 6%;
    background: var(--ink-soft);
}

.staff-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-end;
    margin-bottom: 50px;
}

.staff-intro-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    align-self: flex-end;
}

/* Grid nhân viên */
.staff-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gold-line);
    border: 1px solid var(--gold-line);
}

.sc-new {
    background: var(--ink);
    overflow: hidden;
    position: relative;
    cursor: default;
}

.sc-img-wrap {
    height: 500px;
    overflow: hidden;
}

.sc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.9s ease;
    filter: grayscale(25%);
    display: block;
}

.sc-new:hover .sc-img-wrap img {
    transform: scale(1.07);
    filter: grayscale(0%);
}

/* Căn chỉnh riêng từng ảnh nhân viên */
.sc-new:nth-child(3) .sc-img-wrap img,
.sc-new:nth-child(4) .sc-img-wrap img {
    object-position: center top;
}

.sc-body {
    padding: 18px 16px 20px;
}

.sc-name {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 4px;
}

.sc-role {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold-new);
    text-transform: uppercase;
}

.sc-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-new);
    transition: width 0.4s ease;
}

.sc-new:hover .sc-line { width: 100%; }

/* ============================================================
   AWARDS SECTION
   ============================================================ */
.awards-section-new {
    padding: 80px 6%;
    background: var(--ink);
    border-top: 1px solid var(--gold-line);
}

.awards-section-new .section-header-row {
    margin-bottom: 50px;
}

.awards-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--gold-line);
}

.award-cell {
    padding: 44px 30px;
    border-right: 1px solid var(--gold-line);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: background 0.4s;
}

.award-cell:last-child { border-right: none; }

.award-cell:hover { background: rgba(184, 154, 106, 0.05); }

.award-cell::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold-new);
    transition: width 0.5s ease;
}

.award-cell:hover::after { width: 60%; }

.award-ico {
    font-size: 28px;
    color: var(--gold-new);
    margin-bottom: 18px;
    display: block;
    width: auto !important; /* override teamStyle conflicts */
    height: auto !important;
}

.award-val {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--gold-new);
    display: block;
    line-height: 1;
}

.award-lbl {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 10px;
    display: block;
}

/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta {
    padding: 70px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gold-line);
    background: var(--ink-soft);
    flex-wrap: wrap;
    gap: 30px;
}

.fc-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 300;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 0;
}

.fc-title::after { display: none !important; } /* override h2 global */

.fc-title em {
    font-style: italic;
    color: var(--gold-new);
}

.fc-sub {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 10px;
}

.fc-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-split { grid-template-columns: 1fr; }
    .hero-right {
        border-left: none;
        border-top: 1px solid var(--gold-line);
        padding: 50px 6%;
    }
    .hero-left { min-height: 520px; }
    .hero-left-content { padding: 0 6% 44px; }

    .chef-band {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .chef-band-reverse .cb-img { order: 0; }
    .chef-band-reverse .cb-info { order: 0; border-right: none; border-top: 1px solid var(--gold-line); }
    .cb-img { min-height: 360px; }
    .cb-info { border-left: none; border-top: 1px solid var(--gold-line); padding: 36px 6%; }

    .staff-grid-new { grid-template-columns: repeat(2, 1fr); }
    .staff-intro { grid-template-columns: 1fr; gap: 20px; }

    .awards-grid-new { grid-template-columns: 1fr; }
    .award-cell { border-right: none; border-bottom: 1px solid var(--gold-line); }
    .award-cell:last-child { border-bottom: none; }

    .footer-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    .staff-grid-new { grid-template-columns: 1fr 1fr; }
    .hero-big-number { font-size: 100px; }
    .sh-count { font-size: 55px; }
    .fc-btns { flex-direction: column; }
    .hero-cta-group { flex-direction: column; }
    .btn-cta-main, .btn-cta-ghost { width: 100%; text-align: center; }
}
