
/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #fdbf21; /* Background color of the page */
  overflow-x: hidden;
}

/* Main container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

/* Header */
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.header .logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
}

.header nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Content Section */
.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 50px; /* Extra spacing at the bottom */
}

/* Left Content */
.content .left {
  max-width: 600px;
  animation: slideInLeft 1s ease-in-out forwards;
  animation-delay: 1s; /* Delay for the slide-in animation */
  opacity: 0;
}

.content .left h1 {
  font-size: 3em;
  color: #fff;
  margin: 0;
}

.content .left p {
  font-size: 1.2em;
  color: #fff;
}

.notify-form {
  display: flex;
  margin-top: 20px;
}

.notify-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.notify-form button {
  padding: 10px 20px;
  background-color: #ff9000;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

/* Right Content (Girl Image and Circle) */
.content .right {
  position: relative;
}

.animated-girl {
  width: 350px;
  animation: zoomInOut 6s ease-in-out infinite;
  position: relative; /* Keeps the girl above the circle */
  z-index: 2;
}

.circle {
  position: absolute;
  background-color: #FFB614;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  z-index: 1;
  top: 40%; /* Raised circle slightly */
  left: 50%; /* Centered horizontally */
  transform: translate(-45%, -50%); /* Adjusted centering */
}

/* Footer Section */
.footer {
  margin-top: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icon img {
  width: 40px;
  height: 40px;
  animation: slideInBottom 1s ease-in-out forwards;
  opacity: 0;
}

.icon:nth-child(1) {
  animation-delay: 2s;
}

.icon:nth-child(2) {
  animation-delay: 2.5s;
}

.icon:nth-child(3) {
  animation-delay: 3s;
}

/* Animations */
@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes slideInBottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
