/* ============================================================
   GOLDEN ANGEL TRADING LLC — Food Stuff Trading
   Shared stylesheet (v2 — richer contrast, logo, images, map)
   ============================================================ */

:root {
  --gold: #d4af37;
  --gold-light: #f0d878;
  --gold-dark: #a8871a;
  --ink: #17130b;
  --ink-2: #241d10;
  --cream: #fbf7ec;
  --paper: #ffffff;
  --muted: #5f5848;
  --radius: 16px;
  --shadow: 0 14px 34px rgba(23, 19, 11, 0.16);
  --maxw: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(var(--maxw), 92%); margin: 0 auto; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 236, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(212, 175, 55, 0.45);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand .logo {
  width: 58px; height: 58px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(168, 135, 26, 0.45);
  border: 2px solid var(--gold);
  background: #000;
}
.brand h1 {
  font-size: 1.25rem; line-height: 1.15;
  font-family: Georgia, serif; color: var(--ink);
}
.brand small {
  display: block; color: var(--gold-dark);
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700;
}

nav ul { display: flex; gap: 26px; list-style: none; }
nav a {
  font-weight: 600; font-size: 0.96rem; color: var(--ink);
  padding: 6px 2px; position: relative; transition: color .25s;
}
nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 3px; border-radius: 2px;
  background: var(--gold); transition: width .25s;
}
nav a:hover, nav a.active { color: var(--gold-dark); }
nav a:hover::after, nav a.active::after { width: 100%; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  width: 26px; height: 3px; background: var(--ink);
  border-radius: 3px; transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 90vh;
  display: flex; align-items: center;
  background:
    linear-gradient(90deg, rgba(10, 8, 4, 0.88) 0%, rgba(10, 8, 4, 0.6) 55%, rgba(10, 8, 4, 0.35) 100%),
    url("../img/real-veg.webp") center/cover no-repeat;
  color: #fff;
}
.hero .inner { max-width: 640px; padding: 70px 0; }
.hero .tag {
  display: inline-block; background: var(--gold); color: var(--ink);
  font-weight: 800; font-size: 0.8rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 7px 18px; border-radius: 30px;
  margin-bottom: 22px;
}
.hero h2 {
  font-family: Georgia, serif; font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.12; margin-bottom: 18px;
}
.hero h2 em { color: var(--gold-light); font-style: normal; }
.hero p { font-size: 1.12rem; opacity: 0.94; margin-bottom: 32px; color: #f5f0e2; }

.btn {
  display: inline-block; padding: 14px 34px; border-radius: 44px;
  font-weight: 700; font-size: 0.98rem; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: 2px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 8px 22px rgba(212,175,55,.35); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(212,175,55,.5); }
.btn-outline { border-color: #fff; color: #fff; margin-left: 12px; }
.btn-outline:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }
.btn-green { background: #25d366; color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.35); }
.btn-green:hover { background: #1eb856; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(37,211,102,.45); }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .kicker {
  color: var(--gold-dark); font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; font-size: 0.82rem;
}
.section-head h2 {
  font-family: Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 10px 0 16px; color: var(--ink);
}
.section-head p { color: var(--muted); font-size: 1.02rem; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px; align-items: center; }

.card {
  background: var(--paper); border-radius: var(--radius);
  padding: 36px 28px; box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 22px 44px rgba(23,19,11,.2); }
.card .icon {
  width: 66px; height: 66px; border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(212,175,55,.35);
}
.card h3 { font-family: Georgia, serif; font-size: 1.22rem; margin-bottom: 10px; color: var(--ink); }
.card p { color: var(--muted); font-size: 0.97rem; }
.card ul { margin-top: 14px; padding-left: 18px; color: var(--muted); font-size: 0.95rem; }
.card ul li { margin-bottom: 7px; }

/* ---------- Image cards (activities with pictures) ---------- */
.img-card {
  background: var(--paper); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.img-card:hover { transform: translateY(-8px); box-shadow: 0 22px 44px rgba(23,19,11,.2); }
.img-card img { width: 100%; height: 240px; object-fit: cover; }
.img-card .body { padding: 26px 24px 30px; border-top: 4px solid var(--gold); }
.img-card h3 { font-family: Georgia, serif; font-size: 1.2rem; margin-bottom: 8px; }
.img-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Stats strip ---------- */
.stats {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--ink); text-align: center;
}
.stats .grid-3 { gap: 20px; }
.stats .num { font-family: Georgia, serif; font-size: 2.7rem; font-weight: 800; }
.stats .lbl { font-size: 0.95rem; opacity: 0.9; letter-spacing: 1px; font-weight: 600; }

/* ---------- Page banner ---------- */
.banner {
  background:
    linear-gradient(rgba(10,8,4,.74), rgba(10,8,4,.74)),
    url("../img/real-food.webp") center/cover no-repeat;
  color: #fff; text-align: center; padding: 96px 0 76px;
}
.banner h2 { font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 2.9rem); }
.banner .crumb { margin-top: 12px; font-size: 0.94rem; opacity: 0.9; }
.banner .crumb a { color: var(--gold-light); font-weight: 600; }

/* ---------- About imagery block ---------- */
.img-frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(135deg, #f0e6c8, #dcc98a);
  min-height: 340px; display: flex; align-items: center; justify-content: center;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame .placeholder-art { text-align: center; color: var(--gold-dark); padding: 40px; }
.img-frame .placeholder-art .big { font-size: 64px; }

.check-list { list-style: none; margin-top: 20px; }
.check-list li { padding: 9px 0 9px 36px; position: relative; color: var(--ink); }
.check-list li::before {
  content: "\2714"; position: absolute; left: 0; top: 9px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Contact ---------- */
.contact-info .row {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--paper); border-radius: var(--radius);
  padding: 20px 22px; margin-bottom: 16px; box-shadow: var(--shadow);
}
.contact-info .row .ic {
  width: 48px; height: 48px; flex: none; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 23px;
}
.contact-info .row h4 { font-size: 1rem; margin-bottom: 3px; color: var(--ink); }
.contact-info .row p, .contact-info .row a { color: var(--muted); font-size: 0.95rem; }
.contact-info .row a:hover { color: var(--gold-dark); font-weight: 600; }

/* ---------- Map ---------- */
.map-box {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 4px solid var(--gold);
  background: #fff;
}
.map-box iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-link { text-align: center; margin-top: 14px; }
.map-link a { color: var(--gold-dark); font-weight: 700; text-decoration: underline; }

/* ---------- Forms ---------- */
form .field { margin-bottom: 18px; }
form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--ink); }
form input, form textarea, form select {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1px solid #d8cfb6; background: #fff; font-size: 0.98rem;
  font-family: inherit; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
form input:focus, form textarea:focus, form select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}
form textarea { min-height: 130px; resize: vertical; }
.form-note { margin-top: 14px; font-size: 0.9rem; color: #1e7e46; display: none; font-weight: 600; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: #fff; text-align: center; padding: 76px 0;
  border-top: 4px solid var(--gold);
}
.cta-strip h2 { font-family: Georgia, serif; font-size: 2.1rem; margin-bottom: 14px; }
.cta-strip p { opacity: 0.9; margin-bottom: 28px; color: #e8e2d0; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #d8d0ba; padding: 60px 0 0; border-top: 4px solid var(--gold); }
footer .grid-3 { gap: 42px; }
footer h4 { color: var(--gold-light); font-family: Georgia, serif; margin-bottom: 18px; font-size: 1.08rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; font-size: 0.95rem; }
footer a:hover { color: var(--gold-light); }
footer .copy {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 46px; padding: 20px 0; text-align: center; font-size: 0.86rem;
}
footer .footer-logo { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 12px; border: 2px solid var(--gold); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; font-size: 29px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float .pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366; animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Trade license ---------- */
.license-wrap {
  display: grid; grid-template-columns: 380px 1fr; gap: 44px; align-items: center;
}
.license-frame {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 4px solid var(--gold);
  background: #fff; line-height: 0;
}
.license-frame img { width: 100%; height: auto; }
.license-details { list-style: none; }
.license-details li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 18px; margin-bottom: 10px;
  background: var(--paper); border-radius: 12px;
  border-left: 4px solid var(--gold); box-shadow: 0 4px 14px rgba(23,19,11,.08);
  font-size: 0.97rem;
}
.license-details li .k { font-weight: 700; color: var(--ink); flex: none; }
.license-details li .v { color: var(--muted); text-align: right; }

/* ---------- Photo gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.gallery-grid .g-item {
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow);
  border: 3px solid var(--gold); position: relative;
}
.gallery-grid img {
  width: 100%; height: 230px; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-grid .g-item:hover img { transform: scale(1.08); }
.gallery-grid .g-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(10,8,4,.85));
  color: #fff; font-size: 0.85rem; font-weight: 600;
  padding: 26px 12px 10px; text-align: center;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  nav {
    position: fixed; inset: 82px 0 auto 0;
    background: var(--cream); border-bottom: 3px solid var(--gold);
    transform: translateY(-130%); transition: transform .35s ease;
    box-shadow: var(--shadow);
  }
  nav.open { transform: translateY(0); }
  nav ul { flex-direction: column; gap: 0; padding: 10px 0; }
  nav li { text-align: center; }
  nav a { display: block; padding: 14px; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
  section { padding: 64px 0; }
  .map-box iframe { height: 320px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 180px; }
  .license-wrap { grid-template-columns: 1fr; }
  .license-frame { max-width: 420px; margin: 0 auto; }
}
