
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: #fff;
  background: linear-gradient(to right, #dadae6, #e9e9f0);
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(220, 225, 228, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo img {
  height: 45px;
  width: auto;
}

/* MENU DESKTOP */
.menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu ul li a {
  text-decoration: none;
  color: #131010;
  font-size: 16px;
  transition: 0.3s;
}

.menu ul li a:hover {
  color: #00e6e6;
  border-bottom: 2px solid #00e6e6;
  padding-bottom: 3px;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #000;
  border-radius: 3px;
}

/* MOBILE MENU (initially hidden) */
.menu {
  transition: 0.3s;
}

.menu.active {
  display: block;
}

@media (max-width: 900px) {
  .menu {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: rgba(220, 225, 228, 0.97);
    display: none;
    padding: 20px 0;
  }

  .menu ul {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .hamburger {
    display: flex;
  }
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 0 20px;
  background: url('background1.jpg') no-repeat center/cover;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 span {
  color: #666ddb;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* MOBILE HERO FIX */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 16px;
  }
}

/* BUTTON */
.btn {
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 25px;
  background: #6778d8;
  color: #000;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn:hover {
  background: #cccff0;
  transform: translateY(-3px);
}

/* SECTION */
.section {
  padding: 80px 30px;
  text-align: center;
  background: #222;
}

.section h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: #4064b1;
}

.section p {
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
}

@media (max-width: 600px) {
  .section h2 {
    font-size: 1.8rem;
  }
  .section p {
    font-size: 16px;
  }
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 14px;
  color: #888;
}
