:root {
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --beige: #d4b895; /* Elegant beige */
    --soft-pink: #f4c2c2;
    --white: #ffffff;
    --text-color: #e0e0e0;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--black);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Age Verification Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.modal-content {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    border: 1px solid var(--beige);
}

.modal-content h2 {
    color: var(--beige);
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(212, 184, 149, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo span {
    color: var(--soft-pink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--soft-pink);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--soft-pink);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--beige);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--soft-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244, 194, 194, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-nav {
    background-color: transparent;
    border: 1px solid var(--soft-pink);
    color: var(--soft-pink);
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-nav:hover {
    background-color: var(--soft-pink);
    color: var(--black);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-family: var(--font-secondary);
    font-style: italic;
    color: var(--beige);
}

/* About Section */
.section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--beige);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.about-img img:hover {
    transform: scale(1.02);
}

/* Gallery / Preview Section */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(212, 184, 149, 0.3);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--beige);
    color: var(--black);
    border-color: var(--beige);
    box-shadow: 0 5px 15px rgba(212, 184, 149, 0.2);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    min-height: 400px;
}

.gallery-info-box {
    width: 100%;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

.info-box-content {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--beige);
    width: 100%;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.gallery-info-box.premium-lock .info-box-content {
    border-color: var(--soft-pink);
    box-shadow: 0 0 30px rgba(244, 194, 194, 0.15);
}

.info-box-content h3 {
    color: var(--beige);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(4px);
    z-index: 100; /* Higher than items */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.overlay-content {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--beige);
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.overlay-content h3 {
    color: var(--beige);
    margin-bottom: 15px;
}

.overlay-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.preview-item.blurred img {
    filter: blur(25px) brightness(0.4);
    pointer-events: none;
    user-select: none;
}

.premium-lock-overlay {
    background: rgba(10, 10, 10, 0.6);
}

.premium-lock-overlay .info-box-content {
    border-color: var(--soft-pink);
    box-shadow: 0 0 30px rgba(244, 194, 194, 0.15);
}

.lock-overlay-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15;
    background: rgba(0,0,0,0.2);
}

.btn-upgrade {
    color: var(--white);
    font-size: 0.7rem;
    background: rgba(0,0,0,0.8);
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid var(--soft-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-upgrade:hover {
    background: var(--soft-pink);
    color: var(--black);
}

.tier-box {
    transition: var(--transition);
}

.tier-box:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
}

.preview-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 3/4;
    cursor: pointer;
    background-color: var(--dark-gray);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.preview-item.filtered-out,
.preview-item.hidden-by-limit {
    display: none !important;
    opacity: 0;
    transform: scale(0.8);
}

.preview-item img,
.preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.preview-item.video::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 3rem;
    color: var(--white);
    opacity: 0.8;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
    pointer-events: none;
    transition: var(--transition);
}

.preview-item.video:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.preview-overlay span {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    border: 1px solid var(--white);
    padding: 10px 20px;
}

.preview-item:hover img,
.preview-item:hover video {
    transform: scale(1.1);
}

/* For blurred items, we keep the blur but remove it on hover only if we want to show it's clickable */
/* Actually, let's keep the blur for locked items and just scale the unlocked ones */
.preview-item.blurred:hover img {
    filter: blur(25px) brightness(0.4);
    transform: none; /* Don't scale if blurred/locked */
}

.preview-item:hover .preview-overlay {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--dark-gray);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    padding: 100px 0 40px;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--soft-pink);
}

.footer-tagline {
    font-family: var(--font-secondary);
    font-style: italic;
    color: var(--beige);
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #888;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    font-size: 0.8rem;
    color: #555;
}

/* Auth Forms */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
}

.auth-card {
    background: var(--dark-gray);
    padding: 50px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(212, 184, 149, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    text-align: center;
}

.auth-card h2 {
    font-size: 2.5rem;
    color: var(--beige);
    margin-bottom: 10px;
}

.auth-card p {
    color: #888;
    margin-bottom: 30px;
}

.auth-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 12px 20px;
    background: #252525;
    border: 1px solid #333;
    border-radius: 50px;
    color: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--beige);
    background: #2a2a2a;
}

.captcha-group label {
    font-weight: 600;
    color: var(--soft-pink);
}

.captcha-group input {
    max-width: 150px;
    border: 1px dashed var(--soft-pink);
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

.auth-footer {
    margin-top: 30px;
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--beige);
    font-weight: 600;
}

.auth-footer a:hover {
    color: var(--soft-pink);
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
}

.alert-success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #51cf66;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn .icon {
    margin-right: 8px;
    font-size: 1.2rem;
    vertical-align: middle;
}

.contact-grid .btn {
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1100;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark-gray);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: 0.5s ease-in-out;
        z-index: 1050;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
    right: 0;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--soft-pink);
}

.nav-links a.btn-nav {
    border: 1px solid var(--beige);
    color: var(--beige);
}

.nav-links a.btn-nav:hover {
    background: var(--beige);
    color: var(--black);
}

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 15px;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-img {
        order: -1; /* Image above text on mobile */
    }

    .section {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .info-box-content {
        padding: 30px 20px;
    }

    .info-box-content h3 {
        font-size: 1.5rem;
    }

    .tier-box {
        padding: 20px 10px !important;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .contact-grid .btn {
        min-width: 100%;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
        padding: 10px;
    }

    .lightbox-nav {
        padding: 0 10px;
    }
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    z-index: 2100;
    line-height: 1;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--soft-pink);
    transform: scale(1.1);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease-out;
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255,255,255,0.05);
    border: none;
    color: var(--white);
    font-size: 4rem;
    padding: 20px;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.1);
    color: var(--soft-pink);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
