/* Tanvexar logo */
.logo {
  width: 150px;
  height: auto;
}

nav{
    display: flex;
    align-items: center;
}

body {
    margin: 10px;
    background-color: #000101;
}

/* Navigation bar styles for links*/
nav a {
    display: flex;
    align-items: center;
}

.nav-links {
    margin-left: auto;
    margin-right: 35px;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: aqua;
    text-decoration: none;
    font-weight: bold;
}

/*================================== =================================
Hero Section Styles for Header image
========================================================================*/

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 8%;
    margin-top: -60px;
    margin-left: 35px;
}

/* Left side */
.hero-content {
    flex: 1;
    max-width: 600px;
}

/* Main heading */
.hero-content h1 {
    font-size: 3.2rem;
    color: #00ffff;
    line-height: 1.15;
    margin-bottom: 25px;
}

/* Introduction text */
.hero-content p {
    font-size: 1.5rem;
    color: #00ffff;
    line-height: 1.5;
    margin-bottom: 0px;
}

/* Button */
.hero-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #2a2a2a;
    color: #ff3333 !important;
    text-decoration: none !important;
    font-weight: bold;
    border-radius: 5px;
    border: none;
}

/* Right side */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Cyber Girl + Wolf image */
.header-image {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* ================================================
                MOBILE HERO
   ================================================ */

@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-image-container {
        width: 100%;
    }

    .header-image {
        max-width: 450px;
    }
}
