/* FONT IMPORT */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

/* ===== NAVBAR ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 60px;
  height: 70px;
  background-color: #5e4b8b;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* LOGO */
.logo a {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.logo a:hover {
  color: #ffd86b;
  transform: scale(1.1);
}

/* NAV LINKS */
nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffd86b;
}

/* UNDERLINE EFFECT */
nav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: #ffd86b;
  border-radius: 50px;
  transition: all 0.35s ease;
}

nav ul li a:hover::after {
  width: 60%;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* NAV LINKS ACTIVE (FOR MOBILE) */
nav ul.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0;
  background-color: #5e4b8b;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  gap: 20px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

/* ===== HEADER SECTION ===== */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 70px);
  padding: 0 60px;
  background: linear-gradient(135deg, #5e4b8b, #7c59ab, #ffd86b, #fff1a8);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* HEADER CONTENT */
.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  text-align: center;
}

.text-content h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 20px;
  color: #fef9e7;
  max-width: 500px;
  line-height: 1.5;
}

.btn-contact {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #5e4b8b;
  background: linear-gradient(90deg, #ffd86b, #fff1a8);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 5px 15px rgba(255, 216, 107, 0.4);
}

.btn-contact:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 216, 107, 0.5);
  color: #fff;
  background: linear-gradient(90deg, #fff1a8, #ffd86b);
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 216, 107, 0.5);
  box-shadow: 0 0 30px rgba(255, 216, 107, 0.2);
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
  }

  .header-content {
    flex-direction: column;
    gap: 40px;
  }

  .text-content h1 {
    font-size: 40px;
  }

  .text-content p {
    font-size: 18px;
  }

  .image-placeholder {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 600px) {
  .text-content h1 {
    font-size: 32px;
  }

  .text-content p {
    font-size: 16px;
    max-width: 300px;
  }

  .btn-contact {
    padding: 10px 25px;
    font-size: 16px;
  }

  .image-placeholder {
    width: 200px;
    height: 200px;
  }
}

