/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #08080f;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-color: #ffffff;
    --text-muted: #a0a0b0;
    --accent-color: #7b2cbf;
    --accent-gradient: linear-gradient(135deg, #7b2cbf, #3a0ca3);
    --glow-color: rgba(123, 44, 191, 0.35);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Glow Spheres */
.glow-sphere {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}
.sphere-1 {
    top: -20%;
    left: -20%;
    background: radial-gradient(circle, var(--accent-color), transparent 70%);
}
.sphere-2 {
    bottom: -20%;
    right: -20%;
    background: radial-gradient(circle, #3a0ca3, transparent 70%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 1000;
    background: rgba(8, 8, 15, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 2px;
}
.logo span {
    font-weight: 300;
    color: var(--text-muted);
    margin-right: 4px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-color);
}
.nav-btn-patreon {
    background: var(--accent-gradient);
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px var(--glow-color);
}
.nav-btn-patreon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.5);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 40px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}
.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 10;
}
.sub-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
}
.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    gap: 20px;
}
.btn {
    padding: 15px 35px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}
.btn-primary {
    background: white;
    color: black;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid var(--card-border);
}
.btn-secondary:hover {
    background: var(--card-border);
    transform: translateY(-2px);
}

/* Gallery & Filter */
.gallery-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.section-header {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
}
.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px var(--glow-color);
}

/* Masonry Grid */
.masonry-grid {
    column-count: 4;
    column-gap: 20px;
    width: 100%;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.item-info {
    padding: 20px;
    background: linear-gradient(to top, rgba(8, 8, 15, 0.95), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .item-info {
    opacity: 1;
    transform: translateY(0);
}
.item-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 6px;
}
.item-title {
    font-size: 1.1rem;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.about-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 60px;
    backdrop-filter: blur(10px);
}
.about-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}
.about-info h3 {
    font-size: 1.1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}
.about-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 40px;
    font-weight: 300;
}
.about-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.meta-item {
    font-size: 1rem;
    color: var(--text-muted);
}
.meta-item strong {
    color: white;
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}
.lightbox.active {
    display: flex;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}
.lightbox-close:hover {
    color: white;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255, 255, 255, 0.15);
}
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-content {
    max-width: 1200px;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    background: #0d0d16;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}
.lightbox-content img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}
.lightbox-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lightbox-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.lightbox-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}
.btn-sm {
    padding: 12px 25px;
    font-size: 0.85rem;
}

/* Footer */
footer {
    padding: 60px 40px;
    border-top: 1px solid var(--card-border);
    text-align: center;
}
footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .masonry-grid {
        column-count: 3;
    }
}
@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2;
    }
    .lightbox-content {
        grid-template-columns: 1fr;
    }
    .lightbox-content img {
        height: 50vh;
    }
}
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    .hero {
        padding: 120px 20px;
    }
    .gallery-section, .about-section {
        padding: 60px 20px;
    }
    .filter-container {
        gap: 8px;
    }
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    .lightbox-prev, .lightbox-next {
        width: 45px;
        height: 45px;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}
@media (max-width: 480px) {
    .masonry-grid {
        column-count: 1;
    }
    .navbar {
        padding: 15px 20px;
    }
    .logo {
        font-size: 1.2rem;
    }
    .nav-btn-patreon {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
