@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600;1,700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap'); :root { --cream: #ece3d3; --cream-2: #e3d8c4; --crimson: #9e1b22; --crimson-2: #841319; --crimson-lt: #d8595e; /* crimson sáng dùng trên ảnh tối */ --terra: #6e3f29; /* nâu đất ấm (nền section nhân vật) */ --ink: #2a211c; --muted: rgba(42, 33, 28, .62); --muted2: rgba(42, 33, 28, .42); --line: rgba(42, 33, 28, .22); --font-head: "Playfair Display", Georgia, "Times New Roman", serif; --font: "EB Garamond", Georgia, serif; } @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap'); * { box-sizing: border-box; margin: 0; padding: 0 } html { scroll-behavior: smooth } body { font-family: var(--font); background: var(--cream); color: var(--ink); line-height: 1.55; font-size: 18px; overflow-x: hidden; -webkit-tap-highlight-color: transparent; -webkit-text-size-adjust: 100% } a { color: inherit; text-decoration: none } svg { display: block } img { display: block; max-width: 100% } /* khung chứa nội dung tối đa 1400px (nền section vẫn full-width) */ .container { width: 100%; max-width: 1400px; margin-left: auto; margin-right: auto; padding-left: 56px; padding-right: 56px } /* ============ NAVBAR (thanh ngang, overlay trên ảnh) ============ */ .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 24px 0; transition: all .3s } .nav-inner { display: flex; align-items: center; justify-content: space-between } .nav.scrolled { background: rgba(236, 227, 211, .92); backdrop-filter: blur(10px); padding: 14px 0; border-bottom: 1px solid var(--line) } .logo { display: flex; flex-direction: column; line-height: 1.05 } .logo .mark { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: #fff; letter-spacing: .3px } .logo .sub { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, .6); margin-top: 3px } .nav.scrolled .logo .mark { color: var(--crimson) } .nav.scrolled .logo .sub { color: var(--muted2) } .nav-links { display: flex; gap: 30px; align-items: center } .nav-links a { font-family: var(--font-head); font-size: 17px; font-weight: 500; color: rgba(255, 255, 255, .8); position: relative; transition: color .2s } /* màu chữ menu nướng sẵn vào class phẳng (không phụ thuộc selector lồng) */ .nlink { color: rgba(255, 255, 255, .9); font-family: var(--font-head); font-size: 17px; font-weight: 500; position: relative; transition: color .2s } .nav-links a:hover { color: #fff } .nav-links a.active { color: #fff; font-weight: 600 } .nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; background: var(--crimson-lt); border-radius: 2px } .nav.scrolled .nav-links a { color: var(--muted) } .nav.scrolled .nav-links a:hover { color: var(--ink) } .nav.scrolled .nav-links a.active { color: var(--crimson) } .nav.scrolled .nav-links a.active::after { background: var(--crimson) } /* dropdown menu ngang */ .ddrop { position: relative; display: flex; align-items: center } .dtop { display: inline-flex; align-items: center; gap: 6px; cursor: pointer } .cv { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; margin-left: 1px; opacity: .75; transition: transform .2s } .ddrop:hover .cv { transform: rotate(180deg) } .ddrop::after { content: ""; position: absolute; left: -10px; right: -10px; top: 100%; height: 18px } .dpanel { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 248px; background: rgba(22, 14, 10, .92); border: 1px solid rgba(255, 255, 255, .14); border-radius: 14px; box-shadow: 0 24px 50px rgba(0, 0, 0, .45); backdrop-filter: blur(10px); padding: 10px; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s; z-index: 60 } .ddrop:hover .dpanel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) } .dpanel a { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 9px; font-size: 15px; font-weight: 500; color: #fff !important; white-space: nowrap } .dpanel a::after { display: none !important } .dpanel a:hover { background: rgba(255, 255, 255, .10); color: #fff !important } .dpanel .dn { font-size: 12px; font-weight: 700; color: var(--crimson-lt); min-width: 16px } /* chữ dropdown trắng — nướng vào class phẳng */ .dlink { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 9px; font-size: 15px; font-weight: 500; color: #fff; white-space: nowrap } .nav-right { display: flex; align-items: center; gap: 16px } .icon-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .4); display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; background: transparent; transition: all .2s } .icon-btn svg { width: 18px; height: 18px } /* glyph icon thay cho SVG tĩnh (hiện đúng khi sang Webflow) */ .ig { display: inline-flex; align-items: center; justify-content: center; line-height: 1; font-size: 20px; font-style: normal } .icon-btn .ig { font-size: 18px } .act.play .ig { font-size: 24px } .hero-arrow .ig { font-size: 22px } .icon-btn:hover { background: #fff; color: var(--crimson) } .nav.scrolled .icon-btn { border-color: var(--line); color: var(--ink) } .nav.scrolled .icon-btn:hover { background: var(--crimson); color: #fff; border-color: var(--crimson) } .nav-cta { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255, 255, 255, .6); color: #fff; border-radius: 30px; padding: 9px 20px; font-family: var(--font-head); font-size: 15px; font-weight: 600; cursor: pointer; transition: all .2s } .nav-cta:hover { background: #fff; color: var(--crimson) } .nav-cta .ar { width: 22px; height: 1.5px; background: currentColor; position: relative } .nav-cta .ar::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg) } .nav.scrolled .nav-cta { border-color: var(--crimson); color: var(--crimson) } .nav.scrolled .nav-cta:hover { background: var(--crimson); color: #fff } .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px } .burger span { width: 26px; height: 2px; background: #fff; border-radius: 2px } /* ============ HERO full-width (1 ảnh nền phủ cả 2 phần) ============ */ .hero { position: relative; width: 100%; min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; color: #fff; overflow: hidden } /* ẢNH NỀN — THAY ĐƯỢC TRONG WEBFLOW (Image / Background, phủ cả hero) */ .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0 } .hero-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(18, 11, 8, .90) 0%, rgba(18, 11, 8, .55) 42%, rgba(18, 11, 8, .10) 78%), linear-gradient(0deg, rgba(18, 11, 8, .85) 0%, rgba(18, 11, 8, .10) 45%); } .hero-inner { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 130px 0 340px } /* phần nội dung mô tả (trên) */ .hero-body { max-width: 640px } .hero-title { font-family: var(--font-head); font-weight: 700; font-size: 68px; line-height: 1.02; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 18px; text-shadow: 0 3px 24px rgba(0, 0, 0, .4) } .hmeta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 14px; letter-spacing: 1px; color: rgba(255, 255, 255, .85); margin-bottom: 20px } .hmeta .dot { opacity: .5 } .tag { background: var(--crimson); color: #fff; padding: 4px 12px; border-radius: 6px; font-size: 12px; letter-spacing: .5px } .hdesc { font-size: 16px; color: rgba(255, 255, 255, .82); max-width: 540px; margin-bottom: 30px; line-height: 1.6 } .hactions { display: flex; align-items: center; gap: 14px } .act { width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .4); background: rgba(255, 255, 255, .10); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; backdrop-filter: blur(4px) } .act svg { width: 22px; height: 22px } .act:hover { background: rgba(255, 255, 255, .22) } .act.play { width: 64px; height: 64px; background: var(--crimson); border-color: var(--crimson); box-shadow: 0 10px 26px rgba(158, 27, 34, .55) } .act.play:hover { background: var(--crimson-2) } .act.play svg { width: 26px; height: 26px } /* slider: fade + điều khiển */ .hero-bg, .hero-body { transition: opacity .4s ease } .hero.swapping .hero-bg, .hero.swapping .hero-body { opacity: 0 } .hero-arrow { position: absolute; top: 40%; transform: translateY(-50%); z-index: 4; width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .4); background: rgba(20, 12, 9, .35); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; backdrop-filter: blur(4px) } .hero-arrow:hover { background: var(--crimson); border-color: var(--crimson) } .hero-arrow svg { width: 22px; height: 22px } .hero-arrow.left { left: 24px } .hero-arrow.right { right: 24px } /* 3 slide chồng lên nhau, mờ chuyển (nền + nội dung) */ .hslide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .6s ease; display: flex; flex-direction: column; z-index: 0 } .hslide.on { opacity: 1; visibility: visible; z-index: 1 } /* CHÂN HERO — gợi ý sách + chấm tròn nằm TRÊN ảnh nền (đáy hero) */ .hero-foot { position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; padding-bottom: 38px } .dots { display: flex; gap: 10px; justify-content: flex-start; margin: 0 0 24px } .dots b { width: 28px; height: 5px; border-radius: 5px; background: rgba(255, 255, 255, .45); cursor: pointer; transition: all .2s } .dots b.on { background: #fff; width: 42px } /* phần sách gợi ý (dưới, cùng ảnh nền) */ .more { margin-top: 40px } .more-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px } .more-head .ttl { font-family: var(--font-head); font-size: 22px; font-weight: 600; color: #fff } .see-all { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 15px; font-weight: 600; cursor: pointer; opacity: .9 } .see-all svg { width: 18px; height: 18px; color: var(--crimson-lt) } .see-all:hover { opacity: 1 } .covers { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px } .cover { cursor: pointer; transition: transform .2s; display: block; color: #fff } .cover:hover { transform: translateY(-6px) } .cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0 } .cover .pic { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 3/4; box-shadow: 0 14px 30px rgba(0, 0, 0, .4); display: flex; align-items: flex-end; padding: 14px; border: 1px solid rgba(255, 255, 255, .12) } .cover .pic::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .75)) } .cover .pic .nm { position: relative; z-index: 2; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff; text-shadow: 0 2px 10px #000; line-height: 1.2 } .cover .pic .hint { position: absolute; top: 10px; right: 10px; z-index: 2; width: 28px; height: 28px; border-radius: 50%; background: rgba(255, 255, 255, .9); color: var(--crimson); display: flex; align-items: center; justify-content: center; font-size: 14px; opacity: 0; transition: opacity .2s } .cover:hover .pic .hint { opacity: 1 } /* ============ SECTION 3 CỘT NHÂN VẬT (mood Harvard) ============ */ .people { background: var(--cream); padding: 88px 0 } .people-label { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--crimson); font-weight: 600; margin-bottom: 16px } .people-title { font-family: var(--font-head); font-size: 36px; font-weight: 700; margin-bottom: 52px; line-height: 1.2; max-width: 780px } .people-title em { font-style: italic; font-weight: 500; color: var(--muted) } .people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px } .pcol { border: none; border-radius: 4px; padding: 0; display: flex; flex-direction: column; background: transparent } /* nút "Xem thêm" góc phải trên của section */ .people .container { position: relative } .people-more { position: absolute; top: 6px; right: 56px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); font-weight: 600; border-bottom: 1px solid transparent; padding-bottom: 2px; transition: color .2s, border-color .2s } .people-more:hover { color: var(--crimson); border-color: var(--crimson) } .people-more .ig { font-size: 16px } .pcol .role { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted2); margin-bottom: 10px } .pcol .nm { font-family: var(--font-head); font-size: 23px; font-weight: 700; margin-bottom: 22px; line-height: 1.2 } .pcol .pimg { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; margin-bottom: 22px; filter: grayscale(.12) } .pcol .bio { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 26px; flex: 1 } .pcol .explore { display: flex; align-items: center; justify-content: space-between; margin-top: auto } .pcol .explore span { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink) } .pcol .ebtn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--crimson); transition: all .2s; flex: 0 0 auto } .pcol .ebtn svg { width: 16px; height: 16px } .pcol:hover .ebtn, .pcol .ebtn:hover { background: var(--crimson); color: #fff; border-color: var(--crimson) } .pcol:hover .ebtn .ig, .pcol .ebtn:hover .ig { color: #fff } /* ============ SECTION SHORT VIDEOS ============ */ .shorts { background: var(--cream); padding: 56px 0 62px } .sh-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px } .sh-h { display: flex; align-items: baseline; gap: 14px } .sh-num { font-size: 13px; letter-spacing: 2px; color: var(--crimson-lt); font-weight: 600 } .sh-title2 { font-family: var(--font-head); font-size: 30px; font-weight: 700; font-style: italic } .sh-sub { font-size: 14px; color: var(--muted); margin-top: 8px; padding-left: 28px } .sh-all { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); cursor: pointer; font-weight: 600; white-space: nowrap } .sh-all:hover { color: var(--crimson) } .sh-track { display: flex; gap: 20px; overflow-x: auto; padding-top: 4px; padding-bottom: 18px; scroll-snap-type: x proximity } .sh-track::-webkit-scrollbar { height: 8px } .sh-track::-webkit-scrollbar-track { background: rgba(42, 33, 28, .08); border-radius: 8px } .sh-track::-webkit-scrollbar-thumb { background: rgba(42, 33, 28, .28); border-radius: 8px } .sh-card { flex: 0 0 228px; scroll-snap-align: start; cursor: pointer } .sh-tile { position: relative; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; border: 1px solid var(--line) } .sh-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .3s } .sh-card:hover .sh-thumb { transform: scale(1.05) } .sh-pill { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(20, 8, 8, .55); color: #f3e9da; font-size: 11px; letter-spacing: 1.5px; font-weight: 600; padding: 6px 13px; border-radius: 30px; border: 1px solid rgba(243, 233, 218, .2) } .sh-fade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, .78)) } .sh-dur { position: absolute; right: 14px; top: 14px; z-index: 2; font-size: 12px; font-weight: 700; color: #fff; background: rgba(20, 8, 8, .5); padding: 4px 10px; border-radius: 30px; border: 1px solid rgba(243, 233, 218, .2) } /* nội dung đè trên ảnh (góc dưới) */ .sh-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px } .sh-idx { display: block; font-size: 11px; letter-spacing: 1.5px; color: rgba(243, 233, 218, .82); font-weight: 600; margin-bottom: 5px } .sh-play { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s } .sh-card:hover .sh-play { opacity: 1 } .sh-play span { width: 54px; height: 54px; border-radius: 50%; background: rgba(255, 255, 255, .92); color: var(--crimson); display: flex; align-items: center; justify-content: center; font-size: 16px; padding-left: 3px; box-shadow: 0 6px 20px rgba(0, 0, 0, .35) } .sh-vtitle { font-family: var(--font-head); font-size: 17px; font-weight: 700; line-height: 1.25; margin: 0; color: #fff; text-shadow: 0 2px 10px rgba(0, 0, 0, .55) } .sh-views { font-size: 12.5px; color: rgba(243, 233, 218, .82); margin-top: 4px; padding: 0 } /* ---- modal kiểu TikTok (vuốt dọc) ---- */ .sv-modal { position: fixed; inset: 0; z-index: 200; background: rgba(18, 7, 7, .94); backdrop-filter: blur(8px); display: none } .sv-modal.open { display: block } .sv-stage { height: 100%; overflow-y: auto; scroll-snap-type: y mandatory; scroll-behavior: smooth } .sv-stage::-webkit-scrollbar { display: none } .sv-slide { height: 100%; scroll-snap-align: center; display: flex; align-items: center; justify-content: center; gap: 18px } .sv-phone { position: relative; height: min(86vh, 720px); aspect-ratio: 9/16; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 90px rgba(0, 0, 0, .6); background: #000 } .sv-phone img { width: 100%; height: 100%; object-fit: cover } .sv-grad { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0, 0, 0, .15) 50%, rgba(0, 0, 0, .78)) } .sv-bigplay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; pointer-events: none } .sv-bigplay span { width: 74px; height: 74px; border-radius: 50%; background: rgba(255, 255, 255, .20); border: 1px solid rgba(255, 255, 255, .5); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; padding-left: 4px } .sv-info { position: absolute; left: 18px; right: 18px; bottom: 20px; z-index: 3; color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, .6) } .sv-info .pill { display: inline-block; background: rgba(20, 8, 8, .55); border: 1px solid rgba(243, 233, 218, .25); font-size: 11px; letter-spacing: 1.5px; font-weight: 600; padding: 5px 12px; border-radius: 30px; margin-bottom: 12px } .sv-info h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; line-height: 1.25; margin-bottom: 6px } .sv-info .v { font-size: 13px; color: rgba(255, 255, 255, .82) } .sv-actions { display: flex; flex-direction: column; gap: 18px; align-self: flex-end; margin-bottom: 34px } .sv-act { display: flex; flex-direction: column; align-items: center; gap: 6px; color: #fff; cursor: pointer } .sv-act .ic { width: 50px; height: 50px; border-radius: 50%; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background .2s } .sv-act .ic:hover { background: rgba(255, 255, 255, .24) } .sv-act small { font-size: 12px } .sv-close { position: fixed; top: 20px; right: 24px; z-index: 210; width: 46px; height: 46px; border-radius: 50%; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .3); color: #fff; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center } .sv-close:hover { background: rgba(255, 255, 255, .25) } .sv-nav { position: fixed; right: 34px; z-index: 210; width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .3); color: #fff; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center } .sv-nav:hover { background: rgba(255, 255, 255, .25) } .sv-nav.up { top: calc(50% - 58px) } .sv-nav.down { top: calc(50% + 12px) } /* ============ SECTION CÂU CHUYỆN + CẢM NHẬN (nền đỏ) ============ */ .story { background: #2e0809; color: #fff; padding: 84px 0 74px } .story-top { display: grid; grid-template-columns: 1fr 1.02fr; gap: 56px; align-items: center; max-width: 1180px; margin: 0 auto } .story-img { width: 100%; aspect-ratio: 4/3.3; object-fit: cover; border-radius: 18px; display: block; border: 1px solid rgba(255, 255, 255, .18) } .story-text .slabel { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, .7); margin-bottom: 16px } .story-text h2 { font-family: var(--font-head); font-size: 40px; font-weight: 700; line-height: 1.14; margin-bottom: 20px } .story-text p { font-size: 16px; color: rgba(255, 255, 255, .86); line-height: 1.7; margin-bottom: 16px; max-width: 540px } .story-text p.small { font-size: 13.5px; color: rgba(255, 255, 255, .62); line-height: 1.65 } .reviews { max-width: 1180px; margin: 72px auto 0 } .reviews-title { text-align: center; font-family: var(--font-head); font-size: 27px; font-weight: 700; margin-bottom: 42px } .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px } .rev { background: var(--cream); color: var(--ink); border: 1px solid rgba(255, 255, 255, .25); border-radius: 16px; padding: 30px 26px; text-align: center; display: flex; flex-direction: column; align-items: center } .rev .rav { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 1px solid var(--line); filter: grayscale(.25) } .rev .q { font-family: var(--font-head); font-size: 16px; font-style: italic; line-height: 1.62; margin-bottom: 16px } .rev .who { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted) } .rev-dots { display: flex; gap: 9px; justify-content: center; align-items: center; margin-top: 38px } .rev-dots b { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .4); cursor: pointer; transition: all .2s } .rev-dots b.on { background: #fff; width: 26px; border-radius: 5px } /* ============ SECTION ABOUT (text + ảnh) ============ */ .about { background: var(--cream); padding: 92px 0 70px } .about-label { text-align: center; font-family: var(--font-head); font-size: 30px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 54px } .about-label .fill { color: var(--ink); margin-right: .4em } .about-label .out { color: var(--muted2) } .about-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center } .about-wm { position: absolute; left: -6px; top: -78px; z-index: 0; font-family: var(--font-head); font-weight: 800; font-size: 150px; line-height: 1; color: rgba(42, 33, 28, .06); pointer-events: none; text-transform: lowercase } .about-text { position: relative; z-index: 1 } .about-title { font-family: var(--font-head); font-size: 34px; font-weight: 700; line-height: 1.15; margin-bottom: 22px } .about-text p { font-size: 16px; color: var(--muted); line-height: 1.78; max-width: 480px } .about-img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: 4px; box-shadow: 0 34px 64px rgba(42, 33, 28, .20) } /* ============ SECTION FOOTAGE (dải video kéo ngang, hover zoom) ============ */ .footage { background: var(--cream); padding: 8px 0 92px } .ft-head { margin-bottom: 28px } .ft-title { text-align: center; font-family: var(--font-head); font-size: 30px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase } .ft-title .fill { color: var(--crimson); margin-right: .4em } .ft-title .out { color: var(--muted2) } .ft-wrap { position: relative; max-width: 1400px; margin-left: auto; margin-right: auto } .ft-track { display: flex; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none } .ft-track::-webkit-scrollbar { display: none } .ft-card { position: relative; flex: 0 0 25%; min-width: 330px; height: 840px; aspect-ratio: auto; max-height: none; overflow: hidden; scroll-snap-align: start; cursor: pointer; display: block; background: #3f4636 } .ft-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease } .ft-card:hover .ft-img { transform: scale(1.08) } .ft-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .48)) } /* gradient đen bên phải để ngăn cách giữa các video */ .ft-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, transparent 58%, rgba(0, 0, 0, .62)) } .ft-vlabel { position: absolute; left: 16px; bottom: 22px; z-index: 2; writing-mode: vertical-rl; transform: rotate(180deg); font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255, 255, 255, .88) } .ft-full { position: absolute; right: 16px; top: 18px; z-index: 3; background: rgba(20, 12, 9, .55); border: 1px solid rgba(255, 255, 255, .32); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 13px; border-radius: 30px; opacity: 0; transform: translateY(-4px); transition: all .25s } .ft-card:hover .ft-full { opacity: 1; transform: translateY(0) } .ft-play { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s } .ft-card:hover .ft-play { opacity: 1 } .ft-play .circle { width: 64px; height: 64px; border-radius: 50%; background: var(--crimson); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; padding-left: 3px; box-shadow: 0 10px 26px rgba(158, 27, 34, .5) } .ft-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 50px; height: 50px; border-radius: 50%; background: var(--cream); border: 1px solid var(--line); color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 8px 22px rgba(42, 33, 28, .20) } .ft-nav.prev { left: 12px } .ft-nav.next { right: 12px } .ft-nav:hover { background: var(--crimson); color: #fff; border-color: var(--crimson) } /* ============ SECTION VẤN ĐỀ (editorial 2 cột) ============ */ .issues { background: var(--cream); padding: 82px 0 } .iss-top { display: flex; align-items: center; gap: 18px; margin-bottom: 42px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted) } .iss-top .ln { flex: 1; height: 1px; background: var(--line) } .iss-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; row-gap: 0; align-items: stretch } .iss-right { display: contents } /* tách ảnh lớn & khối chữ thành 2 ô lưới riêng */ .iss-left { display: flex; flex-direction: column; grid-column: 1; grid-row: 1 } /* cao = hàng 1 = ảnh lớn */ .iss-hero { grid-column: 2; grid-row: 1; align-self: start } .iss-block { grid-column: 2; grid-row: 2 } .iss-title { font-family: var(--font-head); font-size: 46px; font-weight: 500; line-height: 1.08; color: var(--ink); margin-bottom: 38px } .iss-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: auto; margin-bottom: 26px } .iss-item { display: flex; align-items: flex-start; gap: 12px } .iss-badge { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--crimson); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700 } .iss-item .lbl { font-size: 14px; color: var(--muted); line-height: 1.5 } .iss-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px } .iss-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px } .iss-hero { width: 100%; height: auto; aspect-ratio: auto; object-fit: cover; border-radius: 4px; margin-bottom: 0; background: var(--cream-2) } .iss-img { background: var(--cream-2) } .iss-block { display: flex; align-items: flex-start; gap: 14px; margin-top: 24px } .iss-sub { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px } .iss-block p { font-size: 14px; color: var(--muted); line-height: 1.72 } /* ============ SECTION AUDIO (trình phát "Đang phát" — tone nâu vàng) ============ */ .audio { background: radial-gradient(120% 140% at 14% 0%, #3a0d10 0%, #160607 62%); color: #efe6d4; padding: 84px 0 92px } .au-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px } .au-label { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: #d8595e; font-weight: 600; margin-bottom: 12px } .au-title { font-family: var(--font-head); font-size: 40px; font-weight: 600; line-height: 1.1; color: #efe6d4 } .au-title em { font-style: italic; color: #d8595e } .au-all { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: #d8595e; font-weight: 600; white-space: nowrap; flex: 0 0 auto; border-bottom: 1px solid transparent; padding-bottom: 3px; transition: color .2s, border-color .2s } .au-all .ig { font-size: 16px } .au-all:hover { color: #e8707a; border-color: #d8595e } /* KHUNG TRÌNH PHÁT (trái: đang phát · phải: danh sách) */ .au-player { display: grid; grid-template-columns: 1.5fr 1fr; border-radius: 26px; overflow: hidden; background: linear-gradient(140deg, #3a0e11 0%, #170607 72%); border: 1px solid rgba(216, 89, 94, .14); box-shadow: 0 40px 90px rgba(0, 0, 0, .45) } /* TRÁI — đang phát */ .aup-now { padding: 46px 44px; display: flex; flex-direction: column; align-items: center; text-align: center } .aup-status { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: #c2565c; font-weight: 600; margin-bottom: 26px } .aup-eq { display: inline-flex; gap: 2px; align-items: flex-end; height: 14px } .aup-eq i { width: 3px; background: #d8595e; border-radius: 2px; transform-origin: bottom; animation: aueq 1s ease-in-out infinite } .aup-eq i:nth-child(1) { height: 7px } .aup-eq i:nth-child(2) { height: 14px; animation-delay: .25s } .aup-eq i:nth-child(3) { height: 10px; animation-delay: .5s } @keyframes aueq { 0%, 100% { transform: scaleY(.45) } 50% { transform: scaleY(1) } } .aup-cover { width: min(330px, 72%); aspect-ratio: 1/1; border-radius: 20px; object-fit: cover; box-shadow: 0 30px 60px rgba(0, 0, 0, .5); border: 1px solid rgba(216, 89, 94, .18); background: #2a0f12 } .aup-title { font-family: var(--font-head); font-size: 32px; font-weight: 700; margin-top: 28px; color: #efe6d4; line-height: 1.15 } .aup-artist { font-size: 15px; color: rgba(239, 230, 212, .55); margin-top: 6px } .aup-progress { display: flex; align-items: center; gap: 14px; width: 100%; max-width: 520px; margin: 28px 0 2px; font-size: 12px; color: rgba(239, 230, 212, .5); font-variant-numeric: tabular-nums } .aup-rail { flex: 1; height: 4px; background: rgba(239, 230, 212, .15); border-radius: 4px; overflow: hidden } .aup-fill { height: 100%; width: 6%; background: linear-gradient(90deg, #c2565c, #e0555c); border-radius: 4px } .aup-controls { display: flex; align-items: center; gap: 26px; margin-top: 22px; color: #efe6d4 } .aup-controls button { cursor: pointer; padding: 0; transition: color .2s, filter .2s } /* căn giữa + nền nướng vào CLASS PHẲNG (bền khi Webflow đổi button→div, không cần !important) */ .aup-sec { display: inline-flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; padding: 0; font-size: 17px; color: rgba(239, 230, 212, .72); transition: color .2s } .aup-sec:hover { color: #d8595e } .aup-play { display: inline-flex; align-items: center; justify-content: center; border: none; cursor: pointer; padding: 0; width: 66px; height: 66px; border-radius: 50%; background: linear-gradient(150deg, #c62834, #9e1b22); color: #fff; font-size: 22px; box-shadow: 0 12px 34px rgba(216, 89, 94, .5); flex: 0 0 auto } .aup-play:hover { filter: brightness(1.05) } .aup-fav.liked { color: #d8595e } /* PHẢI — danh sách phát */ .aup-panel { background: rgba(20, 6, 7, .45); border-left: 1px solid rgba(216, 89, 94, .12); padding: 28px 24px; display: flex; flex-direction: column; min-height: 0 } .aup-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px } .aup-panel-head b { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: #efe6d4 } .aup-panel-head span { font-size: 12px; color: rgba(239, 230, 212, .45) } .aup-list { display: flex; flex-direction: column; gap: 2px; overflow-y: auto; flex: 1; scrollbar-width: thin } .aup-track { display: grid; grid-template-columns: 24px 46px 1fr auto 20px; gap: 13px; align-items: center; padding: 11px 12px; border-radius: 14px; cursor: pointer; transition: background .2s; border: 1px solid transparent } .aup-track:hover { background: rgba(216, 89, 94, .06) } .aup-track.on { background: rgba(216, 89, 94, .1); border-color: rgba(216, 89, 94, .22) } .aup-num { font-size: 13px; color: rgba(239, 230, 212, .4); text-align: center; font-variant-numeric: tabular-nums } .aup-track.on .aup-num { color: #d8595e } .aup-thumb { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; background: rgba(239, 230, 212, .1) } .aup-tinfo { min-width: 0 } .aup-ttitle { font-size: 15px; font-weight: 600; color: #efe6d4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis } .aup-track.on .aup-ttitle { color: #d8595e } .aup-tartist { font-size: 12.5px; color: rgba(239, 230, 212, .5); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis } .aup-tdur { font-size: 12.5px; color: rgba(239, 230, 212, .4); font-variant-numeric: tabular-nums } .aup-tlike { color: rgba(239, 230, 212, .32); cursor: pointer; font-size: 14px; text-align: center; transition: color .2s } .aup-tlike:hover, .aup-tlike.liked { color: #d8595e } .aup-more { text-align: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(216, 89, 94, .12); font-size: 13px; letter-spacing: 1px; color: #d8595e; font-weight: 600; cursor: pointer } .aup-more:hover { color: #e8707a } .aplayer { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 12px 26px; background: rgba(236, 227, 211, .96); backdrop-filter: blur(12px); border-top: 1px solid var(--line); box-shadow: 0 -8px 30px rgba(42, 33, 28, .14); transform: translateY(120%); transition: transform .35s ease } .aplayer.show { transform: translateY(0) } .ap-left { display: flex; align-items: center; gap: 12px; min-width: 0 } .ap-cover { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; flex: 0 0 auto } .ap-meta { min-width: 0 } .ap-title { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis } .ap-artist { font-size: 12px; color: var(--muted); margin-top: 2px } .ap-center { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 340px } .ap-controls { display: flex; align-items: center; gap: 20px } .ap-controls button { background: none; border: none; cursor: pointer; color: var(--ink); font-size: 17px; padding: 0 } .ap-play { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--crimson) !important; color: var(--crimson) !important; display: flex; align-items: center; justify-content: center; font-size: 15px !important } .ap-bar { display: flex; align-items: center; gap: 12px; width: 100% } .ap-cur, .ap-total { font-size: 11px; color: var(--muted2); min-width: 40px } .ap-total { text-align: right } .ap-rail { flex: 1; height: 4px; background: var(--line); border-radius: 4px; overflow: hidden; cursor: pointer } .ap-fill { height: 100%; width: 0; background: var(--crimson); border-radius: 4px } .ap-right { display: flex; align-items: center; justify-content: flex-end; gap: 16px; color: var(--muted2); font-size: 14px } /* ============ SECTION YOGA (thẻ lớp dọc — tone nâu vàng, như mẫu) ============ */ .yoga { background: #1a0607; color: #efe6d4; padding: 70px 0 } .yo-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 26px } .yo-htext { display: flex; align-items: baseline; gap: 15px; flex-wrap: wrap; min-width: 0 } .yo-title { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: #efe6d4 } .yo-title b { color: #d8595e; font-weight: 700 } .yo-sub { font-size: 15px; color: rgba(239, 230, 212, .5) } .yo-all { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: #d8595e; font-weight: 600; white-space: nowrap; flex: 0 0 auto; transition: color .2s } .yo-all:hover { color: #e8707a } .yo-wrap { position: relative; max-width: 1400px; margin-left: auto; margin-right: auto } .yo-track { display: flex; gap: 20px; overflow-x: auto; scrollbar-width: none; cursor: grab; padding: 4px 0 } .yo-track::-webkit-scrollbar { display: none } .yo-track.drag { cursor: grabbing; scroll-behavior: auto } .yo-track a, .yo-track img { -webkit-user-drag: none; user-select: none } .yo-card { position: relative; flex: 0 0 25%; min-width: 288px; height: 548px; overflow: hidden; cursor: pointer; display: block; background: #3a0d10; border-radius: 18px; border: 1px solid rgba(216, 89, 94, .1) } .yo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease } .yo-card:hover .yo-img { transform: scale(1.06) } .yo-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(9, 6, 3, .94) 6%, rgba(9, 6, 3, .45) 40%, transparent 64%) } /* badge thời lượng (góc trên-trái) */ .yo-dur { position: absolute; top: 16px; left: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; background: rgba(26, 6, 7, .6); border: 1px solid rgba(239, 230, 212, .16); color: rgba(239, 230, 212, .9); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 30px; backdrop-filter: blur(4px) } .yo-clk { width: 12px; height: 12px; border: 1.5px solid currentColor; border-radius: 50%; position: relative; flex: 0 0 auto } .yo-clk::after { content: ""; position: absolute; top: 1.5px; left: calc(50% - .75px); width: 1.5px; height: 4.5px; background: currentColor; transform-origin: bottom; transform: rotate(38deg) } /* nội dung đè trên ảnh (góc dưới) */ .yo-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px 22px } .yo-meta { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #d8595e; font-weight: 700; margin-bottom: 10px } .yo-name { font-family: var(--font-head); font-size: 24px; font-weight: 600; color: #efe6d4; line-height: 1.15; margin-bottom: 8px } .yo-desc { font-size: 14px; color: rgba(239, 230, 212, .6); line-height: 1.5; max-width: 94% } .yo-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 46px; height: 46px; border-radius: 50%; background: rgba(40, 10, 12, .72); border: 1px solid rgba(216, 89, 94, .28); color: #d8595e; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; backdrop-filter: blur(4px); transition: all .2s } .yo-nav.prev { left: 8px } .yo-nav.next { right: 8px } .yo-nav:hover { background: #d8595e; color: #fff; border-color: #d8595e } /* ============ SECTION ĐỜI SỐNG / LIFE (dải video dọc — giống Tư liệu Hình ảnh) ============ */ .life { background: var(--cream); padding: 8px 0 92px } .lf-head { margin-bottom: 28px } .lf-title { text-align: center; font-family: var(--font-head); font-size: 30px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase } .lf-title .fill { color: var(--crimson); margin-right: .4em } .lf-title .out { color: var(--muted2) } .lf-wrap { position: relative; max-width: 1400px; margin-left: auto; margin-right: auto } .lf-track { display: flex; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; cursor: grab } .lf-track::-webkit-scrollbar { display: none } .lf-track.drag { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto } .lf-track a, .lf-track img { -webkit-user-drag: none; user-select: none } .lf-card { position: relative; flex: 0 0 25%; min-width: 330px; height: 840px; overflow: hidden; scroll-snap-align: start; cursor: pointer; display: block; background: #3f4636 } .lf-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease } .lf-card:hover .lf-img { transform: scale(1.08) } .lf-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .48)) } .lf-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, transparent 58%, rgba(0, 0, 0, .62)) } .lf-vlabel { position: absolute; left: 16px; bottom: 22px; z-index: 2; writing-mode: vertical-rl; transform: rotate(180deg); font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255, 255, 255, .88) } .lf-full { position: absolute; right: 16px; top: 18px; z-index: 3; background: rgba(20, 12, 9, .55); border: 1px solid rgba(255, 255, 255, .32); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 13px; border-radius: 30px; opacity: 0; transform: translateY(-4px); transition: all .25s } .lf-card:hover .lf-full { opacity: 1; transform: translateY(0) } .lf-play { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s } .lf-card:hover .lf-play { opacity: 1 } .lf-play .circle { width: 64px; height: 64px; border-radius: 50%; background: var(--crimson); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; padding-left: 3px; box-shadow: 0 10px 26px rgba(158, 27, 34, .5) } .lf-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 50px; height: 50px; border-radius: 50%; background: var(--cream); border: 1px solid var(--line); color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 8px 22px rgba(42, 33, 28, .20) } .lf-nav.prev { left: 12px } .lf-nav.next { right: 12px } .lf-nav:hover { background: var(--crimson); color: #fff; border-color: var(--crimson) } /* ============ FOOTER ============ */ .site-footer { background: var(--cream); border-top: 1px solid var(--line); padding: 66px 0 34px; color: var(--ink) } .sf-top { display: grid; grid-template-columns: 1.15fr 1.85fr; gap: 60px } .sf-brand { max-width: 360px } .sf-logo { display: inline-flex; align-items: center; gap: 13px; margin-bottom: 20px } .sf-mark { width: 44px; height: 44px; border-radius: 9px; background: var(--crimson); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; flex: 0 0 auto } .sf-nm { display: flex; flex-direction: column; line-height: 1.08 } .sf-nm b { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--ink) } .sf-nm span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted2); margin-top: 4px } .sf-tag { font-size: 15px; color: var(--muted); line-height: 1.72; margin-bottom: 24px } .sf-social { display: flex; gap: 13px } .sf-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink); font-size: 15px; font-family: var(--font-head); transition: all .2s } .sf-social a:hover { background: var(--crimson); color: #fff; border-color: var(--crimson) } .sf-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px } .sf-h { font-family: var(--font-head); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--crimson); font-weight: 700; margin-bottom: 20px } .sf-link { display: block; font-size: 15px; color: var(--muted); margin-bottom: 13px; transition: color .2s, padding-left .2s } .sf-link:hover { color: var(--crimson); padding-left: 3px } .sf-divider { height: 1px; background: var(--line); margin: 46px 0 22px } .sf-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap } .sf-copy { font-size: 13px; color: var(--muted2) } .sf-legal { display: flex; gap: 26px; flex-wrap: wrap } .sf-legal a { font-size: 13px; color: var(--muted); transition: color .2s } .sf-legal a:hover { color: var(--crimson) } /* ═══════ LAPTOP / iPad NGANG (màn rộng nhưng THẤP) — chống chữ đè "Sách gợi ý" ═══════ */ /* đảm bảo hero đủ cao để chứa cả nội dung lẫn hàng sách, thay vì ép vào 100vh */ @media(min-width:1001px) { .hero { min-height: max(100vh, 900px) } } @media(min-width:1001px) and (max-height:900px) { .hero-inner { padding-top: 108px; padding-bottom: 330px } .hero-title { font-size: 56px } .hdesc { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 22px } .more { margin-top: 28px } .cover .pic { aspect-ratio: 3/3.7 } } @media(min-width:1001px) and (max-height:760px) { .hero { min-height: max(100vh, 840px) } .hero-inner { padding-top: 96px; padding-bottom: 300px } .hero-title { font-size: 46px; margin-bottom: 14px } .hmeta { margin-bottom: 16px } .hdesc { -webkit-line-clamp: 2; margin-bottom: 16px } .more { margin-top: 22px } .more-head { margin-bottom: 12px } .cover .pic { aspect-ratio: 3/3.5 } } /* ═══════════ TABLET / MOBILE ≤1000px ═══════════ */ @media(max-width:1000px) { .container { padding-left: 22px; padding-right: 22px } .yoga { padding: 46px 0 } .yo-card { flex-basis: 78%; min-width: 0; height: 560px } .yo-name { font-size: 21px } .audio { padding: 54px 0 } .au-title { font-size: 32px } .au-player { grid-template-columns: 1fr } .aup-panel { border-left: none; border-top: 1px solid rgba(216, 89, 94, .12) } .aup-now { padding: 38px 26px } .aup-title { font-size: 28px } .site-footer { padding: 50px 0 30px } .sf-top { grid-template-columns: 1fr; gap: 40px } .sf-brand { max-width: none } .about { padding: 54px 0 } .about-grid { grid-template-columns: 1fr; gap: 30px } .about-wm { font-size: 96px; top: -50px } .about-label { font-size: 24px; margin-bottom: 34px } .about-title { font-size: 28px } .footage { padding: 0 0 60px } .ft-card { flex-basis: 78%; min-width: 0; height: 560px } .life { padding: 0 0 60px } .lf-card { flex-basis: 78%; min-width: 0; height: 560px } .issues { padding: 50px 0 } .iss-grid { grid-template-columns: 1fr; row-gap: 34px } .iss-title { font-size: 32px } .iss-right { display: flex; flex-direction: column } .iss-left, .iss-hero, .iss-block { grid-column: auto; grid-row: auto } .iss-left { height: auto } .iss-hero { aspect-ratio: 16/11; margin-bottom: 24px } .ap-center { min-width: 0 } .ap-right { display: none } .aplayer { gap: 12px; padding: 10px 16px } .atrack { grid-template-columns: 30px 48px 1fr auto; gap: 12px } .amore { display: none } .story { padding: 54px 0 } .story-top { grid-template-columns: 1fr; gap: 30px } .story-text h2 { font-size: 32px } .review-grid { grid-template-columns: 1fr } .sh-card { flex-basis: 180px } .sv-actions { display: none } .sv-nav { display: none } .people { padding: 54px 0 } .people-grid { grid-template-columns: 1fr; gap: 24px } .people-more { right: 22px } .hero-inner { padding: 104px 22px 248px } .hero-title { font-size: 44px } .hero-arrow { display: none } .more { margin-top: 24px } .dots { margin-bottom: 18px } /* ── MENU MOBILE (ngăn kéo trượt từ phải) ── */ .burger { display: flex; position: relative; z-index: 62 } .nav.scrolled .burger span { background: var(--ink) } .nav.nav-open .burger span { background: #fff !important } .nav-cta { display: none } .nav-links { position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 360px); height: 100%; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 92px 24px calc(36px + env(safe-area-inset-bottom)) 26px; background: rgba(20, 12, 9, .98); backdrop-filter: blur(16px); box-shadow: -26px 0 70px rgba(0, 0, 0, .5); overflow-y: auto; overscroll-behavior: contain; transform: translateX(105%); transition: transform .38s cubic-bezier(.4, 0, .2, 1); z-index: 58 } .nav.nav-open .nav-links { transform: translateX(0) } .nav-links>a { color: rgba(255, 255, 255, .92) !important; font-size: 18px; width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .08) } .nav-links a.active::after { display: none } .ddrop { flex-direction: column; align-items: stretch; width: 100% } .dtop { justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: 18px; color: rgba(255, 255, 255, .92) !important } .cv { display: none } .dpanel { position: static; opacity: 1; visibility: visible; transform: none !important; min-width: 0; background: transparent; border: none; box-shadow: none; backdrop-filter: none; padding: 4px 0 10px 4px } .dpanel a, .dlink { color: rgba(255, 255, 255, .6) !important; font-size: 15px; padding: 8px 0 } .dpanel a:hover, .dlink:hover { background: transparent; color: #fff !important } .dpanel .dn { color: var(--crimson-lt) } /* burger → dấu X */ .burger span { transition: transform .3s, opacity .2s } .nav.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg) } .nav.nav-open .burger span:nth-child(2) { opacity: 0 } .nav.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) } /* lớp phủ tối phía sau menu */ .nav-scrim { position: fixed; inset: 0; background: rgba(10, 6, 4, .5); opacity: 0; visibility: hidden; transition: opacity .35s; z-index: 54 } .nav.nav-open .nav-scrim { opacity: 1; visibility: visible } /* hero "Sách gợi ý" → 1 hàng cuộn ngang (tiết kiệm chiều cao) */ .covers { display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x proximity; scrollbar-width: none; margin: 0 -22px; padding: 0 22px 4px } .covers::-webkit-scrollbar { display: none } .cover { flex: 0 0 118px; scroll-snap-align: start } .cover .pic .nm { font-size: 13px } .more-head .ttl { font-size: 18px } } /* ═══════════ TABLET / iPad DỌC 601–1000px (2 cột, thẻ dọc 2 cái) ═══════════ */ @media(min-width:601px) and (max-width:1000px) { .people-grid { grid-template-columns: 1fr 1fr } .review-grid { grid-template-columns: 1fr 1fr } .ft-card, .lf-card, .yo-card { flex-basis: 46%; height: 600px } .aucard { flex-basis: 200px } .aumix { flex-basis: 215px } } /* ═══════════ ĐIỆN THOẠI ≤600px ═══════════ */ @media(max-width:600px) { body { font-size: 16px } .nav { padding: 18px 0 } .nav.scrolled { padding: 11px 0 } .logo .mark { font-size: 21px } .logo .sub { font-size: 9px; letter-spacing: 2px } .hero-inner { padding: 92px 22px 224px } .hero-title { font-size: 33px; margin-bottom: 14px } .hdesc { font-size: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden } .hmeta { font-size: 12px; gap: 8px; margin-bottom: 16px } .act { width: 46px; height: 46px } .act.play { width: 54px; height: 54px } .hactions { gap: 10px } .hero-foot { padding-bottom: 22px } .sh-title2 { font-size: 23px } .yo-title { font-size: 23px } .about-title { font-size: 24px } .about-label { font-size: 20px; letter-spacing: 2px } .people-title { font-size: 26px; margin-bottom: 38px } .people-label { margin-bottom: 12px } .story-text h2 { font-size: 26px } .iss-title { font-size: 26px } .au-title { font-size: 27px } .reviews-title { font-size: 22px } .iss-mini { grid-template-columns: 1fr; gap: 14px } .iss-imgs { gap: 10px } .ft-card { flex-basis: 84%; height: 460px } .lf-card { flex-basis: 84%; height: 460px } .sh-card { flex-basis: 150px } .yo-card { flex-basis: 84%; height: 460px } .sh-vtitle { font-size: 15px } .yo-name { font-size: 19px } .aup-now { padding: 30px 20px } .aup-title { font-size: 25px } .aup-cover { width: 82% } .aup-controls { gap: 18px } .aup-track { grid-template-columns: 22px 42px 1fr 20px } .aup-tdur { display: none } .ap-cur, .ap-total { min-width: 32px; font-size: 10px } .ap-controls { gap: 14px } .ap-cover { width: 42px; height: 42px } .aplayer { padding: 9px 12px calc(9px + env(safe-area-inset-bottom)) } .sv-close { top: 14px; right: 16px; width: 42px; height: 42px } .sf-cols { grid-template-columns: 1fr 1fr; gap: 28px } .sf-bottom { flex-direction: column; align-items: flex-start; gap: 14px } } /* ═══════════ ĐIỆN THOẠI NHỎ ≤380px ═══════════ */ @media(max-width:380px) { .hero-title { font-size: 28px } .logo .mark { font-size: 19px } .cover { flex-basis: 108px } .ft-card { flex-basis: 88%; height: 420px } .lf-card { flex-basis: 88%; height: 420px } .yo-card { flex-basis: 88%; height: 420px } .ap-meta { max-width: 120px } .au-title { font-size: 24px } }