/* Global Settings & Design Tokens */
:root {
  /* Colors */
  --c-primary: #a05a13;      /* Brown/Orange from buttons */
  --c-secondary: #f2f2f2;    /* Light Gray */
  --c-inverted: #333639;     /* Dark Gray */
  --c-text-main: #2b2b2b;
  --c-text-muted: #666;
  --c-blue: #00a6e6;
  --c-blue-light: #e0f2fe;
  --c-orange-light: #ffedd5;
  --c-bg: #fffefe;
  --c-bg-gradient: linear-gradient(180deg, #fcebdb 0%, #ffffff 20%, #eff7ff 80%, #ffffff 100%);
  
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Be Vietnam Pro', sans-serif;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('Fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 800;
}

@font-face {
  font-family: 'Be Vietnam Pro';
  src: url('Fonts/Be_Vietnam_Pro/BeVietnamPro-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Be Vietnam Pro';
  src: url('Fonts/Be_Vietnam_Pro/BeVietnamPro-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Be Vietnam Pro';
  src: url('Fonts/Be_Vietnam_Pro/BeVietnamPro-Bold.ttf') format('truetype');
  font-weight: 700;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--c-text-main);
  background: var(--c-bg-gradient);
  background-attachment: fixed; /* Keep gradient steady on scroll */
  background-size: cover;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .logo, .footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Typography Helpers */
.text-orange { color: var(--c-primary); }
.text-blue { color: var(--c-blue); }
.centered { text-align: center; }

h1 { font-size: 4.5rem; }
h2 { font-size: 3rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--c-primary);
  color: #fff;
}
.btn-primary:hover {
  background-color: #8b4e10;
}

.btn-secondary {
  background-color: var(--c-secondary);
  color: #333;
}
.btn-secondary:hover {
  background-color: #e2e2e2;
}

.btn-inverted {
  background-color: var(--c-inverted);
  color: #fff;
}
.btn-inverted:hover {
  background-color: #1a1b1d;
}

.btn-outlined {
  background-color: transparent;
  color: #333;
  border: 1px solid #ccc;
}
.btn-outlined:hover {
  border-color: #999;
}

/* Layout Constrains */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar, .hero, .features, .breeds, .facts, footer {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.logo {
  font-size: 1.25rem;
  color: var(--c-primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--c-text-main);
  position: relative;
}

.nav-links a.active, .nav-links a:hover {
  color: var(--c-primary);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--c-primary);
  transition: width 0.3s ease;
}
.nav-links a.active::after, .nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.login-link {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.hero-content {
  flex: 1;
}

.hero-content p {
  margin: 2rem 0;
  font-size: 1.1rem;
  color: var(--c-text-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-img {
  width: 90%;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  padding: 1rem 1.7rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.floating-badge strong {
  display: block;
  font-size: 1.15rem;
  font-family: var(--font-heading);
  color: #2b2b2b;
  margin-bottom: 0.1rem;
}

.floating-badge span {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
}

.hero-badge {
  bottom: 0;
  left: -20px;
}

.facts-badge {
  bottom: 20px;
  right: -30px;
}

.text-large {
  font-size: 2.2rem !important;
  color: #b76c24 !important;
  line-height: 1.1;
  margin-bottom: 0.25rem !important;
}

.icon-circle {
  width: 44px;
  height: 44px;
  background-color: #def1ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle img {
  width: 22px;
  filter: brightness(0) saturate(100%) invert(43%) sepia(33%) saturate(3474%) hue-rotate(180deg) brightness(97%) contrast(92%);
}

/* Features */
.features {
  display: flex;
  gap: 4rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.features-header {
  flex: 0 0 300px;
}
.features-header p {
  margin-top: 1.5rem;
  color: var(--c-text-muted);
}

.features-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.feature-icon {
  width: 24px;
  margin-bottom: 1rem;
  /* Icon tint primary */
  filter: brightness(0) saturate(100%) invert(38%) sepia(35%) saturate(1600%) hue-rotate(345deg) brightness(96%) contrast(83%);
}

.feature-card h3 {
  font-size: 1.25rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--c-text-muted);
}

/* Breeds Section */
.breeds {
  padding-top: 6rem;
  padding-bottom: 6rem;
  margin-bottom: 5rem;
}

.section-heading.centered p {
  color: var(--c-text-muted);
  margin-top: 1rem;
}

.breeds-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
  height: 700px;
}

.breed-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}

.breed-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.breed-card:hover img {
  transform: scale(1.08);
}

.breed-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 2rem 2rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: white;
}

.breed-info.gradient-blue {
  background: linear-gradient(to top, rgba(0,100,200,0.8) 0%, rgba(0,0,0,0) 100%);
}

.breed-info.gradient-brown {
  background: linear-gradient(to top, rgba(160,90,19,0.9) 0%, rgba(0,0,0,0) 100%);
}

.breed-info h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.breed-info p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

.breed-stacked {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
}

/* Facts Section */
.facts {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.facts-content {
  flex: 1;
}

.facts-list {
  list-style: none;
  margin-top: 3rem;
}

.facts-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.fact-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.color-orange { background-color: var(--c-orange-light); color: var(--c-primary); }
.color-blue { background-color: #f0f9ff; color: var(--c-blue); }
.color-blue-light { background-color: #e0f2fe; color: #0284c7; }
.color-green { background-color: #ecfdf5; color: #10b981; }

.fact-text {
  font-size: 1.05rem;
  color: var(--c-text-muted);
}
.fact-text strong {
  color: var(--c-text-main);
}

.facts-image-wrapper {
  flex: 1;
  position: relative;
}

.facts-img {
  width: 100%;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  text-align: center;
  padding-bottom: 4rem;
}

.footer-logo {
  font-size: 1.5rem;
  color: var(--c-primary);
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--c-text-muted);
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eaeaea;
  padding-top: 2rem;
}

.social-links, .policy-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-label {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #333;
}

.social-links a, .policy-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-text-muted);
}
.social-links a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.6;
}

.logo-black {
  filter: brightness(0);
  opacity: 0.8 !important;
}

.footer-actions {
  display: flex;
  gap: 1rem;
}

.circle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.circle-btn:hover {
  border-color: var(--c-primary);
}
.circle-btn img {
  width: 20px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .hero, .features, .breeds-gallery, .facts {
    flex-direction: column;
  }
  .hero-image-wrapper { justify-content: center; margin-top: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .breeds-gallery { height: auto; grid-template-columns: 1fr; }
  .breed-card.large-card { height: 400px; }
  .footer-bottom { flex-direction: column; gap: 2rem; }
}
