@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
    font-weight: 400;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #334155;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.025em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
    background-color: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
}

.premium-nav {
    display: none;
    background-color: rgba(99, 102, 241, 0.1);
    padding: 0.5rem;
    border-radius: 12px;
    gap: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.login-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 0.5rem 1.5rem !important;
    border-radius: 8px;
    font-weight: 600;
    color: white !important;
}

.login-btn:hover {
    background: linear-gradient(135deg, #5856eb 0%, #7c3aed 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Section Styles */
section {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 1px solid #334155;
}

section h2 {
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

/* ================================
   HERO MARQUEE BACKGROUND
   Replace your existing .hero section with this
   ================================ */

.hero {
    position: relative;
    color: white;
    padding: 6rem 2rem; /* Increased padding for more dramatic effect */
    text-align: center;
    border-radius: 16px;
    margin-bottom: 3rem;
    border: none;
    overflow: hidden; /* Hide scrolling images outside bounds */
    min-height: 500px; /* Ensure good height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Scrolling background images */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-marquee {
    display: flex;
    width: 200%; /* Double width for seamless loop */
    height: 100%;
    animation: marqueeScroll 30s linear infinite;
}

.hero-marquee-track {
    display: flex;
    width: 3632px; /* Each track is half of the double width */
    height: 100%;
    flex-shrink: 0;
}

.hero-marquee img {
    height: 100%; /* Lock to hero height (500px) */
    width: auto; /* Let width vary naturally based on aspect ratio */
    object-fit: cover;
    flex-shrink: 0;
    filter: blur(1px); /* Subtle blur for background effect */
}

/* Marquee animation */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-3632px);
    }
}

/* Purple overlay with 30% opacity */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.45) 0%, rgba(139, 92, 246, 0.45) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Hero content on top */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.6;
}

.hero .cta-button {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    text-shadow: none;
}

.hero .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-marquee img {
        height: 100%; /* Still lock height on mobile */
        width: auto; /* Let width vary naturally */
    }
    
    .hero .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-marquee img {
        height: 100%; /* Lock height on small screens too */
        width: auto; /* Natural width flow */
    }
}


/* ================================
   BECOME A MEMBER SECTION
   Add this to your CSS after the hero section
   ================================ */

.become-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    min-height: 600px;
}

/* Left side - Video background with CTA */
.member-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 3rem;
    color: white;
    overflow: hidden;
}

/* Video background */
.member-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.member-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 50% opacity overlay (lighter than hero) */
.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.5) 0%, rgba(139, 92, 246, 0.5) 100%);
    z-index: 2;
}

/* CTA content on top */
.member-cta-content {
    position: relative;
    z-index: 3;
}

.member-cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.4);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.member-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.6;
    max-width: 400px;
}

.member-cta .cta-button {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.member-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

/* Right side - Membership tiers */
.member-tiers {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-tiers h3 {
    color: #f1f5f9;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.025em;
}

.tier-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tier-card {
    background: rgba(51, 65, 85, 0.8);
    border: 1px solid #475569;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: #6366f1;
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tier-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f1f5f9;
}

.tier-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-badge.low {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.tier-badge.high {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.tier-badge.ultimate {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
}

.tier-badge.coming-soon {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: #cbd5e1;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.tier-benefits {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .become-member {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }
    
    .member-cta {
        padding: 3rem 2rem;
        min-height: 400px;
    }
    
    .member-cta h2 {
        font-size: 2.5rem;
    }
    
    .member-cta p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .member-tiers {
        padding: 3rem 2rem;
    }
    
    .member-tiers h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .tier-card {
        padding: 1.5rem;
    }
    
    .tier-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .member-cta {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
    
    .member-cta h2 {
        font-size: 2rem;
    }
    
    .member-tiers {
        padding: 2rem 1.5rem;
    }
    
    .tier-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}


@media (max-width: 1200px) and (min-width: 769px) {
    .become-member {
        grid-template-columns: 1fr; /* Stack earlier */
    }
    
    .member-cta {
        min-height: 400px; /* Shorter when stacked */
    }
}

/* ================================
   WHO WE ARE - ARTIST PROFILE SECTION
   Replace your existing "Who We Are" section CSS
   ================================ */

.who-we-are {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 4rem 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border: 1px solid #334155;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.who-we-are h2 {
    color: #f1f5f9;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    text-align: center;
}

/* Horizontal layout: Header | Image | Text | Image */
.artist-profile {
    display: grid;
    grid-template-columns: auto 250px 1fr 250px;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Artist header (name/handle) */
.artist-header {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    text-align: center;
}

/* Artist images */
.artist-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    height: 300px;
}

.artist-media:hover {
    transform: translateY(-5px);
}

.artist-photo {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.artist-video {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* Artist info */
.artist-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist-name {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.artist-handle {
    font-size: 1.1rem;
    color: #a5b4fc;
    margin-bottom: 2rem;
    font-weight: 500;
}

.artist-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.artist-bio p {
    margin-bottom: 1.5rem;
}

.artist-bio p:last-child {
    margin-bottom: 0;
}

/* Artist links/social */
.artist-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.artist-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: #a5b4fc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.artist-link:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
    color: #c7d2fe;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Highlight boxes for special info */
.highlight-box {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #c4b5fd;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Mobile responsiveness - Stack vertically */
@media (max-width: 1200px) {
    .who-we-are {
        padding: 4rem 2rem;
    }
    
    .who-we-are h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .artist-profile {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 3rem;
        text-align: center;
    }
    
    /* Reset vertical header for mobile */
    .artist-header {
        writing-mode: initial;
        text-orientation: initial;
        transform: none;
        text-align: center;
    }
    
    .artist-media {
        max-width: 400px;
        margin: 0 auto;
        height: 400px;
    }
    
    .artist-info {
        text-align: center;
        padding: 0 1rem;
    }
    
    .artist-name {
        font-size: 1.7rem;
    }
    
    .artist-handle {
        font-size: 1rem;
    }
    
    .artist-bio {
        text-align: left;
        font-size: 1rem;
    }
    
    .artist-links {
        justify-content: center;
    }
    
    .highlight-box {
        padding: 2rem;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .who-we-are {
        padding: 2rem 1rem;
    }
    
    .artist-profile {
        gap: 1.5rem;
    }
    
    .artist-name {
        font-size: 1.5rem;
    }
    
    .artist-links {
        flex-direction: column;
    }
    
    .artist-link {
        justify-content: center;
    }
}
/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #475569;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: #6366f1;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item-content {
    padding: 1.5rem;
}

.gallery-item h3 {
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* Photo Gallery Overlay Styles - Updated for your structure */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-photo {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.gallery-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-photo:hover img {
    transform: scale(1.05);
}

/* 30% Black Overlay */
.gallery-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* 30% black overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

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

/* Caption using alt text */
.gallery-photo::after {
    content: attr(alt);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: center;
}

.gallery-photo:hover::after {
    transform: translateY(0);
}

/* Mobile Solution: Always show captions */
@media (max-width: 768px) {
    .gallery-photo::after {
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.7);
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        position: absolute;
        bottom: 0;
    }
    
    .gallery-photo::before {
        opacity: 0.2; /* Subtle overlay always visible on mobile */
    }
    
    .gallery-photo {
        /* Slightly different mobile interaction */
        transform: none;
    }
    
    .gallery-photo:hover {
        transform: translateY(-2px);
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.75rem;
    }
    
    .gallery-photo img {
        height: 150px;
    }
    
    .gallery-photo::after {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
}

/* About Page - Split Layout */
.about-split {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.about-photo {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
}

.bio-text p {
    margin-bottom: 1.5rem;
}

.bio-text a {
    color: #a855f7; /* Auth purple for contrast */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.bio-text a:hover {
    color: #c7d2fe; /* Lighter blue on hover */
    text-decoration: underline;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.gallery-photo:hover {
    transform: scale(1.05);
}

/* Other Projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #475569;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    border-color: #6366f1;
}

.project-card h3 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-card p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.project-link {
    color: #a5b4fc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #c7d2fe;
    text-decoration: underline;
}

/* Samples Page Styles */
.samples-banner {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 3rem;
    border: none;
}

.samples-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.samples-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.samples-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sample-item {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #475569;
}

.sample-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: #6366f1;
}

.sample-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sample-content {
    padding: 1.5rem;
}

.sample-type {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.sample-type.album {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.sample-item h3 {
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.sample-date {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.sample-teaser {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #a5b4fc;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #c7d2fe;
}

.read-more::after {
    content: "📖";
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 16px;
    border: none;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Links */
.links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.external-link {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.external-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #cbd5e1;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #334155;
}

/* Content Pages */
.story-nav, .album-nav {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #475569;
}

.story-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #e2e8f0;
}

.similar-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

/* ================================
   AUTHENTICATION STYLES
   ================================ */

/* User Menu Styles */
.user-menu {
    position: relative;
    display: inline-block;
}

.user-menu-toggle {
    background: rgba(51, 65, 85, 0.8);
    border: 1px solid #475569;
    border-radius: 8px;
    color: #ffffff;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
}

.user-menu-toggle:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    color: #a5b4fc;
}

.user-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.user-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 1px solid #475569;
    border-radius: 12px;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.user-menu-dropdown.show {
    display: block;
}

.user-menu-header {
    padding: 1rem;
    border-bottom: 1px solid #475569;
}

.user-menu-name {
    color: #f1f5f9;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.user-menu-email {
    color: #94a3b8;
    font-size: 0.8rem;
}

.user-menu-status {
    color: #a5b4fc;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.user-menu-items {
    padding: 0.5rem 0;
}

.user-menu-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: inherit;
}

.user-menu-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
}

/* Auth Button Styles */
.auth-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.auth-button {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.auth-button.login {
    color: #cbd5e1;
    border: 1px solid #475569;
    background: rgba(51, 65, 85, 0.8);
}

.auth-button.login:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    color: #a5b4fc;
}

.auth-button.register {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border: none;
}

.auth-button.register:hover {
    background: linear-gradient(135deg, #5856eb 0%, #7c3aed 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Premium Badge */
.premium-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    font-size: 0.6rem;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 0.25rem;
}

/* Premium Navigation Control */
.premium-nav.show {
    display: flex;
}

/* Auth Section Integration */
#auth-section {
    display: flex;
    align-items: center;
}

/* Login Form Page Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 1px solid #475569;
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    color: #f1f5f9;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.auth-header p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid #475569;
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-family: inherit;
}

.auth-tab.active {
    color: #f1f5f9;
    border-bottom-color: #6366f1;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

/* Form styles for auth pages */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.875rem;
    background: rgba(51, 65, 85, 0.8);
    border: 1px solid #475569;
    border-radius: 8px;
    color: #f1f5f9;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder {
    color: #64748b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.auth-button {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-family: inherit;
}

.auth-button:hover {
    background: linear-gradient(135deg, #5856eb 0%, #7c3aed 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.auth-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    color: #a5b4fc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: #c7d2fe;
}

/* Alert styles */
.alert {
    padding: 0.875rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================================
   MOBILE RESPONSIVE STYLES
   ================================ */

@media (max-width: 768px) {
    /* Compact header on mobile */
    header {
        padding: 0.5rem 0; /* Reduced from 1rem */
    }
    
    nav {
        padding: 0 1rem; /* Reduced from 2rem */
        min-height: 60px; /* Fixed height */
        position: relative;
    }
    
    /* Logo smaller on mobile */
    .logo {
        font-size: 1.4rem; /* Reduced from 1.8rem */
    }
    
    /* Show hamburger menu button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #cbd5e1;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    /* Hamburger animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Hide nav links by default on mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: 60px; /* Below header */
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem; /* Reduced gap */
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        z-index: 999;
        border-top: 1px solid #475569;
    }
    
    /* Show nav when active */
    .nav-links.mobile-active {
        display: flex;
    }
    
    /* Mobile nav links compact */
    .nav-links a {
        padding: 0.75rem 1rem; /* Reduced padding */
        border-radius: 6px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Premium nav on mobile */
    .premium-nav {
        flex-direction: column;
        gap: 0.5rem;
        background: rgba(99, 102, 241, 0.1);
        padding: 1rem;
        border-radius: 8px;
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .premium-nav.show {
        display: flex;
    }
    
    /* Auth buttons on mobile - keep horizontal but compact */
    .auth-buttons {
        flex-direction: row; /* Keep horizontal for space efficiency */
        gap: 0.5rem;
        justify-content: center;
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .auth-button {
        padding: 0.6rem 1rem; /* Compact but readable */
        font-size: 0.9rem;
        flex: 1;
        text-align: center;
        max-width: 120px; /* Prevent too wide */
    }
    
    /* User menu on mobile - more compact */
    .user-menu {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .user-menu-toggle {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .user-menu-dropdown {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
        border-radius: 8px;
        box-shadow: none;
        background: rgba(51, 65, 85, 0.9);
    }
    
    /* Hero section mobile */
    .hero h1 {
        font-size: 2rem; /* Your existing rule */
    }
    
    /* Story/Album page mobile optimizations */
    .story-nav, .album-nav {
        padding: 0.75rem; /* Reduced from 1rem */
        margin-bottom: 1rem; /* Reduced from 2rem */
    }
    
    /* Story title mobile */
    h1 {
        font-size: 1.8rem !important; /* Smaller on mobile */
        margin-bottom: 0.75rem !important;
        line-height: 1.2 !important;
    }
    
    /* Album/Story stats more compact */
    .album-stats {
        justify-content: center;
        gap: 1rem; /* Reduced */
        margin-bottom: 1rem; /* Reduced */
        font-size: 0.85rem;
    }
    
    /* Section spacing tighter on mobile */
    section {
        padding: 1.5rem 1rem; /* Reduced from 2rem */
        margin-bottom: 1.5rem; /* Reduced from 3rem */
    }
    
    /* Main content tighter spacing */
    main {
        padding: 1rem; /* Reduced from 2rem */
    }
    
    /* Compact navigation arrows */
    .story-nav nav, .album-nav nav {
        font-size: 0.85rem;
    }
    
    /* Premium badges smaller on mobile */
    .premium-badge {
        font-size: 0.7rem;
        padding: 0.1rem 0.3rem;
    }
    
    /* Your existing mobile styles preserved */
    .about-split {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .links {
        flex-direction: column;
        align-items: center;
    }
    
    .samples-gallery {
        grid-template-columns: 1fr;
    }
    
    .samples-banner h1 {
        font-size: 2rem;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .auth-card {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    /* Even more compact for small phones */
    nav {
        padding: 0 0.75rem;
        min-height: 55px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        top: 55px;
        padding: 0.75rem;
    }
    
    h1 {
        font-size: 1.5rem !important;
    }
    
    .auth-button {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    section {
        padding: 1rem 0.75rem;
        margin-bottom: 1rem;
    }
    
    main {
        padding: 0.75rem;
    }
}