/* =============================================
   A PLUS SPIRITS — style.css
   Matching approved PSD design
   ============================================= */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;700&display=swap");

/* --- Variables --- */
:root {
  --black: #111111;
  --white: #ffffff;
  --sky-blue: #4bbfe8;
  --text-body: #1a1a1a;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* =============================================
   BODY — single column page grid
   ============================================= */
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
  min-height: 100vh; /* fill the screen at minimum */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto 1fr auto; /* mission row grows */
}

/* =============================================
   HEADER
   Logo top-left, no nav links (per PSD)
   ============================================= */

header {
  background-color: var(--white);
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* =============================================
   HERO
   Full-width, tall image
   ============================================= */

.hero {
  display: grid;
  grid-template-columns: 1fr;
  height: 500px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* =============================================
   CONTENT SECTION
   grid: text left (1fr) | circular image right (1fr)
   ============================================= */

.content {
  background-color: var(--white);
  padding: 4rem 2.5rem;
}

.content-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.content-text h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--sky-blue);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.content-text p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.content-text p:last-child {
  margin-bottom: 0;
}

/* Circular product image — blue circle background */
.content-image {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
}

/* =============================================
   MISSION BANNER
   Bubbles background, centered white text
   ============================================= */

.mission {
  background-image: url("bubbles.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.mission p {
  max-width: 780px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.9;
  color: var(--white);
  text-align: center;
}

/* =============================================
   FOOTER
   Centered guild credit only (per PSD)
   ============================================= */

footer {
  background-color: var(--white);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  border-top: 1px solid #e8e8e8;
}

.web-guild {
  font-size: 0.9rem;
  color: var(--sky-blue);
  text-align: center;
}

/* =============================================
   RESPONSIVE — Tablet
   ============================================= */

@media (max-width: 860px) {
  .content-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .content-image img {
    width: 300px;
    height: 300px;
  }
}

/* =============================================
   RESPONSIVE — Mobile
   ============================================= */

@media (max-width: 600px) {
  header {
    padding: 0.75rem 1.25rem;
  }

  .logo {
    height: 52px;
  }

  .hero {
    height: 260px;
  }

  .content {
    padding: 2.5rem 1.25rem;
  }

  .content-text h1 {
    font-size: 2.4rem;
  }

  .content-text p {
    font-size: 0.95rem;
  }

  .mission {
    padding: 2.5rem 1.25rem;
  }

  .mission p {
    font-size: 1rem;
  }

  footer {
    padding: 1.25rem;
  }
}
