/* Header Redesign Styles */

/* Side buttons */
.side-buttons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.3s ease;
}

.side-button:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.side-button svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

/* Adjust hero video container to account for the new header */
.hero-video-container {
    height: 100vh;
    padding-top: 0; /* Remove any padding that might have been added for the old header */
}

/* Make sure the video takes up the full viewport */
.hero-video-container video,
.hero-video-container iframe {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .side-buttons {
        left: 10px;
    }
    
    .side-button {
        width: 40px;
        height: 40px;
    }
    
    .side-button svg {
        width: 20px;
        height: 20px;
    }
}
