/* ========================================
  ROOT VARIABLES & DESIGN TOKENS
  ======================================== */
:root {
  /* Brand Colors */
  --color-primary: #FF6B6B;   
  /* --color-primary-2: #ff7f50; */
  --color-secondary: #219653;
  --bg-lightgreen: #F1FAF5; 
  --bg-lightcoral: #FFF8F6; 
  --bg-lightcyan: #FFFCF7;   
  --color-bg: #ffffff;            
  --color-text: #333333;         
  --color-heading: #333333;     
  --color-muted: #828282;         

  /* Semantic Colors */
  --color-success: #28a745;
  --color-error: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;

  /* Font Sizes */
  --fs-small: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.75rem;
  
  /* Font Weights */
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-thick: 900;

  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

  /* Font Families */
  --font-primary: normal 1rem "Inter", sans-serif;
  --font-secondary: normal 1rem "Nunito", sans-serif;
}


/* ========================================
  BASE RESET
  ======================================== */
html {
  font-size: 62.5%;
}




/* ========================================
  TYPOGRAPHY & FONT UTILITIES
  ======================================== */

/* Nunito Font Family */
.nunito {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Font Weight Utilities */
.light {
  font-weight: var(--fw-light);
}

.normal {
  font-weight: var(--fw-normal);
}

.medium {
  font-weight: var(--fw-medium);
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: var(--fw-bold);
}

.thick {
  font-weight: var(--fw-thick);
}

/* Heading Base Styles */
.heading {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--color-heading);
}

/* Heading Sizes */
.h1 {
  font-size: 4.0rem;
  font-weight: var(--fw-thick);
  line-height: 40px;
}

.h2 {
  font-size: 3.2rem;
  font-weight: var(--fw-thick);
  line-height: 40px;
}

.h3 {
  font-size: 2.8rem;
  font-weight: var(--fw-bold);
  line-height: normal;
}

.h4 {
  font-size: 2.2rem;
  font-weight: var(--fw-bold);
  line-height: normal;
}

.h5 {
  font-size: 1.8rem;
  font-weight: var(--fw-bold);
  line-height: 24px;
}

.h6 {
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  line-height: normal;
}

/* Text Base Styles */
.text {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--color-text);
}

/* Text Sizes */
.text-lg {
  font-size: 2.4rem;
  font-weight: var(--fw-medium);
  line-height: normal;
}

.text-md {
  font-size: 2.0rem;
  font-weight: var(--fw-normal);
  line-height: 32px;
}

.text-x {
  font-size: 1.8rem;
  font-weight: var(--fw-medium);
  line-height: 27px;
}

.text-sm {
  font-size: 1.6rem;
  font-weight: var(--fw-normal);
  line-height: 24px;
}

.text-xs {
  font-size: 1.4rem;
  font-weight: var(--fw-light);
  line-height: 24px;
}

/* Text Hover Effects */
.text-hover-orange:hover {
  color: var(--color-primary) !important;
}


/* ========================================
  BACKGROUND COLOR UTILITIES
  ======================================== */
.bg-orange {
  background-color: var(--color-primary);
}

.bg-green {
  background-color: var(--color-secondary);
}

.bg-lightgreen {
  background-color: var(--bg-lightgreen);
}

.bg-warm {
  background-color: var(--bg-lightcyan);
}

.bg-lightcoral {
  background-color: var(--bg-lightcoral);
}


/* ========================================
  NAVIGATION & LINKS
  ======================================== */

/* Nav and Footer Links */
.nav-link,
.footer-link {
  position: relative;
  text-decoration: none;
}

/* Animated underline effect */
.nav-link::after,
.footer-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.footer-link:hover::after {
  width: 100%;
}


/* ========================================
  GLOBAL RESET
  ======================================== */

* {
  text-decoration: none;
  list-style: none;
}

.row,
.col {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
}

a,
button {
  text-decoration: none;
  list-style: none;
  box-shadow: none !important;
  outline: none;
}

/* Remove focus states */
.btn:focus,
.btn:active,
.nav-link:focus,
.nav-link:active,
a:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Body Styles */
body {
  font-weight: var(--fw-normal);
  color: var(--color-text);
  overflow-y: auto !important;
  overflow-x: hidden !important;
  width: 100vw;
}

body.no-scroll {
  overflow: hidden !important;
}


/* ========================================
  HEADER
  ======================================== */

.header {
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 950;
}

/* Top Icons */
.header .top-icons .icon a {
  color: white;
  padding: 0 10px;
}

.header .top-icons .icon a svg {
  width: 20px;
  height: 20px;
}

/* Navigation Menu */
.header .nav-menu li {
  padding: 0 20px;
}

/* Navigation Icons */
.header .nav-icons li a {
  color: var(--color-text);
}

.nav-link.active::after {
  width: 100%;
}
.nav-link.active{
  color: var(--color-primary);
}


/* Sidebar Navigation */
#sidebar {
  position: fixed;
  top: 50px;
  left: -101%;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: var(--color-bg);
  transition: left 0.3s ease;
}

/* Sidebar Active State */
#sidebar.active {
  left: 0;
}


/* ========================================
  FOOTER
  ======================================== */

#siteFooter {
  width: 100%;
  padding: 0;
  background-color: var(--color-bg);
  border-radius: 30px 30px 0 0;
}

/* Social Icons */
#siteFooter .social-icons .fb-icon {
  background-color: #333;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 50%;
}

/* Wave Section */
.wave-wrapper {
  position: relative;
  background: #FAFAFA;
  padding: 50px 20px 100px;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
}

.wave svg {
  width: 100%;
  height: 100%;
}

/* Wave SVG Path Color */
.wave path {
  fill: white;
}

/* Middle Footer Section */
.middle-footer {
  padding: 0 20px 20px;
}

/* Page Links */
.page-links a {
  width: fit-content;
  margin: 0 0 15px;
  padding: 0 2px 0;
}

.page-links a.breed-quiz-btn {
  width: fit-content;
  margin: 0 0 15px;
  padding: 0 2px 0;
}

/* Payment Card Logos */
.payment-cards .card {
  width: 120px;
  height: 60px;
  padding: 2px;
  border: 1.5px solid transparent;
  border-radius: 10px;
}

.payment-cards .paypal {
  border-color: #243B7F;
}

.payment-cards .cashapp {
  border-color: #01E013;
}

.payment-cards .walmart {
  border-color: #EBC950;
}

.payment-cards .apllepay {
  border-color: #000000;
}

.payment-cards .moneygram {
  border-color: #DD2026;
}

.payment-cards .westernunion {
  border-color: #FFDD00;
}

.payment-cards .card .card-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
  object-position: center;
}

.payment-cards .card:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}


/* Bottom Footer with Background Image */
.bottom-footer {
  height: 180px;
  padding: 0 20px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url('../images/footer-image-mobile.png');
}


/* ========================================
  DESKTOP BREAKPOINT (1023px+)
  ======================================== */

@media (min-width: 1023px) {

  /* Navigation Icons */
  .header .nav-icons li a {
   color: var(--color-text);
  }

  /* Footer */
  #siteFooter {
   width: 100%;
   padding: 0;
  }

  /* Wave Wrapper - Desktop */
  #siteFooter .wave-wrapper {
   padding: 80px 100px 150px;
  }

  /* Middle Footer - Desktop */
  .middle-footer {
   padding: 0 100px 20px;
  }

  /* Bottom Footer - Desktop */
  .bottom-footer {
   height: 250px;
   padding: 0 100px 0;
   background-size: 100% 100%;
   background-position: center top;
   background-image: url('../images/footer-image.png');
  }

}