@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

:root {
  --font-base: 'Poppins', sans-serif;
  --clr-bg: #ffffff;
  --clr-primary: #402419;
  --clr-accent: #C47A4A;
  --clr-light: #F9F5F2;
  --clr-text: #2b2b2b;
  --radius: 8px;
}

body {
  margin: 0;
  font-family: var(--font-base);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Image */
.logo img {
  height: 65px;
  width: auto;
  display: block;
  transform: scale(1.2); /* increases logo visually */
  transform-origin: left center; /* scaling from left */
}


/* Navigation Links */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  font-size: 14px;
}

.nav-links .btn--sm {
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid #1d1d1f;
  font-size: 14px;
  transition: all 0.2s ease;
}

.nav-links .btn--outline:hover {
  background-color: #1d1d1f;
  color: #fff;
}


.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--clr-accent);
  color: white;
}

.btn--outline {
  border: 2px solid var(--clr-accent);
  color: var(--clr-accent);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero {
  display: flex;
  min-height: 100vh;           /* full-screen */
}

/* shared column styles */
.hero__col {
  flex: 1 1 50%;
}

/* left side */
.hero__left {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(2rem, 6vw, 8rem);
}

.hero__title {
  font-family: 'Playfair Display', serif; /* elegant serif */
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 3rem 0;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.hero__cta {
  font-family: var(--font-base);          /* keep Poppins for CTA */
  font-weight: 500;
  font-size: 1rem;
  color: var(--clr-text);
  transition: color 0.2s ease;
}

.hero__cta:hover {
  color: var(--clr-accent);
}

/* right side background */
.hero__right {
  background: url('/public/assets/img/beans.png') center / cover no-repeat;
}

/* --- MOBILE STACK --- */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero__right {
    min-height: 50vh;          /* show image nicely on mobile */
  }
}

/* ===== CLUB SECTION (brown background) ===== */
.club {
  background: #6d4b33;                 /* warm coffee-brown */
  color: #ffffff;
  padding: 5rem 0 6rem;
  text-align: center;
  font-family: var(--font-base);
}

/* pitch headline */
.club__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  margin: 0 auto 2rem;
  max-width: 800px;
  letter-spacing: 0.5px;
}

.club__subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 4rem;
}

/* selector grid */
.club__selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

/* individual card */
.club__card {
  background: #6d4b33;                /* same brown for flush look */
  border: 3px solid #1d1b1b;          /* strong black-ish border */
  padding: 3rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* icon in a thin circle */
.club__icon {
  width: 160px;
  height: 160px;
  border: 2px solid #1d1b1b;
  border-radius: 50%;
  padding: 1.5rem;
  object-fit: contain;
  margin-bottom: 2rem;
}

/* headings */
.club__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  letter-spacing: 0.3px;
}

.club__subheading {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.35rem;            /* spaced-out look */
  margin: 0 0 1.5rem;
  color: #d0b89f;                      /* light coffee accent */
}

/* body copy */
.club__text {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 260px;
}

/* responsive tweaks */
@media (max-width: 768px) {
  .club__title { font-size: 1.6rem; }
  .club { padding: 4rem 0 5rem; }
  .club__icon { width: 120px; height: 120px; }
}


.section {
  padding: 4rem 0;
}

.section__title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--clr-primary);
}

.section__subtitle {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.selector__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.selector__card {
  background: var(--clr-light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.selector__heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 0.5rem;
}

.selector__input {
  width: 100%;
  padding: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid #ccc;
}

/* ===== FAQ SECTION ===== */
.faq {
  background: #6d4b33; /* brown */
  color: #fff;
  padding: 5rem 0;
  font-family: var(--font-base);
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.faq__subtitle {
  font-size: 0.95rem;
  color: #e8d8cd;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.faq__list {
  text-align: left;
}

/* each item */
.faq__item {
  background: #fef6e8;
  color: #111;
  margin-bottom: 0.5rem;
  border: 1px solid #8b6f4c;
}

.faq__question {
  background: none;
  width: 100%;
  border: none;
  margin: 0;
  padding: 0.75rem 1.25rem;  /* reduce height */
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;          /* tighten text block */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4e2d1a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}



.faq__icon {
  font-size: 1.25rem;
  color: #b68e67;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  line-height: 1.5;
  transition: all 0.3s ease;
  background: #fef6e8;
}

.faq__item.active .faq__answer {
  padding: 0.75rem 1.25rem;
  max-height: 600px;
}

.faq__item {
  margin: 0;
  border: 1px solid #8b6f4c;
  background: #fef6e8;
}



/* -------------  RESET  ------------- */
html, body { margin:0; padding:0; }

/* -------------  COLOURS ------------- */
:root{
  --cream:#fdf6e9;
  --brown:#6a4630;
  --text:#1d1d1f;
  --accent:#c08b5c;
  --font:'Poppins',sans-serif;
}

/* -------------  FOOTER ------------- */
/* ===== FOOTER STYLES ===== */
footer.footer {
  background-color: #fef7e8;
  font-family: 'Poppins', sans-serif;
  color: #222;
  padding: 0;
}

.footer__top {
  text-align: center;
  padding: 2rem 0 0.5rem;
}

.footer-logo {
  max-height: 80px;
  width: auto;
  transform: scale(1.2); /* Increase logo size visually */
  transform-origin: center; /* Scale from center */
  display: inline-block;
}


.stat-banner {
  background-color: #fef7e8;
  text-align: center;
  padding: 2rem 1rem 0;
  font-size: 18px;
}

.stat-banner {
  background-color: #fef7e8;
  padding: 2rem 1rem 1.5rem;
  text-align: center;
}

.stat-banner p {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.8px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  text-transform: capitalize;
}


.footer__middle {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 2rem 1rem;
  flex-wrap: wrap;
}

.footer__column {
  flex: 1 1 200px;
  text-align: center;
  margin: 1rem 0;
}

.footer__column h4 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer__social a {
  margin: 0 0.5rem;
  color: #222;
  text-decoration: none;
}

.footer__social i {
  font-size: 1.2rem;
}

.footer__bottom {
  background-color: #69462f;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
}


/* ===== FRANCHISE STYLES ===== */

.btn-franchise {
    background-color: #666f77;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 25px;
    margin: 5px 10px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.btn-franchise:hover {
    background-color: #4f5961;
}




/* -------------  RESPONSIVE  ------------- */
@media(max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}

