/* Free Gin Tastings — styles.css */

:root {
  --green: #1a4d2e;
  --green-mid: #2d6a4f;
  --green-light: #e8f5e9;
  --gold: #c9a84c;
  --gold-light: #f5e6c0;
  --text: #1a1a1a;
  --text-light: #555;
  --white: #ffffff;
  --border: #ddd;
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* NAV */
nav {
  background: var(--green);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-logo {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.9rem;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem 4rem;
}
.hero h1 { font-size: 2.8rem; color: var(--gold); margin-bottom: 1rem; line-height: 1.2; }
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  font-family: sans-serif;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: #e0bb6a; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  margin-left: 1rem;
}
.btn-outline:hover { background: var(--gold); color: var(--green); }

/* SECTIONS */
.section { padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; }
.section h2 { font-size: 2rem; color: var(--green); margin-bottom: 1.5rem; }

/* HOW IT WORKS */
.how-it-works { background: var(--green-light); padding: 4rem 2rem; }
.how-it-works .inner { max-width: 1100px; margin: 0 auto; }
.how-it-works h2 { font-size: 2rem; color: var(--green); margin-bottom: 1.5rem; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.step-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.step h3 { color: var(--green); margin-bottom: 0.4rem; }
.step p { font-family: sans-serif; font-size: 0.95rem; color: var(--text-light); }

/* NEWSLETTER */
.newsletter {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 3rem 2rem;
}
.newsletter h2 { color: var(--gold); margin-bottom: 0.5rem; }
.newsletter p { font-family: sans-serif; opacity: 0.9; margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0.5rem; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: sans-serif;
}

/* PAGE HEADER */
.page-header {
  background: var(--green);
  color: var(--white);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}
.page-header h1 { color: var(--gold); font-size: 2.2rem; margin-bottom: 0.5rem; }
.page-header p { font-family: sans-serif; opacity: 0.9; font-size: 1.05rem; }

/* LISTINGS */
.listings-wrap { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem; }
.region-block { margin-bottom: 3.5rem; }
.region-block h2 {
  color: var(--green);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
  background: var(--white);
}
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.card h3 { color: var(--green); margin-bottom: 0.3rem; font-size: 1.05rem; }
.card .suburb { font-family: sans-serif; font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.5rem; }
.card .schedule {
  font-family: sans-serif;
  font-size: 0.85rem;
  background: var(--gold-light);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}
.card .desc { font-family: sans-serif; font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }
.card a { color: var(--green-mid); font-family: sans-serif; font-size: 0.9rem; text-decoration: none; }
.card a:hover { text-decoration: underline; }
.empty-region {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  font-family: sans-serif;
  color: var(--text-light);
  font-size: 0.95rem;
}
.empty-region a { color: var(--green); }

/* FORM */
.form-wrap { max-width: 680px; margin: 3rem auto; padding: 0 2rem 3rem; }
.form-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: sans-serif;
  font-weight: bold;
  margin-bottom: 0.4rem;
  color: var(--green);
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: sans-serif;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { height: 100px; resize: vertical; }
.form-note { font-family: sans-serif; font-size: 0.85rem; color: var(--text-light); margin-top: 0.3rem; }

/* ABOUT */
.about-wrap { max-width: 760px; margin: 0 auto; padding: 3rem 2rem; }
.about-wrap p { font-family: sans-serif; color: var(--text-light); margin-bottom: 1.2rem; line-height: 1.7; }
.about-wrap h3 { color: var(--green); margin: 2rem 0 0.6rem; }
.faq-item { margin-bottom: 1.8rem; }
.faq-item h3 { color: var(--green-mid); font-size: 1rem; margin-bottom: 0.4rem; }
.faq-item p { font-family: sans-serif; color: var(--text-light); }

/* FOOTER */
footer {
  background: var(--green);
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 2rem;
  font-family: sans-serif;
  font-size: 0.9rem;
}
footer a { color: var(--gold); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .nav-links { gap: 1rem; }
  .btn-outline { margin-left: 0; margin-top: 0.5rem; }
  .newsletter-form { flex-direction: column; }
}
