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

body {
    background-color: #1a0a0a;
    color: #ffe6f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fixed Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(40, 0, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 2px solid #ff3366;
    transition: all 0.3s ease;
}

nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff3366;
    text-decoration: none;
}

nav .nav-links {
    display: flex;
    gap: 20px;
}

nav .nav-links a {
    color: #ffe6f0;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

nav .nav-links a:hover {
    background-color: #ff3366;
    transform: translateY(-2px);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffe6f0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
#content {
    padding-top: 80px; /* Account for fixed nav */
}

header {
    background: linear-gradient(135deg, #33001a 0%, #660033 100%);
    color: #ffe6f0;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

h1, h2 {
    margin: 0;
    color: #ff3366;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff3366, #ff6699);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

footer {
    background: linear-gradient(135deg, #33001a 0%, #660033 100%);
    color: #ffe6f0;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 2px solid #ff3366;
}

/* Navigation Buttons */
nav .button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffe6f0;
    background-color: #ff3366;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

nav .button:hover {
    background-color: #ff6699;
}

/* About Me Section */
#about-me {
    background: linear-gradient(135deg, #33001a 0%, #660033 100%);
    margin: 40px auto;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.5);
    position: relative;
    overflow: hidden;
}

#about-me::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff3366, #ff6699, #ff3366);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.about-me-content {
    position: relative;
    z-index: 1;
}

.about-me-content p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

.about-me-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.about-me-content li {
    margin-bottom: 8px;
    position: relative;
}

.about-me-content li::before {
    content: '→';
    color: #ff3366;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.centered-about {
    text-align: center;
    padding-top: 32px;
}

.centered-about p,
.centered-about ul {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 17px;
    color: #ffe6f0;
    background: linear-gradient(90deg, #ff3366 0%, #ff6699 100%);
    text-decoration: none;
    border-radius: 30px;
    margin: 8px 12px;
    transition: box-shadow 0.3s, background 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 16px rgba(255, 51, 102, 0.15);
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: left 0.5s;
}

.button:hover::before {
    left: 100%;
}

.button:hover {
    background: linear-gradient(90deg, #ff6699 0%, #ff3366 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(255, 51, 102, 0.25);
}

/* Gallery Styles */
#gallery {
    margin: 60px 0;
}

#gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 20px;
    background: rgba(40, 0, 20, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.gallery-item {
    margin: 18px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(255,51,102,0.10);
    background: #2a0014;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 51, 102, 0.2), rgba(255, 102, 153, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.7);
}

.gallery-item video {
    display: block;
    width: 100%;
    border-radius: 12px;
    background: #1a0010;
    margin-bottom: 8px;
    box-sizing: border-box;
    border: 3px solid #33001a;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #ffe6f0;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
    border-radius: 0 0 12px 12px;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Carousel Styles */
.carousel-main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.carousel-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a0014;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(255,51,102,0.15);
    padding: 12px;
    min-width: 320px;
    min-height: 240px;
}
.carousel-large {
    width: 800px;
    height: 600px;
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(255,51,102,0.10);
    background: #1a0010;
    transition: opacity 0.4s;
}
.carousel-arrow {
    background: #ff3366;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    cursor: pointer;
    margin: 0 12px;
    box-shadow: 0 2px 8px rgba(255,51,102,0.15);
    transition: background 0.3s, transform 0.2s;
}
.carousel-arrow:hover {
    background: #ff6699;
    transform: scale(1.08);
}
.carousel-thumbnails-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.carousel-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 0;
    background: none;
}
.carousel-thumb {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #ccc;
    cursor: pointer;
    transition: border-color 0.3s, transform 0.2s;
    opacity: 0.8;
}
.carousel-thumb.active {
    border-color: #ff3366;
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(255,51,102,0.18);
}
.carousel-caption {
    margin-top: 1rem;
    text-align: center;
    color: #ff3366;
    font-size: 1.1rem;
    font-weight: 500;
    background: none;
}
@media (max-width: 900px) {
    .carousel-large {
        width: 100vw;
        height: auto;
        max-width: 100vw;
        max-height: 60vh;
    }
}
@media (max-width: 600px) {
    .carousel-main {
        flex-direction: column;
    }
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        margin: 8px 0;
    }
    .carousel-large {
        width: 100vw;
        height: auto;
        max-width: 100vw;
        max-height: 40vh;
    }
}
/* End Carousel Styles */

/* Lightbox Styles */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 0, 20, 0.95);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    max-width: 75vw;
    max-height: 75vh;
    background: #660033;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 51, 102, 0.8);
}

#lightbox-image,
#lightbox-video {
    width: 800px;
    height: 600px;
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: width 0.3s, height 0.3s, max-width 0.3s, max-height 0.3s;
}

#lightbox.expanded #lightbox-image,
#lightbox.expanded #lightbox-video {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
}

#lightbox-close,
#lightbox-prev,
#lightbox-next {
    position: absolute;
    background: rgba(255, 51, 102, 0.9);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2001;
}

#lightbox-close {
    top: 20px;
    right: 20px;
    padding: 10px 15px;
    border-radius: 8px;
}

#lightbox-prev,
#lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

#lightbox-prev {
    left: 20px;
}

#lightbox-next {
    right: 20px;
}

#lightbox-close:hover,
#lightbox-prev:hover,
#lightbox-next:hover {
    background: #ff6699;
    transform: scale(1.1);
}

#lightbox-prev:hover,
#lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Age Consent Modal */
#age-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 0, 20, 0.95);
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #33001a 0%, #660033 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(255, 51, 102, 0.8);
    border: 2px solid #ff3366;
}

.modal-content h2 {
    margin-bottom: 20px;
    color: #ff3366;
}

.modal-content p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.modal-content button {
    margin: 10px;
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#confirm-age {
    background: linear-gradient(45deg, #ff3366, #ff6699);
    color: white;
}

#deny-age {
    background: linear-gradient(45deg, #f44336, #e57373);
    color: white;
}

.modal-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

/* Cookie Consent */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(40, 0, 20, 0.95);
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1500;
    backdrop-filter: blur(10px);
    border-top: 2px solid #ff3366;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #ff3366;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #33001a 0%, #660033 100%);
    color: #ffe6f0;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 2px solid #ff3366;
}

/* Blur Effect */
.blurred {
    filter: blur(5px);
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(40, 0, 20, 0.95);
        flex-direction: column;
        padding: 20px;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    #about-me {
        margin: 20px;
        padding: 20px;
    }

    #gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        padding: 15px;
    }

    .lightbox-content {
        max-width: 90vw;
        max-height: 80vh;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    nav .nav-container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    #about-me {
        margin: 10px;
        padding: 15px;
    }

    #gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .modal-content {
        padding: 20px;
        margin: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #33001a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff3366, #ff6699);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff6699, #ff3366);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Section Spacing */
section {
    margin-bottom: 40px;
}

/* Add some visual interest */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: linear-gradient(transparent, #ff3366, transparent);
    transform: translateX(-50%);
    opacity: 0.5;
}

/* Login and Registration Forms */
#login-container,
#registration-container,
#members-only-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, #33001a 0%, #660033 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.5);
    border: 2px solid #ff3366;
}

#login-container h2,
#registration-container h2,
#members-only-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ff3366;
}

#login-form,
#registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#login-form label,
#registration-form label {
    color: #ffe6f0;
    font-weight: 600;
    margin-bottom: 5px;
}

#login-form input,
#registration-form input {
    padding: 12px;
    border: 2px solid #ff3366;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffe6f0;
    font-size: 16px;
    transition: all 0.3s ease;
}

#login-form input:focus,
#registration-form input:focus {
    outline: none;
    border-color: #ff6699;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.3);
}

#login-form input::placeholder,
#registration-form input::placeholder {
    color: rgba(255, 230, 240, 0.7);
}

#login-form button,
#registration-form button {
    padding: 15px;
    background: linear-gradient(45deg, #ff3366, #ff6699);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

#login-form button:hover,
#registration-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.4);
}

#login-message,
#registration-message {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
}

#login-container a,
#registration-container a {
    color: #ff3366;
    text-decoration: none;
    text-align: center;
    display: block;
    margin-top: 15px;
    transition: color 0.3s ease;
}

#login-container a:hover,
#registration-container a:hover {
    color: #ff6699;
    text-decoration: underline;
}

#members-only-container {
    text-align: center;
}

#members-only-container p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

#logout-button {
    margin-top: 20px;
}
