﻿/* HOME PDF LAYOUT */
.home-pdf{display:flex;flex-direction:column;gap:22px;width:100%;margin:0;padding:0}

/* TOP BAR */
.home-topbar{background:#fff;border-radius:0 0 14px 14px;padding:12px 24px;display:flex;align-items:center;justify-content:space-between;gap:18px;box-shadow:var(--shadow);margin:-16px -16px 0 -16px;position:relative;z-index:3}
.home-logo{display:flex;align-items:center;gap:14px}
.home-logo img{width:64px;height:auto;margin:0}
.home-logo-copy{display:flex;flex-direction:column;justify-content:center;line-height:1}
.home-logo-copy span{font-family:Georgia,'Times New Roman',serif;color:var(--green);font-size:22px;font-weight:800;letter-spacing:1px}
.home-logo-copy small{font-size:12px;letter-spacing:8px;color:var(--green);text-transform:uppercase;margin-top:2px;display:block}
.home-nav{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.home-link{font-family:Georgia,'Times New Roman',serif;text-transform:uppercase;color:var(--green-dark);font-size:16px;font-weight:900;text-decoration:none;background:none;border:0;cursor:pointer}
.home-link:hover{color:var(--orange)}
.home-link.order-link{background:var(--green);color:#fff;border-radius:28px;padding:12px 18px;font-size:14px}
.home-link.order-link:hover{background:var(--green-mid)}

/* HERO */
.pdf-hero{min-height:340px;border-radius:18px;padding:34px;display:flex;align-items:center;background:linear-gradient(90deg,rgba(18,77,43,.95),rgba(18,77,43,.72),rgba(18,77,43,.12)),url('/images/hero-bg.jpg') center/cover no-repeat;position:relative;overflow:hidden;z-index:1;color:#fff}
.pdf-hero > div{width:100%;max-width:960px}
.hero-logo-panel{display:inline-flex;align-items:center;gap:12px;background:rgba(255,255,255,.96);color:var(--green-dark);border-radius:12px;padding:9px 14px;font-weight:800}
.hero-logo-panel img{width:70px;height:auto}
.pdf-hero h1{font-size:36px;line-height:1.1;max-width:680px;margin:16px 0 14px}
.pdf-hero p{max-width:780px;font-size:15px;opacity:.95;line-height:1.7;margin-bottom:18px}
.home-cta{display:flex;gap:10px;flex-wrap:wrap}
.home-cta .btn{min-width:150px}

/* SECTIONS - exact prototype values */
.pdf-section{border-radius:18px;padding:30px;background:#dcebe2;border:1px solid #cbded2;box-shadow:var(--shadow)}
.pdf-section.peach{background:#f5e2d7;border-color:#ead2c3}
.pdf-section.white{background:#fff}
.pdf-section h2{font-family:Georgia,'Times New Roman',serif;color:var(--green);font-size:32px;line-height:1.05;margin-bottom:18px;text-transform:uppercase}
.pdf-kicker{color:var(--orange);font-weight:900;letter-spacing:4px;text-transform:uppercase;text-align:center;margin-bottom:8px}
.pdf-copy{font-size:16px;line-height:1.65;color:var(--green-dark);margin-top:18px}

/* GRID - exact prototype: auto-fit minmax */
.pdf-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:18px}
.pdf-item{background:rgba(255,255,255,.72);border:1px solid rgba(255,255,255,.8);border-radius:16px;padding:12px;text-align:center;cursor:pointer;transition:.15s;text-decoration:none;display:block}
.pdf-item:hover{transform:translateY(-2px);box-shadow:0 10px 22px rgba(0,0,0,.12)}
.pdf-item img{width:100%;height:135px;object-fit:cover;border-radius:13px;margin-bottom:10px}
.pdf-item b{display:block;color:var(--orange-dark);font-size:18px;text-transform:uppercase;font-weight:900}

/* HALL */
.hall-row{display:grid;grid-template-columns:1fr;gap:18px;align-items:center}
.hall-row h2{font-family:Georgia,'Times New Roman',serif;font-size:28px;color:var(--green-dark);font-weight:700;text-transform:uppercase;margin-bottom:10px}
.hall-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:16px}
.hall-gallery img{width:100%;border-radius:16px;box-shadow:var(--shadow);height:180px;object-fit:cover}

/* TESTIMONIALS */
.testimonial-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:18px}
.testimonial{background:rgba(255,255,255,.55);border-radius:16px;padding:18px;text-align:center;color:var(--green-dark)}
.testimonial .name{font-size:20px;color:var(--orange-dark);font-weight:900;margin-bottom:10px}
.testimonial p{font-size:13px;line-height:1.6;color:var(--green-dark)}
.stars{color:#f4b000;font-size:22px;margin-top:12px}

/* CONTACT */
.contact-top{display:flex;align-items:center;gap:28px;margin-bottom:28px;padding-bottom:22px;border-bottom:1px solid #cbded2}
.contact-tagline{font-size:17px;color:var(--green-dark);line-height:1.55;max-width:720px}
.contact-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.contact-card{background:rgba(255,255,255,.7);border-radius:14px;padding:20px 18px;border:1px solid rgba(255,255,255,.9);box-shadow:0 2px 8px rgba(0,0,0,.06)}
.contact-card-icon{font-size:26px;margin-bottom:10px}
.contact-card-title{font-size:18px;font-weight:800;color:var(--orange-dark);margin-bottom:8px}
.contact-card-line{font-size:16px;color:var(--green-dark);line-height:1.45}

@media(max-width:1100px){
  .contact-cards{grid-template-columns:repeat(2,1fr)} 
}
@media(max-width:900px){
  .pdf-hero{min-height:300px;padding:28px 24px}
  .pdf-hero h1{font-size:28px;max-width:100%}
  .pdf-hero p{font-size:15px}
  .hall-gallery{grid-template-columns:1fr}
  .home-topbar{flex-direction:column;align-items:flex-start;margin:-16px -16px 14px -16px;padding:18px 24px}
  .home-link{font-size:15px}
  .home-link.order-link{padding:12px 18px;font-size:16px}
  .hero-logo-panel{flex-wrap:wrap;gap:10px}
  .pdf-section h2{font-size:26px}
  .contact-top{flex-direction:column;align-items:flex-start}
}
@media(max-width:640px){
  .contact-cards{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .pdf-hero{min-height:260px;padding:22px 18px}
  .pdf-hero h1{font-size:22px}
  .pdf-hero p{font-size:14px}
  .home-topbar{padding:16px 18px;margin:-16px -16px 14px -16px}
  .hero-logo-panel{width:100%;justify-content:flex-start}
  .pdf-section{padding:20px}
}
@media(max-width:480px){
  .pdf-hero{min-height:260px;padding:18px 14px}
  .pdf-hero h1{font-size:20px;max-width:100%}
  .pdf-hero p{font-size:14px;max-width:100%}
  .home-topbar{padding:14px 14px;margin:-16px -16px 16px -16px}
  .home-nav{width:100%;justify-content:flex-start;gap:8px}
  .home-link{font-size:14px;padding:8px 10px}
  .home-link.order-link{padding:12px 18px}
  .home-cta{flex-direction:column;align-items:flex-start}
  .home-cta .btn{width:100%;justify-content:center}
  .contact-top{gap:18px}
  .contact-card{padding:16px}
}

@media(max-width:420px){
  .home-topbar{padding:12px 12px;margin:-16px -16px 16px -16px}
  .home-logo{font-size:18px}
  .home-nav{gap:6px}
  .home-link{font-size:13px;padding:8px 10px}
  .home-link.order-link{padding:10px 14px;font-size:14px}
  .pdf-hero{min-height:240px;padding:16px 12px}
  .pdf-hero h1{font-size:18px}
  .home-cta .btn{min-width:unset}
  .contact-top{flex-direction:column;align-items:flex-start;gap:14px}
  .contact-tagline{max-width:100%;font-size:15px}
  .contact-cards{grid-template-columns:1fr;gap:12px}
  .hall-gallery{gap:12px}
  .hall-gallery img{height:150px}
}




