/*
Theme Name: FluidBody
Theme URI: https://fluidbody.ca
Author: FluidBody
Author URI: https://fluidbody.ca
Description: A clean custom theme for FluidBody.ca using the MELT Method brand colors and logo.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fluidbody
*/

:root {
  --fluidbody-primary: #0257a7;
  --fluidbody-dark: #203859;
  --fluidbody-light: #94c0e7;
  --fluidbody-accent: #ee4630;
  --fluidbody-text: #444444;
  --fluidbody-bg-soft: #f9fbfd;
  --fluidbody-on-dark: #ffffff;
  --max-width: 1200px;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(2, 87, 167, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  color: var(--fluidbody-text);
  background: var(--fluidbody-bg-soft);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Great Vibes', cursive;
  font-weight: 700;
  color: var(--fluidbody-dark);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.8rem; }

a {
  color: var(--fluidbody-primary);
  text-decoration: none;
}

a:hover {
  color: var(--fluidbody-accent);
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
.site-header {
  background: var(--fluidbody-on-dark);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.home .site-header,
.front-page .site-header {
  display: none;
}

.site-header .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  font-weight: 600;
  color: var(--fluidbody-dark);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.site-nav a:hover {
  border-bottom-color: var(--fluidbody-primary);
  color: var(--fluidbody-primary);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--fluidbody-light) 0%, var(--fluidbody-bg-soft) 100%);
  padding: 6rem 2rem;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(32, 56, 89, 0.15));
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--fluidbody-text);
}

.hero .button {
  display: inline-block;
  background: var(--fluidbody-primary);
  color: var(--fluidbody-on-dark);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, background 0.2s;
}

.hero .button:hover {
  background: var(--fluidbody-dark);
  transform: translateY(-2px);
  color: var(--fluidbody-on-dark);
}

/* Main content */
.site-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
  min-height: 400px;
}

.site-main article {
  background: var(--fluidbody-on-dark);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.entry-title {
  margin-bottom: 1rem;
}

.entry-content {
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: var(--fluidbody-dark);
  color: var(--fluidbody-on-dark);
  padding: 3rem 2rem;
  text-align: center;
}

.site-footer a {
  color: var(--fluidbody-light);
}

.site-footer a:hover {
  color: var(--fluidbody-on-dark);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-logo {
    max-width: 280px;
  }

  .hero {
    padding: 4rem 1.5rem;
  }
}
