/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ✅ Header Layout */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: transparent;
}

/* ✅ Logo */
.logo img {
  height: 60px;
  width: auto;
}

/* ✅ Nav Links to Right */
.navbar {
  margin-left: auto;
}

.navbar ul {
  display: flex;
  gap: 30px;
}

.navbar ul li a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.navbar ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffd740;
}

/* ✅ Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px;
  color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)),
    url('../images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ✅ Hero Content */
.hero-content {
  max-width: 800px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #eee;
}

/* ✅ Fade In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 30px;
  }

  .navbar {
    width: 100%;
    margin-top: 10px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 12px;
    border-radius: 8px;
  }

  .hero {
    padding: 40px 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
