/* ------------------ General Styles ------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}


body {
    background-color: #fff;
    color: #000;
    min-width: 360px;
}

/* ------------------ Header ------------------ */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* shadow instead of border */
    border: none;
}

.logo {
    display: flex;
    align-items: center; 
    gap: 80px; 
}

.company-logo img {
    height: 80px; 
    filter: drop-shadow(0px 3px 2px rgba(0,0,0,0.3))
            drop-shadow(0px 6px 5px rgba(0,0,0,0.2));
}

.brand-icons {
    display: flex;
    gap: 70px; 
    align-items: center; 
}

.brand-icons img {
    height: 70px; 
    cursor: pointer;
    transition: transform 0.3s;
}

.brand-icons img:hover {
    transform: scale(1.1);
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 60px; 
}

header nav ul li a.active {
    text-shadow: 0 0 8px #fff, 0 0 16px #ddd, 0 0 24px #bbb; 
    color: #ffb700; 
}

header nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    display: inline-block;
}

header nav ul li a:hover {
    transform: scale(1.2) translateY(-2px);
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
    color: #555;
}

header .header-icons {
    display: flex;
    gap: 20px;
}

header .header-icons .icon {
    font-size: 22px;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease, text-shadow 0.3s ease, color 0.3s ease;
    display: inline-block;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

header .header-icons .icon:hover {
    transform: scale(1.3) translateY(-2px);
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
    color: #555;
}

/* ------------------ Hamburger Menu ------------------ */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    top: 20px;
    left: 20px; /* Hamburger on left */
    z-index: 1100;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #000;
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animate into X when active */
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ------------------ Footer ------------------ */
footer {
    padding: 30px 50px;
    text-align: center;
    background-color: #000;
    color: #fff;
    margin-top: 50px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.15); /* footer shadow */
    border: none;
}

footer .social-links {
    margin-top: 15px;
}

footer .social-links a {
    text-decoration: none;
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #ccc;
}

/* ------------------ Responsive Header & Footer ------------------ */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        min-height: 70px;
        transition: min-height 0.3s ease, padding 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    }

    /* Center logo */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .company-logo img {
        height: 48px; /* 20% smaller than previous 60px */
    }

    .brand-icons {
        display: none; /* hide brand icons on mobile */
    }

    /* Hide nav by default on mobile (slide from left) */
    header nav ul {
        position: absolute;
        top: 70px; /* just below the header */
        left: 0; /* start from left */
        background: rgba(255, 255, 255, 0.95); /* more blurry */
        backdrop-filter: blur(15px);
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        width: 220px;
        transform: translateX(-100%); /* hidden to the left */
        transition: transform 0.3s ease;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        border-radius: 0 0 8px 0;
    }

    /* Show nav when active */
    header nav ul.active {
        transform: translateX(0); /* slide in from left */
    }

    header nav ul li a {
        font-size: 16px;
    }

    /* Show hamburger */
    .menu-toggle {
        display: flex;
    }

    footer {
        padding: 20px 15px;
    }

    footer p {
        font-size: 14px;
    }

    footer .social-links a {
        font-size: 14px;
        margin: 0 8px;
    }
}

/* ------------------ Buttons Shadow ------------------ */
button, .btn {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
}

button:hover, .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* ------------------ Inputs / Cards Shadow ------------------ */
input, textarea, .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 6px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}
html {
  scroll-behavior: smooth;
}

