﻿/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
    line-height: 1.6;
}
:root {
    --primary: #4e73df;
    --dark: #1b1b1b;
    --light: #f6f6f6;
}

/* ===== Navbar ===== */
header {
    width: 100%;
    background: #0a0a0a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* ================= NAVBAR BASE ================= */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
}

.navbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    letter-spacing: 1px;
    color: white;
    font-size: 1.2rem;
}


        



/* ================= LINKS DESKTOP ================= */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        position: relative;   
        transition: 0.3s;
    }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffcc00;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

    .hamburger span {
        width: 26px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    body.menu-open {
        overflow: hidden;
    }



/* ================= HAMBURGER ANIMAT ================= */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}









/* ===== About ===== */
.about {
    padding: 60px 20px;
    text-align: center;
}

/* ===== Contact ===== */
.contact {
    padding: 60px 20px;
    text-align: center;
    background: var(--light);
}

.contact-form {
    width: 100%;
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        border: 1px solid #ccc;
        border: 1px solid #ccc;
    }

    .contact-form button {
        background: #ffd700;
        border: none;
        padding: 12px;
        border-radius: 6px;
        font-weight: 600;
    }



.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #0a0a3c, #080258 );
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}


.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero h1 span {
        color: #f2c94c;
    }

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ffd700;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn:hover {
        background: #ffea4d;
    }

.btn-primary {
    background: #f2c94c;
    color: #080258;
}
.hero-divider {
    width: 350px;
    height: 4px;
    margin: 35px auto 0;
    background: linear-gradient(90deg, #1e3c72, #2a5298, #6a5acd);
    border-radius: 4px;
    padding-bottom: initial 0;
    margin-top:-30pt;
}



    .btn-primary:hover {
        transform: translateY(-3px);
    }


    