/* header.css - Styles for header.php */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.main-header {
    font-family: 'Bebas Neue', cursive;
    background-color: white;
    border-bottom: 1.25px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #333;
    letter-spacing: 2px;
    line-height: 1;
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: none;
}

.logo a:hover {
    color: #333;
}

.logo a:hover h1 {
    color: #333;
}

.logo span {
    font-size: 1rem;
    color: #666;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 1.25px solid transparent;
    background-color: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    line-height: 1;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    transition: all 0.4s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent;
    transition: all 0.4s ease;
}

.main-nav a:hover::before {
    width: 50%;
    height: 50%;
    border-left-color: #333;
    border-bottom-color: #333;
}

.main-nav a:hover::after {
    width: 50%;
    height: 50%;
    border-right-color: #333;
    border-top-color: #333;
}

.main-nav a:hover {
    color: #333;
    border-color: transparent;
    background-color: transparent;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.login-btn, .signup-btn {
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: 1.25px solid #333;
    background-color: transparent;
    color: #333;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.login-btn:hover, .signup-btn:hover {
    background-color: #333;
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .header-actions {
        justify-content: center;
    }
}
