/* Navigation - Mobile First */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #eee;
}

/* Logo - Responsive with overflow handling */
.logo {
    font-size: clamp(0.85rem, 2.5vw, 1.2rem);
    font-weight: 300;
    letter-spacing: clamp(0.05em, 0.5vw, 0.1em);
    text-decoration: none;
    color: #000;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.6;
}

.logo strong {
    font-weight: 700;
}

/* Hamburger Menu Toggle (Mobile Only) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
    display: block;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: clamp(1rem, 2.5vw, 3rem);
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Styles */
@media (max-width: 767px) {
    nav {
        padding: 0.75rem 5%;
    }
    
    .logo {
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        max-width: 65%;
    }
    
    /* Show hamburger on mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide nav links by default, show as slide-in menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    
    /* Active state - menu slides in */
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
    }
    
    .nav-links a::after {
        bottom: 0;
    }
    
    /* Hamburger animation to X */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    nav {
        padding: 1.5rem 4rem;
    }
    
    .logo {
        max-width: 50%;
    }
    
    .nav-links {
        gap: 2rem;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    nav {
        padding: 2rem 4rem;
    }
    
    .logo {
        max-width: none;
    }
    
    .nav-links {
        gap: 3rem;
    }
}
/* View All Button - Rounded & Larger */
.view-all-btn {
    display: block;
    width: fit-content;
    margin: 60px auto 0;
    padding: 18px 50px;  /* Larger padding */
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: clamp(1.2rem, 3vw, 1.5rem);  /* Bigger text */
    font-weight: 400;
    letter-spacing: 0.1em;
    border: 1px solid rgba(0, 0, 0, 0.3);  /* Faded border */
    border-radius: 50px;  /* Rounded */
    transition: all 0.3s ease;
    background: transparent;
}

.view-all-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;  /* Solid border on hover */
    transform: translateY(-2px);
}