/* ================================================
   Flyboy's Bulldogs — Style Sheet
   Professional with personality
   ================================================ */

:root {
  --navy: #1a2744;
  --navy-light: #243352;
  --gold: #c9a84c;
  --gold-light: #e4cc7a;
  --cream: #faf8f2;
  --warm-white: #fffdf7;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.2s;
}

/* ---- Hero ---- */
.hero {
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 24px 80px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 16, 30, 0.95) 0%,
    rgba(10, 16, 30, 0.7) 30%,
    rgba(10, 16, 30, 0.3) 60%,
    rgba(10, 16, 30, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-credentials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.cred-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-email {
  font-size: 1.1rem;
  padding: 18px 48px;
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 8px;
  color: var(--navy);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 56px;
}

/* ---- About ---- */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.about-content h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-role {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.about-awards-bar {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 28px;
}

.about-awards-bar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.about-awards-bar li {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.about-awards-bar li::before {
  content: '★ ';
  color: var(--gold);
  font-size: 0.75rem;
}

.about-awards-bar li a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
}

.about-awards-bar li a:hover {
  color: #fff;
  text-decoration: underline;
}

.about-content .about-awards-bar .cert-note {
  font-size: 0.75rem;
  color: #fff;
  font-style: italic;
  margin-top: 10px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
}

/* ---- Gallery ---- */
.gallery-section {
  background: var(--warm-white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.dog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.dog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dog-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.dog-name {
  padding: 16px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
}

/* ---- French Bulldogs ---- */
.frenchies-section {
  background: var(--cream);
}

/* ---- Contact ---- */
.contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  text-align: center;
}

.contact .section-title {
  color: #fff;
}

.contact .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.contact-container {
  max-width: 640px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.contact-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-note {
  font-size: 0.85rem !important;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 24px;
  margin-bottom: 0 !important;
}

/* ---- Footer ---- */
.footer {
  background: #111b2e;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 40px 24px;
  font-size: 0.85rem;
}

.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 80px 32px 40px;
    gap: 24px;
    transition: right 0.3s;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    max-width: 300px;
    margin: 0 auto;
    position: static;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 90vh;
    padding: 0 20px 60px;
  }

  .contact-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .dog-name {
    padding: 10px 12px;
    font-size: 0.78rem;
  }
}
