@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap");

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.page-wrapper {
  overflow-x: hidden;
}

.main-wrapper {
  position: relative;
}

/* Modern Button Styles */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 14px 28px;
  background: linear-gradient(135deg, #febf14 0%, #f39c12 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(254, 191, 20, 0.3);
  overflow: hidden;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 191, 20, 0.4);
  color: #fff;
  text-decoration: none;
}

.primary-text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-weight: 600;
}

.primary-abs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.primary-btn:hover .primary-abs {
  opacity: 1;
}

/* Navigation Styles */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

.container.second-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 16px;
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.image-2 {
  height: 42px;
  width: auto;
  opacity: 1;
}

/* Desktop Navigation */
.nav-menu-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 50px;
  padding: 0 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0;
  padding: 16px 0;
  list-style: none;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #042f35;
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 16px;
  font-family: Aeoniktrial, Times New Roman, sans-serif;
  line-height: 24px;
  transition: all 0.3s;
  border-radius: 8px;
}

.nav-link:hover {
  background-color: rgba(254, 191, 20, 0.1);
  color: #febf14;
  transform: translateY(-1px);
}

.nav-link.w--current {
  color: #febf14;
  background-color: rgba(254, 191, 20, 0.1);
}

/* Hamburger Menu */
.hamburger-tablet {
  display: none;
  z-index: 1001;
}

.menu-button {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.hamburger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  transition: 0.3s;
  border-radius: 1px;
}

/* Mobile Navigation Sidebar */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  display: block;
}

.mobile-nav-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #1e293b;
  z-index: 999;
  transition: left 0.3s ease;
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-nav-sidebar.active {
  left: 0;
}

.mobile-nav-header {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-logo img {
  width: 32px;
  height: 32px;
}

.mobile-nav-brand {
  color: white;
  font-weight: 600;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.mobile-nav-close {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-nav-section {
  padding: 24px 0 16px;
}

.mobile-nav-section-title {
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 20px 16px;
  margin: 0;
  font-family: "Inter", sans-serif;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  margin: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  font-family: "Inter", sans-serif;
}

.mobile-nav-link:hover {
  background: rgba(254, 191, 20, 0.1);
  color: #febf14;
  border-left-color: #febf14;
  text-decoration: none;
  transform: translateX(4px);
}

.mobile-nav-link.active {
  background: rgba(254, 191, 20, 0.15);
  color: #febf14;
  border-left-color: #febf14;
}

.mobile-nav-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.mobile-nav-button {
  margin: 24px 20px 20px;
}

.mobile-nav-button .primary-btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 12px 24px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.background-videos {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
}

.background-videos::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.header {
  position: relative;
  z-index: 2;
  width: 100%;
}

.padding-global {
  padding-top: 150px;
  padding-bottom: 150px;
}

.container.header-container {
  max-width: 1800px;
  margin: 0 auto;
}

.header-content {
  text-align: center;
  color: white;
  margin: 400px auto 50px;
}

.hero-title {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 0 16px;
}

.heading {
  color: white;
  text-transform: uppercase;
  margin-top: -133px;
  margin-bottom: 0;
  font-family: "Formadjrdeck Testing", Times New Roman, sans-serif;
  font-size: 80px;
  line-height: 110px;
  font-weight: 700;
}

/* Content Sections */
.content-section {
  padding: 80px 0;
}

.main-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-container.centre {
  text-align: center;
}

.header-wrap-centre {
  max-width: 800px;
  margin: 0 auto 60px;
}

.h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}

.h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.paragraph-3 {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 1rem;
}

._1-3-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.content-wrap-icons {
  text-align: center;
  padding: 30px 20px;
}

/* Featured Puppies Section */
.seckky.doo {
  padding: 80px 0;
  background: #f8f9fa;
}

.content_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.spacing_48 {
  height: 48px;
}

.spacing_24 {
  height: 24px;
}

.spacing_16 {
  height: 16px;
}

.spacing_4 {
  height: 4px;
}

.section_title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #333;
  margin-bottom: 1rem;
}

.blog_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.product_item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.product_item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}

.product_image_wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 20px 20px 0 0;
}

.product_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product_item:hover .product_image {
  transform: scale(1.1);
}

.discount_tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #febf14 0%, #f39c12 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(254, 191, 20, 0.4);
}

.font_weight_bold {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  padding: 0 20px;
  margin-top: 15px;
}

.text_color_grey {
  color: #666;
  font-size: 1rem;
  padding: 0 20px 20px;
  margin: 0;
}

.button-2.background_white {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  color: #333;
  border: 2px solid #febf14;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(254, 191, 20, 0.2);
}

.button-2.background_white:hover {
  background: linear-gradient(135deg, #febf14 0%, #f39c12 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 191, 20, 0.3);
  text-decoration: none;
}

/* Footer Section */
.cta-section {
  background: linear-gradient(135deg, #febf14 0%, #f39c12 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.container-2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.heading-1.white {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.button-4.hero {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  color: #333;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.button-4.hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #333;
}

.footer-section {
  background: linear-gradient(135deg, #333 0%, #2c2c2c 100%);
  color: #fff;
  padding: 40px 0;
}

.footer-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.body-text.light {
  color: #ccc;
  line-height: 1.8;
}

.link {
  color: #febf14;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 991px) {
  .navbar-wrapper {
    justify-content: space-between;
  }

  .nav-menu-wrapper {
    display: none;
  }

  .hamburger-tablet {
    display: block;
  }

  .image-2 {
    height: 36px;
  }

  .navbar {
    background: rgba(4, 47, 53, 0.9);
    backdrop-filter: blur(10px);
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  ._1-3-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog_grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .heading {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .content-section {
    padding: 60px 0;
  }

  .container.second-container,
  .main-section,
  .content_wrapper,
  .container-2 {
    padding: 0 15px;
  }
}

@media (max-width: 479px) {
  .mobile-nav-sidebar {
    width: 280px;
    left: -280px;
  }

  .heading {
    font-size: 2rem;
  }

  .h2 {
    font-size: 1.8rem;
  }

  .section_title {
    font-size: 2rem;
  }

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

/* Utility Classes */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus States */
.primary-btn:focus,
.nav-link:focus,
.mobile-nav-link:focus {
  outline: 2px solid #febf14;
  outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
