* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  height: 100vh;
}

/* Header Navigation */
.header {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 3px;
  color: #2c3e50;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: #6c757d;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #495057;
}

.search-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-box {
  padding: 8px 15px;
  border: 1px solid #e9ecef;
  background: #ffffff;
  font-size: 14px;
  width: 200px;
  outline: none;
  color: #495057;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.search-box:focus {
  border-color: #adb5bd;
}

.search-box::placeholder {
  color: #adb5bd;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 3px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #495057;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    #d288c7ff 0%,
    #f8f9fa 50%,
    #d288c7ff 100%
  );
  /* height: calc(100vh - 80px); */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(108, 117, 125, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(73, 80, 87, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 3px;
  height: 30%;
  background: linear-gradient(to bottom, #6c757d, #adb5bd);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(108, 117, 125, 0.3);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  height: 100%;
}

.hero-content {
  padding-right: 40px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 52px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 50px;
  max-width: 480px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: transparent;
  color: #495057;
  text-decoration: none;
  border: 2px solid #495057;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: #495057;
  color: white;
}

.hero-image {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(45deg, #e9ecef, #f8f9fa, #ffffff);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.8;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hero-image:hover img {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  /* bottom: 0; */
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  color: #6c757d;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #6c757d;
  font-size: 18px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  color: #495057;
}

/* Decorative Line */
.decorative-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #6c757d, #adb5bd);
  margin: 25px 0;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .search-box {
    width: 150px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-image {
    height: 450px;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .logo {
    font-size: 28px;
  }

  .header {
    padding: 25px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .hero-container {
    padding: 0 15px;
  }

  .logo {
    font-size: 28px;
    letter-spacing: 2px;
    align-items: left;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
