/* Header styles for Anne Band Website */

header {
    background-color: #0f0606 !important;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Social Icons Section */
.social-icons {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
    background: none !important;
    box-shadow: none !important;
    z-index: 2;
}

.social-icons a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #ff6b6b;
    transform: scale(1.1);
}

/* Logo Section - Centered */
.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    left: auto;
    transform: none;
    z-index: 2;
}

.logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation Section */
.nav-buttons {
    display: flex;
    gap: 25px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    border: none;
    box-shadow: none;
    background: none !important;
    z-index: 2;
}

.nav-buttons a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: none;
    box-shadow: none;
    position: relative;
}

.nav-buttons a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: #ff6b6b;
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
    position: absolute;
    left: 0;
    bottom: -2px;
}

.nav-buttons a:hover::after {
    width: 100%;
}

.nav-buttons a:hover {
    color: #ff6b6b;
    background: none;
    transform: translateY(-2px);
}

.nav-buttons a:active {
    transform: translateY(0);
}

/* Body padding to prevent content from being hidden behind the header */
body {
    padding-top: 90px; /* Adjust if header height changes */
    margin: 0;
    background: #0f0606;
}

.connect-banner {
    position: relative;
    top: 0;
    z-index: 1000;
}

.hero-section {
    margin-top: -15px !important;
}

/* Responsive design for header */
@media (max-width: 768px) {
    header {
        padding: 10px 15px;
        position: relative;
    }
    
    .logo-container {
        position: relative;
        left: auto;
        transform: none;
        order: -1;
        margin-bottom: 15px;
    }
    
    .social-icons {
        gap: 25px;
        justify-content: center;
    }
    
    .social-icons a {
        font-size: 20px;
    }
    
    .logo {
        height: 50px;
    }
    
    .nav-buttons {
        gap: 15px;
        justify-content: center;
    }
    
    .nav-buttons a {
        padding: 8px 15px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    .social-icons,
    .nav-buttons {
        justify-content: center;
    }
}
