/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Jun 11, 2025, 11:55:09 AM
    Author     : qualebs
*/


/* Header */
header {
    background: #f15f5e;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
header .section-page{
    margin: 1rem;
}
.search-bar {
    display: flex;
    flex: 1;
    margin: auto 1rem;
    position: relative;
    min-width: 200px;
}

.search-bar input {
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border-radius: 999px;
    border: none;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    font-size: 1rem;
}

.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #555;
}
nav {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    background-color: #0a0a23;
    position: static;
    top: 100%;
    right: 0;
    width: auto;
    padding: 1rem;
    z-index: 999;
}

nav a {
    color: white;
    text-decoration: none;
}

nav.show {
    display: flex;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img{
    display: flex;
    margin: auto;
    height: auto;
    max-width: 200px;
    width: 100%;
}
.header-container{
    display: flex;
    flex-direction: row;
}

/*Tablet - Mobile*/
@media (min-width: 1px) and (max-width: 762px) {
    nav{
        position: absolute;
        width: 100%;
        display: none;
        flex-direction: column;
    }
    .menu-toggle {
        display: flex;
        font-size: 1.8rem;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        flex-shrink: 0;
    }
    .logo img{
        width: 3rem;
        height: 3rem;
    }
}