/* PANDA 16 - Restaurant Japonais Paris 14 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
    --black: #1A1A1A;
    --white: #ffffff;
    --cream: #F5F1EA;
    --cream-dark: #EBE5DB;
    --brown: #8B7355;
    --brown-light: #A08B6D;
    --brown-dark: #6B5A45;
    --gold: #C4A574;
    --gold-light: #D4B88A;
    --gold-dark: #A68B5B;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --accent: #8B7355;
    --accent-light: #A08B6D;
    --accent-dark: #6B5A45;
    --uber-green: #06C167;
    --uber-green-dark: #05a558;
    --font-sans: 'Poppins', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 250ms ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { font-family: var(--font-sans); background: var(--white); color: var(--black); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.25rem; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-family: var(--font-sans); font-size: 0.875rem; font-weight: 600; border: none; border-radius: var(--radius); cursor: pointer; transition: all var(--transition); white-space: nowrap; }
.btn svg { transition: transform var(--transition); }
.btn:hover svg { transform: translateX(2px); }
.btn-lg { padding: 16px 32px; font-size: 0.9375rem; border-radius: var(--radius-lg); }
.btn-primary { background: var(--black); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gray-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--uber-green); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--uber-green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--gray-200); }
.btn-outline:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-white { background: var(--white); color: var(--black); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* === NAV === */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--cream); transition: all var(--transition); }
.nav.scrolled { background: rgba(250, 248, 245, 0.95); backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 16px 32px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--gray-600); position: relative; transition: color var(--transition); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition); }
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }
.nav-cta .btn { padding: 10px 20px; }
.nav-toggle { display: none; width: 44px; height: 44px; background: none; border: none; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 6px; padding: 10px; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--black); transition: all 0.3s ease; border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* === HERO === */
.hero { padding: 140px 32px 100px; background: var(--cream); position: relative; overflow: hidden; }
.hero-bg-pattern { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(circle at 70% 30%, rgba(45, 90, 39, 0.03) 0%, transparent 50%); pointer-events: none; }
.hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.hero-content { max-width: 560px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; color: var(--brown); margin-bottom: 24px; padding: 8px 16px 8px 12px; background: var(--white); border-radius: 100px; box-shadow: var(--shadow-sm); }
.badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 { margin-bottom: 24px; color: var(--black); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-text { font-size: 1.125rem; color: var(--gray-500); margin-bottom: 40px; line-height: 1.75; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 48px; padding-top: 40px; border-top: 1px solid var(--gray-200); }
.hero-stat-value { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 500; color: var(--black); line-height: 1; }
.hero-stat-value span { font-size: 1.5rem; color: var(--gold); margin-left: 2px; }
.hero-stat-label { font-size: 0.875rem; color: var(--gray-500); margin-top: 8px; }
.hero-visual { position: relative; }
.hero-img-wrapper { position: relative; }
.hero-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero-img img { width: 100%; height: auto; max-height: 580px; object-fit: cover; display: block; }
.hero-floating-card { position: absolute; bottom: -20px; left: -40px; background: var(--white); padding: 16px 20px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.floating-icon { width: 48px; height: 48px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.floating-icon svg { width: 24px; height: 24px; stroke: var(--white); }
.floating-text { display: flex; flex-direction: column; }
.floating-title { font-weight: 600; font-size: 0.9rem; color: var(--black); }
.floating-desc { font-size: 0.8rem; color: var(--gray-500); }

/* === SECTIONS === */
section { padding: 120px 32px; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.section-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; padding: 6px 14px; background: rgba(196, 165, 116, 0.15); border-radius: 100px; }
.section-title { margin-bottom: 16px; }
.section-desc { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.7; }

/* === SERVICES === */
.services { background: var(--gray-100); }
.services-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); padding: 40px 32px; border-radius: var(--radius-xl); text-align: center; transition: all var(--transition); border: 1px solid transparent; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card.featured { background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%); color: var(--white); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.1); }
.service-card.featured .service-icon svg { stroke: var(--white); }
.service-card.featured p { color: var(--gray-400); }
.service-badge { position: absolute; top: 20px; right: 20px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--uber-green); background: rgba(6, 193, 103, 0.15); padding: 4px 10px; border-radius: 100px; }
.service-icon { width: 72px; height: 72px; margin: 0 auto 24px; background: var(--gray-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 32px; height: 32px; stroke: var(--brown); }
.service-card h3 { margin-bottom: 12px; font-family: var(--font-sans); font-weight: 600; font-size: 1.25rem; }
.service-card p { font-size: 0.9375rem; color: var(--gray-500); margin-bottom: 28px; line-height: 1.65; }
.service-card .btn { width: 100%; }

/* === MENU === */
.menu-section { background: var(--white); }
.menu-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.menu-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); transition: all var(--transition); }
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.menu-card-img { height: 180px; overflow: hidden; position: relative; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); opacity: 0; transition: opacity var(--transition); }
.menu-card:hover .menu-card-overlay { opacity: 1; }
.menu-price-tag { font-size: 0.8rem; font-weight: 700; color: var(--white); background: var(--brown); padding: 4px 10px; border-radius: 100px; }
.menu-card-body { padding: 20px; }
.menu-card h3 { font-size: 1.0625rem; font-family: var(--font-sans); font-weight: 600; margin-bottom: 8px; }
.menu-card .desc { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.5; }
.menu-cta { text-align: center; margin-top: 56px; }

/* === ABOUT === */
.about { background: var(--gray-100); }
.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-img-main img { width: 100%; height: auto; max-height: 520px; object-fit: cover; display: block; }
.about-img-secondary { position: absolute; bottom: -30px; right: -30px; width: 50%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid var(--white); }
.about-img-secondary img { width: 100%; height: auto; max-height: 220px; object-fit: cover; display: block; }
.about-experience { position: absolute; top: -20px; left: -20px; background: var(--brown); color: var(--white); padding: 24px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-lg); }
.exp-number { display: block; font-family: var(--font-serif); font-size: 2.5rem; font-weight: 500; line-height: 1; }
.exp-text { font-size: 0.8rem; font-weight: 500; margin-top: 4px; opacity: 0.9; }
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-text { font-size: 1.0625rem; color: var(--gray-500); margin-bottom: 20px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.about-feature { display: flex; align-items: center; gap: 12px; }
.feature-icon { width: 28px; height: 28px; background: rgba(139, 115, 85, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { width: 14px; height: 14px; stroke: var(--brown); }
.about-feature span { font-size: 0.9375rem; font-weight: 500; }

/* === CTA === */
.cta-section { background: var(--black); text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(196, 165, 116, 0.2) 0%, transparent 60%); pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.cta-section .section-tag { background: rgba(255,255,255,0.1); color: var(--gray-400); }
.cta-section .section-title { color: var(--white); }
.cta-section .section-desc { color: var(--gray-400); margin-bottom: 40px; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* === FOOTER === */
.footer { background: var(--black); color: var(--white); padding: 80px 32px 40px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 64px; }
.footer-logo { height: 32px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer-social a:hover { background: var(--white); }
.footer-social svg { width: 18px; height: 18px; stroke: var(--white); transition: stroke var(--transition); }
.footer-social a:hover svg { stroke: var(--black); }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.875rem; font-weight: 600; margin-bottom: 24px; color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.9rem; color: var(--gray-500); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-contact div { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.footer-contact svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact span { font-size: 0.9rem; color: var(--gray-500); line-height: 1.5; }
.footer-bottom { max-width: 1200px; margin: 64px auto 0; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--gray-500); }
.footer-legal { display: flex; gap: 32px; }
.footer-legal a { color: var(--gray-500); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* === MOBILE MENU === */
.mobile-menu { position: fixed; inset: 0; background: var(--cream); z-index: 1000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); opacity: 0; visibility: hidden; }
.mobile-menu.active { transform: translateX(0); opacity: 1; visibility: visible; }
.mobile-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mobile-close svg { width: 28px; height: 28px; stroke: var(--black); stroke-width: 2; }
.mobile-menu > a { font-size: 1.75rem; font-weight: 500; font-family: var(--font-serif); color: var(--black); transition: color 0.3s ease; }
.mobile-menu > a:hover { color: var(--brown); }
.mobile-cta { display: flex; flex-direction: column; gap: 12px; width: 280px; margin-top: 32px; }
.mobile-cta .btn { width: 100%; justify-content: center; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-content { max-width: 100%; order: 1; }
    .hero-visual { order: 0; max-width: 500px; margin: 0 auto; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-img img { height: 450px; }
    .hero-floating-card { left: auto; right: 20px; bottom: -10px; }
    .services-grid { grid-template-columns: 1fr; max-width: 420px; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 80px; }
    .about-visual { max-width: 500px; margin: 0 auto; }
    .about-content { text-align: center; }
    .about-content .section-tag, .about-content .section-title { text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-inner { padding: 14px 20px; }
    section { padding: 70px 20px; }
    .hero { padding: 110px 20px 70px; }
    .hero-img img { height: 350px; object-fit: cover; }
    .hero-floating-card { display: none; }
    .hero-stats { gap: 24px; }
    .hero-stat-value { font-size: 1.75rem; }
    .section-header { margin-bottom: 50px; }
    .services-grid { gap: 16px; }
    .menu-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; gap: 16px; }
    .menu-card-img { height: 160px; }
    .about-img-main img { height: 350px; object-fit: cover; }
    .about-img-secondary { width: 55%; right: -15px; bottom: -15px; }
    .about-img-secondary img { height: 160px; object-fit: cover; }
    .about-experience { top: -12px; left: -12px; padding: 16px; }
    .exp-number { font-size: 1.75rem; }
    .about-features { grid-template-columns: 1fr; gap: 12px; }
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btns .btn { width: 100%; max-width: 280px; }
    .footer { padding: 50px 20px 30px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .footer-social { justify-content: center; }
    .footer-contact div { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    .hero { padding: 100px 16px 60px; }
    .hero-badge { font-size: 0.75rem; padding: 6px 12px; }
    .hero-text { font-size: 1rem; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .hero-btns .btn { width: 100%; }
    .hero-stats { flex-wrap: wrap; justify-content: center; gap: 20px; }
    .hero-stat { min-width: 70px; }
    .hero-stat-value { font-size: 1.5rem; }
    .hero-stat-label { font-size: 0.75rem; }
    section { padding: 60px 16px; }
    .section-tag { font-size: 0.7rem; }
    .section-desc { font-size: 0.9375rem; }
    .service-card { padding: 28px 20px; }
    .service-icon { width: 60px; height: 60px; }
    .menu-card-body { padding: 16px; }
    .about-text { font-size: 0.9375rem; }
    .mobile-menu > a { font-size: 1.5rem; }
    .mobile-cta { width: 90%; max-width: 260px; }
}
