/* ============================
   FLOWER PARK — Improved Style
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --green: #2d5a27;
  --green2: #4a8c3f;
  --green-light: #e8f5e4;
  --gold: #c8922a;
  --bg: #fafaf7;
  --surface: #fff;
  --text: #1a2e16;
  --text-muted: #5a7a52;
  --text-dim: #94a88e;
  --border: rgba(45,90,39,0.12);
  --ff-display: 'Lora', Georgia, serif;
  --ff-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.25,0.46,0.45,0.94);
}

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

.wrapper { max-width: 1200px; margin: 0 auto; }

/* NAV */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 64px;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.topnav img.Logo { height: 42px; width: auto; }
.topnav-links { display: flex; align-items: center; gap: 2rem; }
.topnav a {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.2s; font-weight: 400;
  padding: 0; background: none;
}
.topnav a:hover { color: var(--green); }
.topnav a.active { color: var(--green); font-weight: 500; }
.topnav .icon { display: none; font-size: 1.2rem; cursor: pointer; color: var(--text); }
#myTopnav.responsive { flex-direction: column; height: auto; padding: 1rem 2rem 1.5rem; }
#myTopnav.responsive .topnav-links { flex-direction: column; align-items: flex-start; gap: 1rem; margin-top: 1rem; }
#myTopnav.responsive .icon { display: block; align-self: flex-end; }

/* HERO */
.box3 {
  height: 100vh; min-height: 500px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.5)), url('images/IMG_8147.jpg') center/cover no-repeat;
  color: #fff;
}
.font { font-family: var(--ff-display); font-size: clamp(2rem,5vw,4rem); font-weight: 600; margin-bottom: 0.75rem; }
.font2 { font-family: var(--ff-display); font-size: clamp(1rem,2.5vw,1.6rem); font-weight: 400; font-style: italic; margin-bottom: 2rem; opacity: 0.9; }
.box3 h3 { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; margin-bottom: 1rem; }
.box3 button {
  padding: 0.85rem 2.5rem; background: #fff; color: var(--green);
  border: none; border-radius: 2px; font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500; cursor: pointer; transition: all 0.2s;
}
.box3 button:hover { background: var(--green-light); }

/* MISSION SECTION */
.box-4 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; align-items: center;
}
.fill-1 h2 { font-family: var(--ff-display); font-size: 2rem; color: var(--green); margin-bottom: 1rem; }
.fill-1 p { color: var(--text-muted); line-height: 1.8; }
.fill-2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.image1 { width: 100% !important; height: 140px !important; object-fit: cover; border-radius: 6px; filter: saturate(0.9); transition: filter 0.3s, transform 0.3s; }
.image1:hover { filter: saturate(1.2); transform: scale(1.03); }

/* ABOUT STRIP */
.box-5 { background: var(--green); padding: 3rem 2rem; text-align: center; }
.pg1 { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 800px; margin: 0 auto; line-height: 1.8; font-style: italic; font-family: var(--ff-display); }

/* FOOTER */
.footer { background: var(--text); padding: 3rem 2rem 2rem; text-align: center; }
.footer .row { margin-bottom: 1.5rem; }
.footer .row a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0 0.3rem; transition: all 0.2s; }
.footer .row a:hover { border-color: var(--green2); color: var(--green2); }
.footer .row ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; list-style: none; padding: 0; }
.footer .row ul li a { display: inline; width: auto; height: auto; border: none; border-radius: 0; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer .row ul li a:hover { color: var(--green2); }
.footer .row:last-child { color: rgba(255,255,255,0.25); font-size: 0.75rem; letter-spacing: 0.05em; }
.back-to-portfolio { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; padding: 0.55rem 1.25rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: all 0.2s; }
.back-to-portfolio:hover { border-color: var(--green2); color: var(--green2); }

/* PRODUCT PAGE */
.products-section { padding: 6rem 2rem 4rem; max-width: 1200px; margin: 0 auto; }
.products-section h1 { font-family: var(--ff-display); font-size: 2.5rem; color: var(--green); margin-bottom: 0.5rem; }
.section-sub { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 0.95rem; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.product-card img { width: 100%; height: 200px; object-fit: cover; filter: saturate(0.9); transition: filter 0.3s; }
.product-card:hover img { filter: saturate(1.1); }
.product-card-info { padding: 1.25rem; }
.product-card-info h3 { font-family: var(--ff-display); font-size: 1.1rem; color: var(--text); margin-bottom: 0.35rem; }
.product-card-info p { font-size: 0.82rem; color: var(--text-muted); }

/* ABOUT PAGE */
.about-section { padding: 6rem 2rem 4rem; max-width: 1000px; margin: 0 auto; }
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; }
.about-hero img { border-radius: 8px; width: 100%; height: 400px; object-fit: cover; }
.about-hero-text h1 { font-family: var(--ff-display); font-size: 2.5rem; color: var(--green); margin-bottom: 1rem; }
.about-hero-text p { color: var(--text-muted); line-height: 1.8; }

/* CONTACT PAGE */
.contact-page { padding: 6rem 2rem 4rem; max-width: 700px; margin: 0 auto; }
.contact-page h1 { font-family: var(--ff-display); font-size: 2.5rem; color: var(--green); margin-bottom: 0.5rem; }
.contact-form-wrap { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-form-wrap input, .contact-form-wrap textarea {
  background: var(--surface); border: 1px solid var(--border); border-radius: 4px;
  padding: 0.85rem 1rem; font-family: var(--ff-body); font-size: 0.9rem; color: var(--text);
  transition: border-color 0.2s; resize: vertical;
}
.contact-form-wrap input:focus, .contact-form-wrap textarea:focus { outline: none; border-color: var(--green); }
.contact-form-wrap button { align-self: flex-start; padding: 0.75rem 2rem; background: var(--green); color: #fff; border: none; border-radius: 2px; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: background 0.2s; }
.contact-form-wrap button:hover { background: var(--green2); }

/* Modal */
.modal { display: none; position: fixed; z-index: 1000; inset: 0; background: rgba(0,0,0,0.6); justify-content: center; align-items: center; }
.modal.active { display: flex; }
.modal-content { background: var(--surface); border-radius: 10px; padding: 2rem; max-width: 420px; width: 90%; position: relative; }
.close { position: absolute; top: 0.75rem; right: 1rem; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); }
.close:hover { color: var(--green); }

@media (max-width: 768px) {
  .box-4 { grid-template-columns: 1fr; gap: 2rem; }
  .fill-2 { grid-template-columns: repeat(3, 1fr); }
  .about-hero { grid-template-columns: 1fr; }
  .topnav .icon { display: block; }
  .topnav-links { display: none; }
}
