/*
Theme Name: Grand Restaurant Child - Hải Sản 179
Template: grandrestaurant
Description: Custom design for Hải Sản Hạ Long 179
Version: 1.0
*/

/* ===== CSS VARIABLES ===== */
:root {
    --sidebar-w: 280px;
    --ocean-deep: #8B1A1A;
    --ocean-mid: #C0392B;
    --ocean-light: #E74C3C;
    --aqua: #E67E22;
    --aqua-soft: rgba(231,76,60,0.08);
    --sand: #FFF5F0;
    --sand-light: #FFFAF7;
    --white: #FFFFFF;
    --dark: #1A1A2E;
    --gold: #F39C12;
    --red: #E74C3C;
    --red-soft: #FF6B6B;
    --text: #2D2D3A;
    --text-light: #6B6B80;
    --border: rgba(139,26,26,0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif !important;
    color: var(--text);
    background: #FAFAFA !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide parent theme elements */
#wrapper, #page-content-wrapper, .page-content-wrapper,
header#masthead, #masthead, .site-header,
.menu-wrapper, #menu-wrapper, .top-bar,
.footer-wrapper, #footer-wrapper,
.header_style_wrapper, #header_style_wrapper,
.mobile_menu_wrapper, #mobile_menu_wrapper,
.ppb_wrapper { display: none !important; }

/* ===== SIDEBAR ===== */
.sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: var(--sidebar-w);
    background: var(--white);
    border-right: 1px solid var(--border);
    z-index: 100;
    display: flex; flex-direction: column;
    overflow-y: auto;
    scrollbar-width: none;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.sidebar::-webkit-scrollbar { display: none; }
.sidebar-logo { padding: 18px 20px 14px; text-align: center; border-bottom: 1px solid var(--border); }
.sidebar-logo a { text-decoration: none; display: inline-block; }
.sidebar-logo img { width: 150px; height: auto; mix-blend-mode: multiply; filter: contrast(1.05); }
.sidebar-nav { padding: 12px 16px; flex: 1; }
.sidebar-nav ul { list-style: none; }
.sidebar-nav > ul > li { margin-bottom: 2px; }
.sidebar-nav a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 14px; text-decoration: none; color: var(--text);
    font-size: 13.5px; font-weight: 500; border-radius: 10px;
    transition: all 0.25s ease; letter-spacing: 0.2px;
}
.sidebar-nav a i { width: 18px; text-align: center; font-size: 14px; color: var(--ocean-light); opacity: 0.7; transition: all 0.25s ease; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: var(--aqua-soft); color: var(--ocean-deep); }
.sidebar-nav a:hover i, .sidebar-nav a.active i { opacity: 1; color: var(--aqua); }
.has-dropdown > a::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 9px; margin-left: auto; color: var(--text-light); transition: transform 0.3s ease; }
.has-dropdown.open > a::after { transform: rotate(180deg); }
.dropdown-sub { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding-left: 18px; }
.has-dropdown.open .dropdown-sub { max-height: 200px; }
.dropdown-sub a { padding: 8px 14px; font-size: 12.5px; color: var(--text-light); }
.dropdown-sub a::before { content: ''; width: 5px; height: 5px; background: var(--aqua); border-radius: 50%; opacity: 0.5; flex-shrink: 0; }
.sidebar-cta { padding: 0 16px 12px; }
.btn-reservation {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 13px 16px;
    background: linear-gradient(135deg, var(--red), var(--aqua));
    color: #fff; border: none; border-radius: 12px;
    font-size: 13.5px; font-weight: 600; font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px; cursor: pointer; transition: all 0.3s ease;
    text-decoration: none; box-shadow: 0 4px 14px rgba(231,76,60,0.3);
}
.btn-reservation:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(231,76,60,0.4); }
.sidebar-contact { padding: 14px 16px; margin: 0 16px 12px; background: linear-gradient(135deg, #FFF0F0, #FFF5EB); border-radius: 14px; border: 1px solid rgba(231,76,60,0.15); }
.sidebar-contact h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--ocean-light); margin-bottom: 14px; font-weight: 700; }
.contact-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 12.5px; color: var(--text); line-height: 1.5; }
.contact-line:last-child { margin-bottom: 0; }
.contact-line i { color: var(--aqua); font-size: 13px; margin-top: 2px; width: 14px; text-align: center; flex-shrink: 0; }
.contact-line a { color: var(--ocean-deep); text-decoration: none; font-weight: 600; }
.contact-line a:hover { color: var(--aqua); }
.sidebar-social { padding: 10px; border-top: 1px solid var(--border); display: flex; justify-content: center; gap: 10px; }
.sidebar-social a { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: #FFE8E0; color: var(--ocean-mid); font-size: 14px; text-decoration: none; transition: all 0.3s ease; }
.sidebar-social a:hover { background: var(--aqua); color: #fff; transform: translateY(-2px); }

/* ===== MAIN CONTENT ===== */
.main { margin-left: var(--sidebar-w); min-height: 100vh; }

/* ===== HERO ===== */
.hero {
    position: relative; height: 100vh; min-height: 600px; max-height: 800px;
    overflow: hidden; background: #1A1A2E;
}
.hero-video-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-video-wrap iframe {
    position: absolute; top: 50%; left: 50%;
    width: 120vw; height: 68vw; min-height: 105%; min-width: 178vh;
    transform: translate(-50%, -50%); border: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,46,0.45) 0%, rgba(26,26,46,0.15) 40%, rgba(26,26,46,0.65) 100%);
}
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 50px; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2); color: #fff;
    padding: 7px 18px; border-radius: 50px; font-size: 11px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
}
.hero-badge i { color: var(--gold); }
.hero h1 {
    font-family: 'Playfair Display', serif; font-size: clamp(36px, 4vw, 56px);
    color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 10px;
}
.hero h1 span { color: var(--gold); }
.hero-tagline { font-size: 16px; color: rgba(255,255,255,0.85); font-weight: 300; max-width: 500px; }

/* ===== SECTION COMMONS ===== */
.section { padding: 80px 50px; }
.section-header { margin-bottom: 48px; }
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--ocean-light); margin-bottom: 12px;
}
.section-label::before {
    content: ''; width: 28px; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent); border-radius: 1px;
}
.section-title {
    font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 36px);
    color: var(--ocean-deep); font-weight: 700; line-height: 1.25;
}
.section-desc { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-top: 12px; max-width: 600px; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.about-img-wrap {
    position: relative; border-radius: 20px; overflow: hidden;
    aspect-ratio: 4/3; box-shadow: 0 20px 50px rgba(139,26,26,0.08);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-tag {
    position: absolute; bottom: 16px; right: 16px;
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid));
    color: #fff; padding: 14px 20px; border-radius: 14px; text-align: center;
    box-shadow: 0 8px 20px rgba(139,26,26,0.25);
}
.about-img-tag .num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; }
.about-img-tag .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.about-tagline { font-size: 17px; color: var(--red-soft); font-weight: 500; font-style: italic; margin-bottom: 20px; }
.about-text { font-size: 14.5px; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.about-text strong { color: var(--ocean-deep); }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-pill {
    display: flex; align-items: center; gap: 8px; padding: 10px 16px;
    background: #FFF0F0; border-radius: 10px; border: 1px solid rgba(231,76,60,0.12);
    font-size: 13px; font-weight: 500; color: var(--ocean-deep);
}
.about-pill i { color: var(--aqua); font-size: 15px; }

/* ===== FEATURES ===== */
.features {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1B3D 100%);
    color: #fff; position: relative; overflow: hidden;
}
.features::before {
    content: ''; position: absolute; top: -40%; right: -15%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(231,76,60,0.08), transparent 70%);
    border-radius: 50%;
}
.features .section-label { color: var(--aqua); }
.features .section-title { color: #fff; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; z-index: 1; }
.feature-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 32px 28px; display: flex; gap: 20px;
    align-items: flex-start; transition: all 0.35s ease; backdrop-filter: blur(8px);
}
.feature-card:hover {
    background: rgba(255,255,255,0.1); border-color: rgba(231,76,60,0.25);
    transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.feature-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--aqua), var(--ocean-light));
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff;
}
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 17px; margin-bottom: 8px; line-height: 1.3; color: #fff; }
.feature-card p { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.78); }

/* ===== MENU CARDS ===== */
.menu-sections { background: #FAFAFA; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.menu-card {
    background: var(--white); border-radius: 20px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(139,26,26,0.06); border: 1px solid var(--border);
    transition: all 0.4s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(139,26,26,0.10); border-color: rgba(231,76,60,0.2); }
.menu-card-img { height: 220px; overflow: hidden; position: relative; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-body { padding: 28px; }
.menu-card-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--ocean-deep); margin-bottom: 6px; }
.menu-card-body .sub { font-size: 13px; color: var(--red-soft); font-weight: 600; margin-bottom: 12px; }
.menu-card-body p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.btn-menu {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px;
    background: var(--ocean-deep); color: #fff; border-radius: 10px;
    font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.3s ease;
}
.btn-menu:hover { background: var(--ocean-mid); transform: translateX(3px); }
.btn-menu i { font-size: 11px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.testimonials-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,26,0.7);
}
.testimonials-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 48px;
    text-align: center;
}
.testimonials-slider {
    position: relative;
    min-height: 260px;
}
.testimonial-slide {
    display: none;
    animation: fadeInTestimonial 0.6s ease;
}
.testimonial-slide.active {
    display: block;
    opacity: 1;
}
@keyframes fadeInTestimonial {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.testimonial-stars {
    margin-bottom: 24px;
}
.testimonial-stars i {
    color: var(--gold);
    font-size: 20px;
    margin: 0 2px;
}
.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 32px;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.3);
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}
.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.testimonial-dots .dot.active {
    background: #fff;
    border-color: #fff;
}
.testimonial-dots .dot:hover {
    border-color: #fff;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1A1A2E; color: #fff; padding: 56px 50px 0;
    margin-left: var(--sidebar-w);
}
.footer-grid {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-footer h4 { font-family: 'Playfair Display', serif; font-size: 17px; margin-bottom: 20px; color: #fff; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-top: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13.5px;
    transition: all 0.25s ease; display: flex; align-items: center; gap: 8px;
}
.footer-links a i { font-size: 9px; color: var(--gold); }
.footer-links a:hover { color: var(--gold); transform: translateX(3px); }
.footer-contact a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.fc-item {
    display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px;
    font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.5;
}
.fc-item i { color: var(--gold); margin-top: 3px; width: 14px; text-align: center; flex-shrink: 0; font-size: 13px; }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 0.8; text-decoration: underline; }

/* ===== FLOATING BTNS ===== */
.floating { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.fbtn {
    position: relative; width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px; text-decoration: none;
    transition: all 0.3s ease; box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.fbtn:hover { transform: scale(1.12); }
.fbtn.zalo { background: linear-gradient(135deg, #0068FF, #00A2FF); }
.fbtn.phone { background: linear-gradient(135deg, #25D366, #128C7E); animation: phonePulse 2s infinite; }
.fbtn .tip {
    position: absolute; right: 60px; white-space: nowrap;
    background: var(--ocean-deep); color: #fff; padding: 7px 14px;
    border-radius: 8px; font-size: 12px; font-weight: 500;
    opacity: 0; pointer-events: none; transition: all 0.3s ease;
}
.fbtn .tip::after {
    content: ''; position: absolute; right: -5px; top: 50%;
    transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--ocean-deep);
}
.fbtn:hover .tip { opacity: 1; right: 62px; }
@keyframes phonePulse {
    0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.25); }
    50% { box-shadow: 0 4px 28px rgba(37,211,102,0.55); }
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
    display: none; position: fixed; top: 16px; left: 16px; z-index: 200;
    width: 44px; height: 44px; background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
    font-size: 18px; color: var(--ocean-deep); box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
    position: relative; padding: 80px 50px 50px;
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1B3D 50%, #8B1A1A 100%);
    color: #fff; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(231,76,60,0.15) 0%, transparent 70%); border-radius: 50%;
}
.page-header .breadcrumb { font-size: 13px; opacity: 0.7; margin-bottom: 16px; color: #fff; }
.page-header .breadcrumb a { color: #fff; text-decoration: none; }
.page-header .breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; margin-bottom: 12px; position: relative; color: #fff; }
.page-header p { font-size: 16px; max-width: 600px; line-height: 1.7; color: rgba(255,255,255,0.85); }

/* ===== BOOKING PAGE ===== */
.booking-content { display: grid; grid-template-columns: 1fr 400px; gap: 40px; padding: 50px; max-width: 1200px; }
.booking-form { background: var(--white); border-radius: 20px; padding: 36px; border: 1px solid var(--border); }
.form-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--text-light); margin-bottom: 28px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; letter-spacing: 0.3px; }
.form-group label .req { color: var(--red); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid #E8E8EE; border-radius: 12px;
    font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text);
    background: #FAFAFA; transition: all 0.25s ease; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--ocean-light); background: var(--white); box-shadow: 0 0 0 3px rgba(231,76,60,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.time-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.time-slot {
    padding: 8px 16px; border-radius: 10px; border: 1.5px solid #E8E8EE;
    background: #FAFAFA; font-size: 13px; font-weight: 500; color: var(--text);
    cursor: pointer; transition: all 0.25s ease; font-family: 'Inter', sans-serif;
}
.time-slot:hover { border-color: var(--ocean-light); color: var(--ocean-deep); }
.time-slot.selected { background: var(--ocean-deep); color: #fff; border-color: var(--ocean-deep); }
.menu-options { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.menu-opt {
    padding: 14px 12px; border-radius: 12px; border: 1.5px solid #E8E8EE;
    background: #FAFAFA; text-align: center; cursor: pointer; transition: all 0.25s ease;
}
.menu-opt:hover { border-color: var(--ocean-light); }
.menu-opt.selected { border-color: var(--ocean-deep); background: var(--aqua-soft); }
.menu-opt i { display: block; font-size: 22px; color: var(--ocean-light); margin-bottom: 6px; }
.menu-opt .label { font-size: 12px; font-weight: 600; color: var(--text); }
.btn-submit {
    width: 100%; padding: 16px; margin-top: 8px;
    background: linear-gradient(135deg, var(--red), var(--aqua));
    color: #fff; border: none; border-radius: 14px;
    font-size: 15px; font-weight: 700; font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px; cursor: pointer; transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231,76,60,0.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(231,76,60,0.4); }
.success-msg { display: none; text-align: center; padding: 40px 20px; }
.success-msg .check-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 36px; color: #fff; margin-bottom: 20px;
}
.success-msg h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--dark); margin-bottom: 10px; }
.success-msg p { color: var(--text-light); font-size: 14px; line-height: 1.7; }
.info-card { background: var(--white); border-radius: 20px; padding: 28px; border: 1px solid var(--border); margin-bottom: 20px; }
.info-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.info-item { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.info-item:last-child { margin-bottom: 0; }
.info-icon {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, #FFF0F0, #FFF5EB);
    display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--ocean-light);
}
.info-item .label { font-size: 12px; color: var(--text-light); margin-bottom: 2px; }
.info-item .value { font-size: 14px; font-weight: 600; color: var(--text); }
.info-item .value a { color: var(--ocean-deep); text-decoration: none; }
.info-item .value a:hover { color: var(--aqua); }
.map-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid var(--border); }
.map-card iframe { width: 100%; height: 220px; border: 0; }
.map-card .map-label { padding: 14px 20px; font-size: 13px; color: var(--text-light); }
.map-card .map-label strong { color: var(--text); }
.why-card { background: linear-gradient(135deg, #FFF0F0, #FFF5EB); border-radius: 20px; padding: 28px; border: 1px solid rgba(231,76,60,0.1); }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.why-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.why-item:last-child { margin-bottom: 0; }
.why-item i { color: #27ae60; font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.why-item span { font-size: 13.5px; color: var(--text); line-height: 1.5; }

/* ===== MENU ONLINE PAGE ===== */
.menu-toolbar {
    padding: 24px 50px; background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    position: sticky; top: 0; z-index: 50;
}
.filter-btn {
    padding: 9px 20px; border-radius: 50px; border: 1px solid var(--border);
    background: var(--white); color: var(--text); font-size: 13px; font-weight: 500;
    cursor: pointer; transition: all 0.25s ease; font-family: 'Inter', sans-serif;
}
.filter-btn:hover { border-color: var(--ocean-light); color: var(--ocean-deep); }
.filter-btn.active { background: var(--ocean-deep); color: #fff; border-color: var(--ocean-deep); }
.menu-search {
    margin-left: auto; display: flex; align-items: center; gap: 8px;
    padding: 9px 18px; border-radius: 50px; border: 1px solid var(--border);
    background: #F8F8FA; max-width: 280px; flex: 1;
}
.menu-search i { color: var(--text-light); font-size: 14px; }
.menu-search input {
    border: none; background: transparent; outline: none;
    font-size: 13px; color: var(--text); width: 100%; font-family: 'Inter', sans-serif;
}
.menu-content { padding: 40px 50px 60px; }
.category-section { margin-bottom: 48px; }
.category-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--border);
}
.category-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, #FFF0F0, #FFF5EB);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--ocean-light);
}
.category-header h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--dark); }
.category-header .count { font-size: 13px; color: var(--text-light); margin-left: auto; }
.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.dish-card {
    background: var(--white); border-radius: 16px; border: 1px solid var(--border);
    overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.dish-img { position: relative; height: 200px; overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dish-card:hover .dish-img img { transform: scale(1.05); }
.dish-badge {
    position: absolute; top: 12px; left: 12px; padding: 5px 12px; border-radius: 50px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
}
.dish-badge.hot { background: var(--red); color: #fff; }
.dish-badge.new { background: var(--gold); color: #fff; }
.dish-badge.best { background: #27ae60; color: #fff; }
.dish-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.dish-name { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.dish-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.dish-footer { display: flex; align-items: center; justify-content: space-between; }
.dish-price { font-size: 17px; font-weight: 700; color: var(--ocean-deep); }
.dish-price .unit { font-size: 12px; font-weight: 400; color: var(--text-light); }
.dish-note {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px; border-radius: 8px; background: #FFF5F0;
    font-size: 11px; color: var(--aqua); font-weight: 500;
}

/* ===== CATEGORY CARD with IMAGE ===== */
.cat-card {
    background: #fff; border-radius: 18px; overflow: hidden;
    border: 1px solid var(--border); transition: box-shadow 0.3s;
}
.cat-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.cat-header-row {
    display: flex; align-items: center; gap: 20px;
    padding: 16px 20px; border-bottom: 1px solid var(--border);
    background: var(--sand-light);
}
.cat-thumb {
    width: 120px; height: 120px; flex-shrink: 0;
    border-radius: 16px; overflow: hidden;
}
.cat-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
}
.cat-card:hover .cat-thumb img { transform: scale(1.1); }
.cat-header-info { flex: 1; }
.cat-header-info h2 {
    font-family: 'Playfair Display', serif; font-size: 22px;
    font-weight: 700; color: var(--dark); margin-bottom: 2px;
}
.cat-header-info .cat-count {
    font-size: 13px; color: var(--text-light); font-weight: 500;
}
.cat-header-color {
    width: 6px; height: 48px; border-radius: 3px; flex-shrink: 0;
}
.cat-icon-badge {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff;
}
.cat-icon-badge i { font-size: 18px; color: #fff; }

/* ===== PRICE TABLE (Menu Gọi Món) ===== */
.price-table {
    background: #fff; overflow: hidden;
}
.cat-card .price-table { border-radius: 0; }
.cat-card .cat-note { margin: 0; border-radius: 0; border-left: none; border-right: none; }
.price-row {
    display: flex; align-items: baseline; gap: 8px;
    padding: 14px 24px; border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.2s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--sand); }
.price-row .dish-title {
    font-size: 14.5px; font-weight: 500; color: var(--dark);
    white-space: nowrap; flex-shrink: 0;
}
.price-row .dot-line {
    flex: 1; border-bottom: 2px dotted rgba(0,0,0,0.1);
    min-width: 40px; margin-bottom: 4px;
}
.price-row .dish-price-tag {
    font-size: 15px; font-weight: 700; color: var(--ocean-deep);
    white-space: nowrap; flex-shrink: 0;
}
.price-row .dish-price-tag small {
    font-size: 12px; font-weight: 400; color: var(--text-light);
}

/* Dish badges */
.dish-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.dish-badge i { font-size: 9px; }
.dish-badge.best {
    background: linear-gradient(135deg, #FFF3CD, #FFE082);
    color: #856404;
    border: 1px solid #FFD54F;
}
.dish-badge.hot {
    background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
    color: #C62828;
    border: 1px solid #EF9A9A;
}
.dish-badge.new {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}
.price-row.has-badge.badge-best .dish-title {
    color: var(--ocean-deep);
    font-weight: 600;
}
.cat-note {
    margin: -4px 0 12px; padding: 10px 18px;
    background: #FFF8E1; border-radius: 10px; border: 1px solid #FFE082;
    font-size: 13px; color: #F57F17; display: flex; align-items: center; gap: 8px;
}
.category-section { margin-bottom: 32px; }
.category-header { margin-bottom: 14px; }

/* ===== GROUP MENU PAGE ===== */
.group-highlights {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
}
.gh-item {
    display: flex; align-items: center; gap: 14px;
    padding: 24px 28px; border-right: 1px solid var(--border);
    transition: background 0.3s;
}
.gh-item:last-child { border-right: none; }
.gh-item:hover { background: var(--sand); }
.gh-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--red), var(--aqua));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px;
}
.gh-text strong { display: block; font-size: 13.5px; color: var(--dark); margin-bottom: 2px; }
.gh-text span { font-size: 12px; color: var(--text-light); line-height: 1.4; }

.group-menu-section { padding: 60px 50px; background: #FAFAFA; }
.section-intro { text-align: center; margin-bottom: 36px; }
.section-intro .section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--aqua);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.section-intro .section-title {
    font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 10px;
}
.section-intro .section-desc { font-size: 14.5px; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* Price Tabs */
.price-tabs {
    display: flex; justify-content: center; gap: 12px; margin-bottom: 32px; flex-wrap: wrap;
}
.price-tab {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 16px 28px; border: 2px solid #e0e0e0; border-radius: 16px;
    background: #fff; cursor: pointer; transition: all 0.3s;
    min-width: 140px;
}
.price-tab i { font-size: 20px; color: var(--tab-color); transition: color 0.3s; }
.price-tab .tab-price { font-size: 18px; font-weight: 700; color: var(--dark); }
.price-tab .tab-label { font-size: 12px; color: var(--text-light); font-weight: 500; }
.price-tab:hover { border-color: var(--tab-color); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.price-tab.active {
    border-color: var(--tab-color); background: var(--tab-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.price-tab.active i, .price-tab.active .tab-price, .price-tab.active .tab-label { color: #fff; }

/* Menu Panels */
.group-menu-panel { display: none; }
.group-menu-panel.active { display: block; animation: fadeUp 0.4s ease; }

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

.panel-header {
    display: flex; align-items: center; gap: 18px;
    padding: 24px 28px; background: #fff; border-radius: 16px;
    border: 1px solid var(--border); margin-bottom: 24px;
}
.panel-badge {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;
}
.panel-header h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--dark); margin-bottom: 4px; }
.panel-header h3 span { font-size: 14px; font-weight: 400; color: var(--text-light); }
.panel-header p { font-size: 13.5px; color: var(--text-light); }

.menu-sets-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.menu-set-card {
    background: #fff; border: 1px solid var(--border); border-radius: 16px;
    overflow: hidden; transition: all 0.3s;
}
.menu-set-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); transform: translateY(-3px); }
.set-header {
    display: flex; align-items: center; gap: 12px;
    padding: 18px 20px; border-bottom: 1px solid var(--border); background: var(--sand-light);
}
.set-number {
    width: 32px; height: 32px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--ocean-deep), var(--red));
    color: #fff; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
}
.set-header h4 { font-size: 15px; font-weight: 600; color: var(--dark); }
.set-dishes {
    list-style: none; padding: 16px 20px; margin: 0; counter-reset: dish;
}
.set-dishes li {
    position: relative; padding: 7px 0 7px 28px;
    font-size: 13.5px; color: var(--text); line-height: 1.5;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
    counter-increment: dish;
}
.set-dishes li:last-child { border-bottom: none; }
.set-dishes li::before {
    content: counter(dish);
    position: absolute; left: 0; top: 8px;
    width: 20px; height: 20px; background: var(--sand);
    border-radius: 50%; font-size: 10px; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    color: var(--ocean-deep);
}

.menu-notes {
    margin-top: 28px; display: flex; flex-direction: column; gap: 12px;
}
.note-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px 20px; background: #fff; border-radius: 12px;
    border: 1px solid var(--border); font-size: 13.5px; color: var(--text);
}
.note-item i { color: var(--aqua); margin-top: 2px; flex-shrink: 0; }
.note-item strong { color: var(--dark); }

/* Halls */
.group-halls { padding: 60px 50px; background: #fff; }
.halls-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hall-card {
    border-radius: 16px; overflow: hidden; position: relative;
    cursor: pointer; text-decoration: none; display: block;
}
.hall-card img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.4s; }
.hall-card:hover img { transform: scale(1.05); }
.hall-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px 20px; color: #fff;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
}
.hall-info h4 { font-size: 17px; font-weight: 600; margin-bottom: 4px; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.hall-info span { font-size: 13px; color: rgba(255,255,255,0.9); }
.hall-info .hall-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 8px; font-size: 12px; font-weight: 600;
    color: var(--gold); text-decoration: none;
    transition: gap 0.3s;
}
.hall-card:hover .hall-link { gap: 10px; }

/* Partners */
.group-partners { padding: 50px 50px; background: #FAFAFA; }
.partners-row { display: flex; justify-content: center; gap: 40px; align-items: center; flex-wrap: wrap; }
.partner-logo {
    width: 140px; height: 70px; background: #fff; border: 1px solid var(--border);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    padding: 12px; transition: all 0.3s;
}
.partner-logo:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Group CTA */
.group-cta { padding: 60px 50px; background: #fff; }
.cta-inner {
    text-align: center; padding: 48px 40px;
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1B3D 50%, #8B1A1A 100%);
    border-radius: 24px; color: #fff;
}
.cta-inner h3 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 10px; color: #fff; }
.cta-inner p { font-size: 15px; opacity: 0.85; margin-bottom: 28px; color: rgba(255,255,255,0.85); }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 12px; font-size: 14px; font-weight: 600;
    text-decoration: none; transition: all 0.3s;
}
.cta-btn.primary { background: #fff; color: var(--ocean-deep); }
.cta-btn.primary:hover { background: var(--sand); transform: translateY(-2px); }
.cta-btn.secondary { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.cta-btn.secondary:hover { background: rgba(255,255,255,0.2); }
.cta-btn.accent { background: linear-gradient(135deg, var(--red), var(--aqua)); color: #fff; box-shadow: 0 4px 14px rgba(231,76,60,0.3); }
.cta-btn.accent:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(231,76,60,0.4); }

/* Sub-items in dish list (e.g. hotpot ingredients) */
.set-dishes li.sub-item {
    padding-left: 44px; font-size: 12.5px; color: var(--text-light);
    border-bottom: none; padding-top: 3px; padding-bottom: 3px;
}
.set-dishes li.sub-item::before {
    content: '+'; background: transparent; color: var(--aqua);
    font-size: 12px; font-weight: 700; left: 28px; width: auto; height: auto;
}

/* Gala Features Grid */
.gala-features {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.gf-card {
    text-align: center; padding: 32px 24px;
    background: var(--sand-light); border: 1px solid var(--border);
    border-radius: 18px; transition: all 0.3s;
}
.gf-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.gf-icon {
    width: 56px; height: 56px; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--red), var(--aqua));
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;
}
.gf-card h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.gf-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .about-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .booking-content { grid-template-columns: 1fr; }
    .group-highlights { grid-template-columns: 1fr 1fr; }
    .gh-item:nth-child(2) { border-right: none; }
    .halls-grid { grid-template-columns: 1fr; }
    .menu-sets-grid { grid-template-columns: 1fr 1fr; }
    .gala-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .mobile-toggle { display: flex; }
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); box-shadow: 4px 0 30px rgba(0,0,0,0.12); }
    .main { margin-left: 0; }
    .testimonials-content { padding: 60px 20px; }
    .testimonial-text { font-size: 17px; }
    .testimonials { min-height: 400px; }
    .site-footer { margin-left: 0; }
    .hero-content { padding: 40px 28px; }
    .section { padding: 60px 28px; }
    .site-footer { padding: 48px 28px 0; }
    .page-header { padding: 60px 20px 36px; }
    .page-header h1 { font-size: 28px; }
    .booking-content { grid-template-columns: 1fr; padding: 28px 20px; gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .menu-options { grid-template-columns: 1fr 1fr; }
    .menu-toolbar { padding: 16px 20px; }
    .menu-content { padding: 28px 20px 48px; }
    .dish-grid { grid-template-columns: 1fr; }
    .cat-header-row { gap: 14px; padding: 14px 16px; }
    .cat-thumb { width: 80px; height: 80px; border-radius: 12px; }
    .cat-header-info h2 { font-size: 18px; }
    .group-highlights { grid-template-columns: 1fr; }
    .gh-item { border-right: none; border-bottom: 1px solid var(--border); }
    .group-menu-section, .group-halls, .group-partners, .group-cta { padding: 40px 20px; }
    .price-tabs { gap: 8px; }
    .price-tab { min-width: 0; padding: 12px 16px; flex: 1; }
    .price-tab .tab-price { font-size: 15px; }
    .menu-sets-grid { grid-template-columns: 1fr; }
    .gala-features { grid-template-columns: 1fr; }
    .panel-header { flex-direction: column; text-align: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-btn { width: 100%; justify-content: center; max-width: 320px; }
    .generic-page-content .photo_wall_wrapper .wall_entry { width: calc(50% - 8px); }
}

/* ===== ALBUM HERO (video/image + overlay title) ===== */
.album-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    background: #0a0a1a;
    display: flex;
    align-items: flex-end;
}
.album-hero.no-video {
    min-height: 320px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--ocean-deep) 100%);
}

/* Video background */
.album-hero .album-video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.album-hero .album-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180%;
    height: 180%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

/* Image background */
.album-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

/* Gradient overlay — only bottom for text readability */
.album-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,10,26,0.85) 0%, rgba(10,10,26,0.3) 35%, transparent 60%);
    z-index: 1;
}

/* Content on top */
.album-hero-content {
    position: relative;
    z-index: 2;
    padding: 48px 48px 40px;
    max-width: 800px;
}
.album-hero-badge {
    display: inline-block;
    background: var(--gold);
    color: #1a1a2e;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.album-hero-badge i {
    margin-right: 6px;
}
.album-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.album-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}
.album-hero-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.album-hero-breadcrumb a:hover {
    color: var(--gold);
}
.album-hero-breadcrumb strong {
    color: #fff;
}
.album-hero-breadcrumb span {
    color: rgba(255,255,255,0.4);
}

/* ===== ABOUT / GIỚI THIỆU PAGE ===== */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #0a0a1a;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,10,26,0.88) 0%, rgba(10,10,26,0.3) 40%, transparent 70%);
    z-index: 1;
}
.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 48px 48px 44px;
    max-width: 800px;
}
.about-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.about-hero-content h1 .gold { color: var(--gold); }
.about-hero-content > p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Section label */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-label i { margin-right: 6px; }

/* Intro section */
.about-intro {
    padding: 72px 48px;
    background: #fff;
}
.about-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
}
.about-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}
.about-intro-text p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-values {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}
.about-value {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--aqua-soft);
    border-radius: 10px;
    border-left: 3px solid var(--ocean-deep);
}
.about-value i {
    color: var(--ocean-deep);
    font-size: 18px;
}
.about-value span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}
.about-intro-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Content sections */
.about-section {
    padding: 72px 48px;
    background: #fff;
}
.about-section-dark {
    background: #f7f5f3;
}
.about-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
}
.about-section-inner.reverse {
    direction: rtl;
}
.about-section-inner.reverse > * {
    direction: ltr;
}
.about-section-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.about-section-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}
.about-section-text p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}
.about-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}
.about-list li i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}
.about-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid));
    border-radius: 12px;
    margin: 20px 0;
}
.about-highlight i {
    color: var(--gold);
    font-size: 22px;
}
.about-highlight span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
}

/* Stats */
.about-stats {
    padding: 60px 48px;
    background: linear-gradient(135deg, var(--dark) 0%, #2a1a3e 100%);
}
.about-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.stat-item i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 8px;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}
.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About CTA */
.about-cta {
    padding: 60px 48px;
    text-align: center;
    background: #fff;
}
.about-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 12px;
}
.about-cta > p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 28px;
}

/* Responsive about */
@media (max-width: 1100px) {
    .about-intro-inner,
    .about-section-inner { grid-template-columns: 1fr; gap: 32px; }
    .about-section-inner.reverse { direction: ltr; }
    .about-values { flex-wrap: wrap; }
    .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .about-hero { min-height: 380px; }
    .about-hero-content h1 { font-size: 38px; }
}
@media (max-width: 860px) {
    .about-intro,
    .about-section,
    .about-stats,
    .about-cta { padding: 48px 20px; }
    .about-hero-content { padding: 32px 20px 28px; }
    .about-hero-content h1 { font-size: 30px; }
    .about-hero { min-height: 320px; }
    .about-intro-text h2 { font-size: 26px; }
    .about-section-text h2 { font-size: 24px; }
    .about-values { gap: 12px; }
    .about-value { padding: 10px 14px; }
    .about-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-number { font-size: 32px; }
    .about-cta h2 { font-size: 24px; }
}

/* ===== GENERIC PAGE CONTENT ===== */
.generic-page-content {
    padding: 36px 48px 60px;
    max-width: 1400px;
}

/* Override parent theme page elements that leak through */
#page_caption { display: none !important; }
#page_content_wrapper { padding: 0 !important; margin: 0 !important; background: transparent !important; }
#page_content_wrapper .inner { padding: 0 !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; }
#page_content_wrapper .inner_wrapper { padding: 0 !important; margin: 0 !important; }
#page_content_wrapper .sidebar_content { padding: 0 !important; margin: 0 !important; }

/* Hide RevSlider remnants */
rs-module-wrap, .rs-p-wp-fix { display: none !important; }

/* Hide ppb page builder title (we use our own page-header) */
.one.withsmallpadding.ppb_header { display: none !important; }
.page_content_wrapper, .standard_wrapper { padding: 0 !important; margin: 0 !important; }

/* Photo Wall Gallery — override parent theme completely, disable isotope */
.generic-page-content .photo_wall_wrapper,
.generic-page-content .photo_wall_wrapper.shortcode,
.generic-page-content .photo_wall_wrapper.shortcode.withmargin {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}
.generic-page-content .photo_wall_wrapper .wall_entry,
.generic-page-content .photo_wall_wrapper .wall_entry.withmargin {
    position: relative !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    width: calc(25% - 9px) !important;
    float: none !important;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 !important;
}
.generic-page-content .photo_wall_wrapper .wall_entry .wall_thumbnail {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
}
.generic-page-content .photo_wall_wrapper .wall_entry .wall_thumbnail img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.generic-page-content .photo_wall_wrapper .wall_entry:hover .wall_thumbnail img {
    transform: scale(1.08);
}
.generic-page-content .photo_wall_wrapper .wall_entry .wall_thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Section headings inside gallery pages */
.generic-page-content .one {
    margin-bottom: 40px;
    float: none !important;
    width: 100% !important;
}
/* Clear float containment */
.generic-page-content::after {
    content: '';
    display: table;
    clear: both;
}
.generic-page-content .one[id]::before {
    content: attr(id);
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

/* Responsive gallery + album hero */
@media (max-width: 1100px) {
    .generic-page-content { padding: 28px 32px 48px; }
    .generic-page-content .photo_wall_wrapper .wall_entry,
    .generic-page-content .photo_wall_wrapper .wall_entry.withmargin { width: calc(33.333% - 8px) !important; }
    .album-hero { min-height: 360px; }
    .album-hero-content h1 { font-size: 34px; }
    .album-hero-content { padding: 36px 32px 32px; }
}
@media (max-width: 860px) {
    .generic-page-content { padding: 20px 20px 40px; }
    .generic-page-content .photo_wall_wrapper .wall_entry,
    .generic-page-content .photo_wall_wrapper .wall_entry.withmargin { width: calc(50% - 6px) !important; }
    .album-hero { min-height: 300px; }
    .album-hero-content h1 { font-size: 28px; }
    .album-hero-content { padding: 28px 20px 24px; }
    .album-hero-breadcrumb { font-size: 12px; flex-wrap: wrap; }
}
