body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 20px;
    color: #2c3e50;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-animation-name: ScreenFade;
    -webkit-animation-duration: 3s;
    animation-name: ScreenFade;
    animation-duration: 3s;
    line-height: 1.6;
}

body a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

body a:hover {
    color: #2980b9;
}

h2 {
    text-align: center;
    padding: 15px 0;
    font-size: 1.8em;
    color: #34495e;
    text-transform: uppercase;
    margin: 20px 0;
    border-bottom: 2px solid #3498db;
    display: inline-block;
}
button{
    border: none;
    background-color: orange;
    color: white;
    border-radius: 3px;
    height: 30px;
}
button:hover{
    background-color: rgba(255, 166, 0, 0.654);
}

.hero-section {
  position: relative;
  width: calc(100% + 40px);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  top: -20px;
  left: -20px;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 40px);
  height: 100%;
  background-image: url(./../img/white_cat_blue_eyes_fluffy_pet_blur_animal_wallpaper_background_4k_hd_cat.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  margin-right: -40px;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  left: -250px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 20px;
  color: #ddd;
}

.btn-hero {
  background-color: #ffb400;
  color: #000;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background-color: #ffd500;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}
