/* =====================
   RESET & BASE
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", system-ui, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}

/* =====================
   HEADER & NAVBAR
===================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 72px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.logo logo {
    height: 100px;
    width: auto;
    display: block;
}

/* NAV */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    opacity: 0.85;
    cursor: pointer;
}

nav a:hover {
    opacity: 1;
}

/* =====================
   MEGA MENU
===================== */
.mega-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: 110px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;

    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid #222;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.25s ease;
}

.mega-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu a {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    opacity: 0.75;
}

.mega-menu a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* =====================
   HERO SECTION
===================== */
.hero {
    height: 100vh;
    padding: 0 80px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(to bottom, rgba(0,0,0,0.45), #000),
        url("assets/wallpaper/wallpaper.jpg")
        center / cover no-repeat;
}

.hero h1 {
    font-size: 72px;
    font-weight: 300;
}

.hero p {
    margin-top: 10px;
    font-size: 30px;
    font-weight: 300;
}


/* =====================
   HERO2 SECTION
===================== */
.he {
    height: 60vh;
    padding: 0 80px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(to bottom, rgba(0,0,0,0.20), #000),
        url("assets/wallpaper/wallpaper2.jpg")
        center / cover no-repeat;
}

.he h1 {
    font-size: 60px;
    font-weight: 250;
}

.he p {
    margin-top: 10px;
    font-size: 30px;
    font-weight: 300;
}

.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%; /* Optional: set a width for the image */
}

/* =====================
   MAIN CONTENT
===================== */
.content {
    max-width: 1100px;
    margin: auto;
    padding: 120px 80px;
}

.section {
    margin-bottom: 80px;
}

.section h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
}

/* =====================
   CARDS
===================== */
.card {
    background: #0c0c0c;
    border: 1px solid #222;
    padding: 28px 32px;
    margin-bottom: 24px;
}

.card h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
}

.card ul {
    padding-left: 20px;
}

.card li {
    margin-bottom: 8px;
    opacity: 0.85;
}

/* =====================
   TEXT CONTENT
===================== */
.content p {
    max-width: 700px;
    opacity: 0.85;
}

/* =====================
   FOOTER
===================== */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #222;
    opacity: 0.6;
    font-size: 14px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
    header {
        padding: 0 24px;
    }

    nav ul {
        gap: 20px;
    }

    .hero {
        padding: 0 40px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 22px;
    }

    .content {
        padding: 80px 40px;
    }

    .mega-menu {
        gap: 40px;
        height: 90px;
    }

    .mega-menu a {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 20px;
    }
}
/* =====================
   DOWNLOAD BUTTON
===================== */
.download-actions {
    margin-top: 32px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-download {
    padding: 14px 34px;
    background: #ffffff;
    color: #000000 !important;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-download:hover {
    background: #eaeaea;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 30px;
    color: #ffffff !important;
    border: 1px solid #555;
    border-radius: 8px;
    font-size: 15px;
    opacity: 0.85;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
    opacity: 1;
    border-color: #888;
}

/* Responsive */
@media (max-width: 600px) {
    .download-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =====================
   FIX ANCHOR BUTTONS
===================== */
.btn-download,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    line-height: 1;
}

