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

body {
    background-color: #0f0f10;      /* dark slate */
    color: #fff;
    line-height: 1.6;
}

/* ==== HERO SECTION ==== */
.hero {
    position: relative;
    background-image: url('/lbc/assets/img/group-bugs.jpg'); /* 🔧 updated image path */
    background-size: cover;
    background-position: center bottom;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hero-title {
    font-size: 5rem;
    color: #fff;
    text-shadow: 0 0 15px #ff0000;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 30px;
}

.hero-logo {
  width: 320px;             /* adjust for preferred size */
  max-width: 80%;
  height: auto;
  margin: 20px 0;
  filter: drop-shadow(0 0 12px red);
}

.hero-btn {
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #ff0000;
}

.hero-btn:hover {
    background: #c00000;
    box-shadow: 0 0 20px #ff0000;
}

/* ==== ABOUT SECTION ==== */
.about {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.about h2 {
    color: #ff0000;
    font-size: 3rem;
    margin-bottom: 10px;
}

.about p {
    color: #ccc;
    font-size: 1.5rem;
}

/* ==== FEATURES SECTION ==== */
.features {
    background: #1a1a1c;
    padding: 60px 20px;
}

.features h2 {
    text-align: center;
    color: #ff0000;
    margin-bottom: 40px;
    font-size: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #1e1e21;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px #ff0000;
}

.card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.card p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn {
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    align-self: center;
    box-shadow: 0 0 8px #ff0000;
}

.btn:hover {
    background: #c00000;
    box-shadow: 0 0 18px #ff0000;
}

/* ==== FOOTER ==== */
.footer {
    background: #111;
    color: #777;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

.footer p {
    color: #999;
}
/* ===== TOP NAV CONTROLS ===== */
.top-nav {
    position: absolute;
    top: 25px;         /* moves buttons lower */
    right: 40px;       /* aligns to right cleanly */
    display: flex;
    gap: 14px;
    z-index: 100;      /* ensures above background + logo */
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.nav-btn {
    background: #ff0000;
    color: #fff;
    padding: 10px 22px;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 18px;
    font-weight: 600;
    box-shadow: 0 0 8px red;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: #c00000;
    box-shadow: 0 0 12px red;
}
