/* ========================================
   PLAY COFFEE VE - Main Stylesheet
   Theme: Emerald Green & Teal + Coffee
   Layout: Bento-grid style, left-align hero
   ======================================== */

:root {
  --primary: #059669;
  --primary-dark: #047857;
  --primary-light: #10B981;
  --teal: #0D9488;
  --teal-light: #14B8A6;
  --accent: #F59E0B;
  --coffee: #92400E;
  --dark: #030F0A;
  --dark-2: #071A10;
  --dark-3: #0D2818;
  --card-bg: #0A1F12;
  --text: #D1FAE5;
  --text-muted: #6EE7B7;
  --text-gray: #A7F3D0;
  --border: rgba(16,185,129,0.25);
  --border-teal: rgba(20,184,166,0.3);
  --gradient: linear-gradient(135deg, #059669 0%, #0D9488 100%);
  --gradient-warm: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --gradient-dark: linear-gradient(135deg, #030F0A 0%, #071A10 100%);
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-xl: 28px;
  --shadow: 0 8px 40px rgba(5,150,105,0.2);
  --shadow-teal: 0 8px 40px rgba(13,148,136,0.2);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark); color: var(--text); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

h1 { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; }
h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h3 { font-family: var(--font-heading); font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 700; }
h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }

.accent { color: var(--primary-light); }
.accent-warm { color: var(--accent); }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,0.12);
  border: 1px solid var(--border);
  color: var(--teal-light);
  padding: 5px 14px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 16px;
}
.chip i { font-size: 0.7rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 4px 20px rgba(5,150,105,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(5,150,105,0.55); }
.btn-teal { background: linear-gradient(135deg, #0D9488, #14B8A6); color: #fff; box-shadow: 0 4px 20px rgba(13,148,136,0.35); }
.btn-teal:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary-light); border: 2px solid var(--primary); border-radius: 50px; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-warm { background: var(--gradient-warm); color: #fff; }
.btn-warm:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.4); }
.btn-ghost { background: rgba(16,185,129,0.1); color: var(--text); border: 1px solid var(--border); border-radius: 50px; }
.btn-ghost:hover { background: rgba(16,185,129,0.2); }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(3,15,10,0.95); backdrop-filter: blur(20px); padding: 13px 0; border-bottom: 1px solid var(--border); box-shadow: 0 4px 30px rgba(5,150,105,0.15); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-leaf { width: 44px; height: 44px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.logo-text { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: #fff; }
.logo-text .sub { font-size: 0.7rem; color: var(--text-muted); display: block; font-weight: 400; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a { padding: 9px 18px; border-radius: 50px; color: var(--text-muted); font-weight: 500; font-size: 0.9rem; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(16,185,129,0.15); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--primary-light); transition: var(--transition); border-radius: 2px; }

/* HERO - Full width with bento layout */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--dark) 0%, rgba(3,15,10,0.75) 40%, rgba(3,15,10,0.4) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 24px 80px; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-content-inner { max-width: 680px; padding-top: 140px; }
.hero h1 { margin-bottom: 24px; color: #fff; }
.hero h1 .line2 { color: var(--primary-light); }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bento-card { background: rgba(10,31,18,0.85); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.bento-card .bento-icon { font-size: 1.8rem; margin-bottom: 8px; }
.bento-card .bento-num { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--primary-light); }
.bento-card .bento-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* FEATURES BENTO GRID */
.bento-section { padding: 80px 0; background: var(--dark-2); }
.big-bento { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: auto auto; gap: 20px; }
.bento-big { grid-column: span 2; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.bento-big img { width: 100%; height: 300px; object-fit: cover; }
.bento-big-content { padding: 28px; }
.bento-big-content h3 { margin-bottom: 12px; }
.bento-big-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.bento-small { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; }
.bento-small .bento-s-icon { width: 56px; height: 56px; background: rgba(5,150,105,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.bento-small h3 { margin-bottom: 10px; font-size: 1rem; }
.bento-small p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.bento-highlight { background: var(--gradient); border-radius: var(--radius-xl); padding: 28px; color: #fff; }
.bento-highlight h3 { color: #fff; margin-bottom: 12px; }
.bento-highlight p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.7; }

/* ABOUT STAGGERED */
.about-section { padding: 100px 0; }
.about-stagger { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-visuals { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-visuals .img-main { grid-column: span 2; border-radius: var(--radius-xl); overflow: hidden; }
.about-visuals .img-main img { width: 100%; height: 260px; object-fit: cover; }
.about-visuals .img-sm { border-radius: var(--radius); overflow: hidden; }
.about-visuals .img-sm img { width: 100%; height: 160px; object-fit: cover; }
.about-text-side { padding-top: 20px; }
.about-text-side h2 { margin-bottom: 20px; }
.about-text-side p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.green-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 32px; }
.green-list li { display: flex; align-items: center; gap: 12px; color: var(--text-muted); }
.green-bullet { width: 24px; height: 24px; background: rgba(16,185,129,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.green-bullet i { font-size: 0.7rem; color: var(--primary-light); }

/* PLANS GRID */
.plans-section { padding: 100px 0; background: var(--dark-2); }
.plans-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.plan-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px 28px; transition: var(--transition); }
.plan-box:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary); }
.plan-box.popular { border-color: var(--primary-light); background: linear-gradient(135deg, rgba(5,150,105,0.2), rgba(13,148,136,0.15)); box-shadow: var(--shadow); }
.plan-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.plan-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; }
.plan-badge-sm { background: var(--gradient); color: #fff; padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; }
.plan-price-big { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--primary-light); line-height: 1; }
.plan-price-big span { font-size: 1rem; color: var(--text-muted); }
.plan-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-features li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.9rem; }
.plan-features li i.fa-check { color: var(--primary-light); }
.plan-features li i.fa-times { color: rgba(255,255,255,0.2); }

/* GALLERY SLIDER STYLE */
.gallery-sec { padding: 80px 0; }
.gallery-3col { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-3col .g { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); position: relative; }
.gallery-3col .g img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s; }
.gallery-3col .g:hover img { transform: scale(1.06); }
.gallery-3col .g.tall img { height: 340px; }
.gallery-3col .g-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(3,15,10,0.9), transparent); padding: 20px 16px 14px; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* TESTIMONIALS */
.testi-s { padding: 80px 0; background: var(--dark-2); }
.testi-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-c { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px 28px; position: relative; overflow: hidden; transition: var(--transition); }
.testi-c::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); opacity: 0; transition: var(--transition); }
.testi-c:hover { border-color: var(--primary); }
.testi-c:hover::before { opacity: 1; }
.t-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; }
.testi-c p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; font-style: italic; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-av { width: 44px; height: 44px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.t-author strong { display: block; font-size: 0.9rem; }
.t-author small { color: var(--text-muted); font-size: 0.78rem; }

/* CTA LUSH */
.cta-lush { padding: 100px 0; position: relative; overflow: hidden; }
.cta-lush-bg { position: absolute; inset: 0; }
.cta-lush-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-lush-bg::after { content: ''; position: absolute; inset: 0; background: rgba(3,15,10,0.88); }
.cta-lush-inner { position: relative; z-index: 2; text-align: center; }
.cta-lush-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-lush-inner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 70px 0 0; }
.footer-layout { display: grid; grid-template-columns: 2fr 1fr 1fr 1.8fr; gap: 50px; margin-bottom: 50px; }
.f-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin: 16px 0 24px; }
.f-social { display: flex; gap: 10px; }
.f-social a { width: 38px; height: 38px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: var(--transition); }
.f-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.f-col h4 { font-family: var(--font-heading); font-size: 0.85rem; color: #fff; margin-bottom: 20px; }
.f-col ul { display: flex; flex-direction: column; gap: 10px; }
.f-col a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.f-col a:hover { color: var(--primary-light); }
.f-col li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
.f-col li i { color: var(--teal-light); margin-top: 2px; flex-shrink: 0; }
.footer-bot { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* PAGE HERO */
.page-hero { padding: 140px 24px 80px; position: relative; overflow: hidden; background: var(--dark-2); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(5,150,105,0.2) 0%, transparent 70%); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); max-width: 580px; font-size: 1.05rem; line-height: 1.7; }

/* MENU PAGE */
.menu-pg { padding: 80px 0; }
.menu-hero-img { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 60px; height: 360px; }
.menu-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-section-title { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.menu-section-title h2 { font-size: 1.3rem; }
.menu-section-title hr { flex: 1; border: none; border-top: 1px solid var(--border); }
.menu-g { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; margin-bottom: 50px; }
.m-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.m-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.m-card img { width: 100%; height: 190px; object-fit: cover; }
.m-card-body { padding: 18px; }
.m-card-body h4 { font-size: 0.95rem; margin-bottom: 8px; }
.m-card-body p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 12px; line-height: 1.6; }
.m-price { font-family: var(--font-heading); color: var(--primary-light); font-size: 1.1rem; font-weight: 700; }

/* GALLERY PAGE */
.gallery-pg { padding: 80px 0; }
.gallery-pg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
.gp-item { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.gp-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.gp-item img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.4s; }
.gp-item:hover img { transform: scale(1.05); }
.gp-item p { background: var(--card-bg); padding: 12px 16px; color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }

/* CONTACT PAGE */
.contact-pg { padding: 80px 0; }
.contact-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; }
.contact-form-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 44px; }
.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 28px; }
.form-g { margin-bottom: 20px; }
.form-g label { display: block; color: var(--text-muted); font-size: 0.83rem; font-weight: 600; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-g input, .form-g textarea, .form-g select { width: 100%; background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; color: var(--text); font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition); }
.form-g input:focus, .form-g textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(5,150,105,0.15); }
.form-g textarea { resize: vertical; min-height: 120px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-card { display: flex; flex-direction: column; gap: 20px; }
.ci-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: var(--transition); }
.ci-box:hover { border-color: var(--primary); }
.ci-icon { width: 48px; height: 48px; background: rgba(5,150,105,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--teal-light); font-size: 1.2rem; flex-shrink: 0; }
.ci-box h4 { font-family: var(--font-heading); font-size: 0.8rem; color: var(--text-muted); margin-bottom: 5px; }
.ci-box p { font-size: 0.95rem; font-weight: 500; }

/* LEGAL */
.legal-pg { max-width: 800px; margin: 0 auto; padding: 80px 24px; }
.legal-pg h2 { font-size: 1.1rem; color: var(--primary-light); margin: 36px 0 14px; }
.legal-pg p { color: var(--text-muted); line-height: 1.9; margin-bottom: 14px; }
.legal-pg ul { list-style: disc; padding-left: 24px; color: var(--text-muted); display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.legal-date { display: inline-block; background: rgba(5,150,105,0.1); border: 1px solid var(--border); color: var(--text-muted); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; margin-bottom: 36px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-bento { grid-template-columns: repeat(2,1fr); }
  .big-bento { grid-template-columns: 1fr 1fr; }
  .bento-big { grid-column: span 2; }
  .about-stagger { gap: 40px; }
  .plans-grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-layout { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(3,15,10,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 20px; z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; z-index: 1001; }
  .hero-bento { grid-template-columns: repeat(2,1fr); }
  .big-bento { grid-template-columns: 1fr; }
  .bento-big { grid-column: span 1; }
  .about-stagger { grid-template-columns: 1fr; }
  .plans-grid-3 { grid-template-columns: 1fr; }
  .gallery-3col { grid-template-columns: 1fr 1fr; }
  .testi-cols { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }
  .footer-layout { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 480px) {
  .hero-bento { grid-template-columns: 1fr 1fr; }
  .gallery-3col { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}
