/* Global Reset and Variables */
:root {
    --primary-color: #eceff4;
    --accent-color: #8ea3bf;
    --text-color: #a8b0ba;
    --bg-color: #101317;
    --light-bg: #171b20;
    --font-main: 'Poppins', sans-serif; /* Consistent font for everything */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    background: var(--bg-color);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styling */
.navbar {
    background: var(--bg-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.25);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* YOUR NAME STYLING - Hero Style Fix */
.brand-name {
    font-family: var(--font-main); /* Ensures same font as body */
    font-weight: 700;              /* Bold */
    font-size: 1.8rem;             /* Large "Hero" size */
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;     /* Optional: adds to the hero look */
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 70px; /* Offset for fixed navbar */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    background: #1b2027;
    color: var(--primary-color);
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn:hover {
    background: #232a33;
}

.minimal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 10px;
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.minimal-link::after {
    content: "→";
    font-size: 0.9em;
    line-height: 1;
}

.minimal-link:hover {
    color: #c0ccda;
    border-color: currentColor;
}

/* General Sections */
.section {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

footer {
    text-align: center;
    padding: 20px;
    background: #13171c;
    color: var(--text-color);
}

.footer-time {
    display: block;
    margin-top: 6px;
    color: var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 25px 0;
    }

    .hero {
        height: auto;
        min-height: calc(100vh - 70px);
        padding: 110px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 44px 0;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }

    .hero h1 {
        line-height: 1.15;
    }
}