/* styles-v9.css – Stable base + extra X right push (March 23, 2026) */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #fff;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
}

.logo-title {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 700;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 40px 0 60px;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #666;
    font-size: 0.875rem;
    font-weight: 500;
}

.main-nav a:hover { color: #000; }

.hero { margin: 0 0 80px; overflow: hidden; }

.hero img { width: 100%; height: auto; display: block; }

.categories p {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.25;
}

.categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.25;
}

.categories li {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.categories a { color: #000; text-decoration: none; }

.categories a:hover { text-decoration: underline; }

.footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 75px 0 50px;
}

.caption-bottom {
    font-size: 0.875rem;
    color: #000;
    margin: 0 0 10px;
    font-weight: 500;
    text-align: left;
}

.instagram-link { display: block; margin-top: 5px; }

.instagram-link img { width: 24px; height: 24px; }

.caption-bottom {
    font-weight: 500 !important;  /* lock normal weight, no bold on desktop */
}

/* HAMBURGER + MOBILE MENU */

.nav-toggle { display: none; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 15px;
    height: 10.5px;
    cursor: pointer;
    margin-left: auto;
    align-self: baseline;
    margin-top: 10px !important;
}

.hamburger span {
    background: #666;
    height: 2px;
    border-radius: 1px;
    transition: all 0.3s;
}

@media (max-width: 1024px) {
    .container { padding: 0 35px !important; }

    .hamburger { display: flex !important; align-self: center !important; margin-top: 4px !important; position: relative; }

    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px !important;
        right: 15px !important;
        left: auto !important;
        background: white;
        width: 160px !important;
        max-width: 160px;
        padding: 4px 12px !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        border-radius: 8px;
        text-align: right !important;
        z-index: 99;
        list-style: none !important;
        line-height: 1.08 !important;
    }

    #nav-toggle:checked ~ .main-nav ul { display: flex !important; }

    .main-nav a {
        font-size: 0.875rem !important;
        line-height: 1.08 !important;
        font-weight: 400 !important;
        color: #000 !important;
        padding: 1px 0 !important;
        margin: 0 !important;
        display: block !important;
    }

    /* X cross – extra strong right push toward magenta target */
    #nav-toggle:checked + .hamburger {
        right: -5px !important;           /* negative value = pushes X further right beyond normal edge */
        left: auto !important;
    }

    #nav-toggle:checked + .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px) !important;
    }
    #nav-toggle:checked + .hamburger span:nth-child(2) {
        opacity: 0 !important;
    }
    #nav-toggle:checked + .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(3px, -3px) !important;
    }

    .hero { margin: 0 -35px 48px !important; padding: 0 35px !important; }
    .hero img { width: 100% !important; margin: 0 !important; }

    header { padding-bottom: 38px !important; }
    .categories { margin-bottom: 45px !important; }
}

/* Desktop overrides */
@media (min-width: 1025px) {
    .hamburger { display: none !important; }
    .main-nav ul { display: flex !important; position: static; background: transparent; box-shadow: none; padding: 0; width: auto; text-align: left; }
    .main-nav a { font-size: 0.875rem; padding: 0; }
    .container { padding: 0 120px; }
    .hero { margin: 0 0 80px; }
    .hero img { width: 100%; }
    header { padding: 40px 0 60px; }
    .footer { margin: 75px 0 50px; }
}