* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)),
    url(images/hero.png) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/hero.png) center/cover no-repeat;
  filter: blur(0px);
  z-index: -1;
  transition: filter 5s ease;
}

.hero:hover::before {
  filter: blur(2px);
}

.heroTitel {
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-bottom: 10px;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInDown 1s ease forwards 0.3s;
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.heroTitel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #a9593d;
  animation: expandLine 1s ease forwards 1s;
}

@keyframes expandLine {
  to {
    width: 100px;
  }
}

/* Navigation */
.main-nav {
  margin: 30px 0 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.navButton {
  padding: 10px 20px;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  background: transparent;
  border: 2px solid white;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}

.navButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  z-index: -1;
}

.navButton:hover::before {
  left: 0;
}

.navButton:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: #a9593d;
  box-shadow: 0 5px 15px rgba(169, 89, 61, 0.4);
}

.navButton.current {
  background: rgba(169, 89, 61, 0.8);
  color: #222;
  border-color: #a9593d;
}

/* Scroll Button */
.scroll-btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  color: white;
  border: 2px solid white;
  background: transparent;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  animation: bounce 2s infinite 1.5s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.9s, bounce 2s infinite 2s;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}

.scroll-btn:hover {
  background: white;
  color: #a9593d;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.scroll-btn:hover i {
  transform: translateY(5px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.2s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.wheel {
  width: 4px;
  height: 10px;
  background-color: white;
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

/* About Section */
.about {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #a9593d;
  opacity: 0;
  animation: expandLine 1s ease forwards 0.5s;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.3s;
}

.centered-text {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 900px;
  color: #555;
  margin-bottom: 30px;
  padding: 0 20px;
}

.logo-rotate {
  width: 180px;
  height: auto;
  margin-top: 20px;
  transition: transform 1s ease;
}

.logo-rotate:hover {
  transform: rotateY(180deg);
}

/* Breeds Info */
.breeds-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
  width: 100%;
  max-width: 1200px;
}

.breed-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 5px solid #a9593d;
  opacity: 0;
  transform: translateY(30px);
}

.breed-card:nth-child(1) {
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.breed-card:nth-child(2) {
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

.breed-card:nth-child(3) {
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

.breed-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(169, 89, 61, 0.15);
}

.breed-icon {
  font-size: 2.5rem;
  color: #a9593d;
  margin-bottom: 20px;
}

.breed-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.breed-card p {
  color: #666;
  line-height: 1.6;
}

/* Footer */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #333;
  color: white;
  font-size: 0.95rem;
}

footer p {
  margin: 5px 0;
  text-align: left;
  flex: 1;
  white-space: nowrap;
  color: #f0f0f0;
}

footer .socials-container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

footer .socials {
  width: 40px;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

footer .socials2 {
  width: 54px;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: -12px;
  filter: brightness(0) invert(1);
}

footer .socials:hover,
footer .socials2:hover {
  transform: scale(1.2);
  filter: brightness(0) invert(0.8);
}

/* Contact Page Styles */
.contact-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

.contact-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.contact-logo {
  width: 110px;
  height: auto;
  transition: transform 0.3s ease;
}

.contact-logo:hover {
  transform: scale(1.05);
}

.current {
  font-weight: bold;
  font-size: 17px;
  color: #a9593d;
  position: relative;
}

.current::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #a9593d;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from { width: 0; }
  to { width: 100%; }
}

.contact-header a {
  display: inline-block;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #333;
  padding: 5px 10px;
}

.contact-header a:hover {
  transform: translateY(-3px);
  color: #a9593d;
}

.contact-main {
  flex: 1;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-main > h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.contact-main > h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #a9593d;
}

.contact-info-box {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 600px;
  transition: transform 0.3s ease;
}

.contact-info-box:hover {
  transform: translateY(-5px);
}

.contact-info-box h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #222;
  border-left: 5px solid #a9593d;
  padding-left: 15px;
}

.contact-info-box p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-box a {
  color: #a9593d;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.contact-info-box a:hover {
  color: #8a4a32;
  text-decoration: underline;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Gallery Page Styles */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 250px;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
}

.gallery-item.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(169, 89, 61, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Parents Page Styles */
.parents-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.parents-intro {
  text-align: center;
  max-width: 800px;
  margin-bottom: 50px;
}

.parents-intro h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.parents-intro p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
}

.parents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  width: 100%;
}

.parent-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.parent-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(169, 89, 61, 0.15);
}

.parent-image {
  height: 250px;
  overflow: hidden;
}

.parent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.parent-card:hover .parent-image img {
  transform: scale(1.1);
}

.parent-info {
  padding: 25px;
}

.parent-info h3 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 10px;
}

.parent-info h4 {
  font-size: 1.1rem;
  color: #a9593d;
  margin-bottom: 15px;
  font-weight: 600;
}

.parent-info p {
  color: #666;
  line-height: 1.7;
}

/* FAQ Styles */
.faq-item {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
  padding-left: 28px;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2000;
  padding: 10px;
}

.burger span {
  width: 30px;
  height: 3px;
  background: #333;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
  .heroTitel {
    font-size: 2.8rem;
  }
  
  .breeds-info {
    gap: 20px;
  }
  
  .breed-card {
    width: 280px;
  }
  
  .parents-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px;
  }
  
  .heroTitel {
    font-size: 2.3rem;
    margin-top: 40px;
  }
  
  .burger {
    display: flex;
    position: absolute;
    top: 25px;
    right: 20px;
  }
  .burger span {
    background-color: #a9593d; /* your orange color */
}
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 80px 30px 30px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 1000;
  }
  
  .nav-toggle:checked ~ .main-nav {
    right: 0;
  }
  
  .nav-toggle:checked + .burger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .nav-toggle:checked + .burger span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle:checked + .burger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .nav-list {
    flex-direction: column;
    gap: 15px;
  }
  
  .navButton {
    color: #333;
    border-color: #333;
    width: 100%;
    text-align: center;
  }
  
  .navButton.current {
    background: rgba(169, 89, 61, 0.8);
    color: white;
    border-color: #a9593d;
  }
  
  .about {
    padding: 40px 15px;
  }
  
  .centered-text {
    font-size: 1.1rem;
  }
  
  footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  footer p,
  footer .socials-container {
    width: 100%;
    justify-content: center;
  }
  
  footer .socials-container {
    margin-top: 10px;
  }
  
  .contact-main {
    padding: 30px 15px;
  }
  
  .contact-info-box {
    padding: 20px;
  }
  
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .heroTitel {
    font-size: 2rem;
  }
  
  .scroll-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .breed-card {
    width: 100%;
    max-width: 300px;
  }
  
  .contact-header {
    padding: 15px 20px;
  }
  
  .contact-info-box h2 {
    font-size: 1.6rem;
  }
  
  .contact-info-box p {
    font-size: 1rem;
  }
  
  .gallery-container {
    grid-template-columns: 1fr;
  }
}