/*
Theme Name: Ayushi Theme
Theme URI: https://example.com/ayushi-theme
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme built for creativity and design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ayushi-theme
*/



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
}

.graphic-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  max-width: 90%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  animation: overlayFadeIn 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes overlayFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}


@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .graphic-overlay {
    width: 280px;
  }
}
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 300px; /* or set as needed */
  opacity: 0.7; /* optional for blend effect */
}

.hero-title {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  font-size: 3rem;
}
