/* style.css - Nice Nylon Fetish 2026 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    font-family: 'Segoe UI', 'Verdana', Geneva, Arial, Helvetica, sans-serif;
    color: #e0e0e0;
    line-height: 1.4;
}

.site-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 16px 40px;
}

.header {
    text-align: center;
    padding: 20px 0 10px;
    border-bottom: 2px solid #ff6600;
    margin-bottom: 30px;
}

.logo {
    font-size: clamp(28px, 8vw, 52px);
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ff6600, #ffaa33);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.tagline {
    font-size: 14px;
    color: #ffaa66;
    margin-top: 8px;
}

.nav-bar {
    text-align: center;
    margin: 20px 0 25px;
    font-size: 15px;
    font-weight: 500;
}

.nav-bar a {
    color: #ff6600;
    text-decoration: none;
    margin: 0 12px;
    transition: 0.2s;
}

.nav-bar a:hover {
    color: #ffaa33;
    text-decoration: underline;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px 14px;
    margin: 30px 0;
}

.thumb-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.thumb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(255,102,0,0.15);
}

.thumb-card a {
    display: block;
    text-decoration: none;
}

.thumb-img {
    width: 100%;
    aspect-ratio: 150 / 200;
    object-fit: cover;
    display: block;
    background: #1a1a1a;
    border-bottom: 2px solid #ff6600;
}

.thumb-title {
    padding: 8px 6px;
    font-size: 12px;
    color: #ffaa66;
    text-align: center;
    background: #0e0e0e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #222;
    font-size: 12px;
    color: #888;
}

.footer a {
    color: #ff6600;
    text-decoration: none;
}

.friendly-sites {
    margin-bottom: 15px;
    font-size: 13px;
}

.date {
    color: #aaa;
}

@media (max-width: 640px) {
    .gallery-grid {
        gap: 12px;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    .thumb-title {
        font-size: 10px;
        padding: 6px 4px;
    }
    .nav-bar a {
        margin: 0 8px;
        font-size: 13px;
    }
}



.logo a, 
a .logo {
    text-decoration: none;
    display: inline-block;
}

.header a {
    text-decoration: none;
    display: inline-block;
}

.header a:hover {
    text-decoration: none;
}

.logo {
    font-size: clamp(28px, 8vw, 52px);
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ff6600, #ffaa33);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: opacity 0.2s;
    display: inline-block;
}

.logo:hover {
    opacity: 0.85;
}
/* Lightbox для галерей */
.lightbox-link {
    cursor: pointer;
}
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
.lightbox-overlay.active {
    visibility: visible;
    opacity: 1;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #ff6600;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}
.lightbox-close:hover {
    color: #ffaa33;
    transform: scale(1.1);
}




.page-title {
    text-align: center;
    font-size: 28px;
    color: #ff6600;
    margin: 20px 0 30px;
    font-weight: 600;
}
.related-links {
    margin-top: 50px;
    padding: 20px;
    background: #0e0e0e;
    border-radius: 16px;
}
.related-links h3 {
    color: #ffaa66;
    margin-bottom: 20px;
    font-size: 20px;
}
.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.related-grid a {
    background: #1a1a1a;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    color: #ffaa66;
    text-decoration: none;
    transition: 0.2s;
}
.related-grid a:hover {
    background: #ff6600;
    color: #0a0a0a;
}
@media (max-width: 640px) {
    .page-title { font-size: 22px; }
    .related-grid a { font-size: 11px; padding: 6px 12px; }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    font-family: 'Segoe UI', 'Verdana', Geneva, Arial, Helvetica, sans-serif;
    color: #e0e0e0;
    line-height: 1.4;
}

.site-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 16px 40px;
}

.header {
    text-align: center;
    padding: 20px 0 10px;
    border-bottom: 2px solid #ff6600;
    margin-bottom: 30px;
}

.header a {
    text-decoration: none;
    display: inline-block;
}

.header a:hover {
    text-decoration: none;
}

.logo {
    font-size: clamp(28px, 8vw, 52px);
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ff6600, #ffaa33);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: opacity 0.2s;
    display: inline-block;
}

.logo:hover {
    opacity: 0.85;
}

.tagline {
    font-size: 14px;
    color: #ffaa66;
    margin-top: 8px;
}

.nav-bar {
    text-align: center;
    margin: 20px 0 25px;
    font-size: 15px;
    font-weight: 500;
}

.nav-bar a {
    color: #ff6600;
    text-decoration: none;
    margin: 0 12px;
    transition: 0.2s;
}

.nav-bar a:hover {
    color: #ffaa33;
    text-decoration: underline;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px 14px;
    margin: 30px 0;
}

.thumb-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.thumb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(255,102,0,0.15);
}

.thumb-card a {
    display: block;
    text-decoration: none;
}

.thumb-img {
    width: 100%;
    aspect-ratio: 150 / 200;
    object-fit: cover;
    display: block;
    background: #1a1a1a;
    border-bottom: 2px solid #ff6600;
}

.footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #222;
    font-size: 12px;
    color: #888;
}

.footer a {
    color: #ff6600;
    text-decoration: none;
}

.friendly-sites {
    margin-bottom: 15px;
    font-size: 13px;
}

.date {
    color: #aaa;
}

.page-title {
    text-align: center;
    font-size: 28px;
    color: #ff6600;
    margin: 20px 0 30px;
    font-weight: 600;
}

.related-links {
    margin-top: 50px;
    padding: 20px;
    background: #0e0e0e;
    border-radius: 16px;
}

.related-links h3 {
    color: #ffaa66;
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.related-grid a {
    background: #1a1a1a;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    color: #ffaa66;
    text-decoration: none;
    transition: 0.2s;
}

.related-grid a:hover {
    background: #ff6600;
    color: #0a0a0a;
}

@media (max-width: 640px) {
    .gallery-grid {
        gap: 12px;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    .page-title {
        font-size: 22px;
    }
    .related-grid a {
        font-size: 11px;
        padding: 6px 12px;
    }
    .nav-bar a {
        margin: 0 8px;
        font-size: 13px;
    }
}
