* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

body {
    background: #f4f6fb;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: rgb(255, 255, 255);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 30px;
    font-weight: bold;
}

.logo span {
    color: black;
}

.navbar nav a {
    margin-left: 40px;
    text-decoration: 50px;
    padding: 20px ;
    color: black;
    font-weight: 1000;
}

.navbar nav a:hover {
    color: #fdfdfd;
}

/* ===== HERO ===== */
.hero {
    height: 75vh;
    background-image: url("heroine1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    position: relative;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 20, 37, 0.85),
        rgba(10,25,47,0.3)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 44px;
}

.hero-content p {
    margin-top: 12px;
    font-size: 16px;
    opacity: 0.9;
}

.hero-content button {
    margin-top: 25px;
    width: fit-content;
    padding: 12px 30px;
    border-radius: 30px;
    border: 5px solid black;
    background: white;
    color: black;
    font-size: 20px;
    cursor: pointer;
}

.hero-content button:hover {
    background:   blue ;
}

/* ===== FEATURES ===== */
.features {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 60px 40px;
}

.card {
    width: 260px;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.card i {
    font-size: 40px;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 15px;
}

.card button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    background: white;
}

.blue { background: #1f81f0; }
.green { background: #34e91f; }
.orange { background: #f39c12; }

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
    .hero-content {
        padding: 30px;
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }
}
.admin-btn {
    background: black;
    color: #ffffff !important;
    padding: 20px 16px;
    border-radius: 12px;
    margin-left: 15px;
    font-weight: 555;
}

.admin-btn:hover {
    background: blue;
}
/* ===== ABOUT SECTION ===== */
.about-section {
    background: #ffffff;
    padding: 70px 20px;
}

.info-box {
    max-width: 1000px;
    margin: 0 auto 35px;
    padding: 30px;
    background: #f8f9fc;
    border-left: 6px solid #7c5cff;
    border-radius: 8px;
}

.info-box h2 {
    margin-bottom: 12px;
    color: #1a2b3c;
}

.info-box p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 10px;
}

.info-box ul {
    padding-left: 20px;
}

.info-box ul li {
    margin-bottom: 8px;
    color: #333;
}

.disclaimer {
    border-left-color: #e74c3c;
    background: #fff5f5;
}
/* ================= FIX HEADER RESPONSIVE ISSUE ================= */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  flex-wrap: wrap;
}

/* menu links */
.nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* login + admin buttons */
.auth-buttons {
  display: flex;
  gap: 8px;
}

/* ================= MOBILE FIX ================= */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: white;
  color: black;
}

.logo {
  font-size: 40px;
  font-weight: bold;
}

/* MENU */
nav {
  display: flex;
  gap: 14px;
}

nav a {
  text-decoration: none;
  color: black;
  font-size: 20px;
}

.admin-btn {
  background: rgb(252, 10, 123);
  padding: 6px 12px;
  border-radius: 20px;
}

/* MOBILE */
.menu-btn {
  display: none;
  font-size: 22px;
  background: none;
  border: 10px;
  color: black;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  #navMenu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fcfcfd;
    flex-direction: column;
    display: none;
  }

  #navMenu a {
    padding: 12px;
    border-top: 1px solid #1e293b;
  }

  #navMenu.show {
    display: flex;
  }
}
