/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sohne', Arial, sans-serif;
    background-color: #F2F2F2;
}

/* Main menu container */
.main-menu {
    background-color: #F2F2F2;
    width: 100%;
    position: relative;
}

.menu-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Menu items */
.menu-item {
    padding: 10px 24px;
    display: flex;
    align-items: center;
    width: 100%;
}

.menu-link {
    font-family: 'Sohne', Arial, sans-serif;
    font-weight: 500;
    font-size: 96px;
    line-height: 0.9;
    letter-spacing: -1%;
    color: #000000;
    text-decoration: none;
    text-align: left;
    display: block;
    width: 100%;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.menu-link:hover {
    opacity: 0.7;
    transform: translateX(10px);
}

/* Separator lines */
.separator-line {
    width: 100%;
    height: 1px;
    background-color: #000000;
    border: none;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    width: 30px;
    height: 25px;
    z-index: 1000;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #000000;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .menu-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: #F2F2F2;
        z-index: 999;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding-top: 60px;
    }
    
    .menu-container.active {
        left: 0;
    }
    
    .menu-link {
        font-size: 48px;
        line-height: 1.1;
    }
    
    .menu-item {
        padding: 15px 24px;
    }
    
    /* Animated hamburger menu */
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Tablet styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .menu-link {
        font-size: 72px;
    }
    
    .menu-item {
        padding: 12px 24px;
    }
}

/* Large desktop styles */
@media screen and (min-width: 1441px) {
    .menu-container {
        max-width: 1600px;
    }
    
    .menu-link {
        font-size: 110px;
    }
}

/* Smooth animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.menu-link:focus {
    /* outline: 2px solid #000000; */
    outline-offset: 4px;
}

.mobile-menu-toggle:focus {
    /* outline: 2px solid #000000; */
    outline-offset: 4px;
}
