/* Root Variables */
:root {
    --primary-color: #d4af37;
    --dark-bg: #0a0e27;
    --card-bg: #1a1f3a;
    --text-light: #e8e8e8;
    --text-muted: #a0a0a0;
    --accent: #7c3aed;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-decoration: none;
}

.logo svg {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d1b4e 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 80px auto 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 550px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e8c547 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e8c547 100%);
    color: #0a0e27;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2),
                0 0 40px rgba(124, 58, 237, 0.1);
    object-fit: cover;
    aspect-ratio: 3/4;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

/* Sections */
section {
    padding: 6rem 2rem;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e8c547 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Biography Section */
.biography {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.bio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bio-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
}

.bio-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all var(--transition);
}

.stat:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Current Work Section */
.current-work {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
}

.current-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.current-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.current-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
}

.current-item.featured {
    grid-column: span 1;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(124, 58, 237, 0.1));
}

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

.current-item:hover .item-image img {
    transform: scale(1.05);
}

.item-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.release-date {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.item-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    flex: 1;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    group: 'gallery';
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.95), transparent);
    color: var(--text-light);
    opacity: 0;
    transition: opacity var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
}

.contact-content {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.contact-item {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--transition);
}

.contact-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    transition: all var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-link:hover {
    background: var(--primary-color);
    color: #0a0e27 !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(26, 31, 58, 0.8) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.footer-container p {
    margin: 0.5rem 0;
}

.footer-container p:first-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--dark-bg);
        padding: 1rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

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

    .menu-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        margin-top: 80px;
        min-height: auto;
        border-radius: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        max-width: 300px;
        margin-top: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .bio-content {
        grid-template-columns: 1fr;
    }

    .bio-stats {
        grid-template-columns: 1fr 1fr;
    }

    .current-item.featured {
        grid-column: span 1;
    }

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

    section {
        padding: 4rem 1rem;
    }
}

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

    .logo-text {
        display: none;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat {
        padding: 1.5rem;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    .bio-stats {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(26, 31, 58, 0.8) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.footer-container p {
    margin: 0.5rem 0;
}

.footer-container p:first-child {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}

.footer-link:hover {
    color: #e8c547;
}

/* Privacy Policy Page */
.privacy-body {
    background:
            radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 34rem),
            radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.12), transparent 32rem),
            var(--dark-bg);
}

.privacy-page {
    max-width: 1100px;
    margin: 120px auto 4rem;
    padding: 0 2rem;
}

.story-shell {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.96) 0%, rgba(10, 14, 39, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.28);
}

.story-header {
    position: relative;
    padding: 4rem 3rem 3rem;
    background:
            linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(124, 58, 237, 0.12)),
            linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    text-align: center;
}

.story-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16), transparent 55%);
    pointer-events: none;
}

.story-header > * {
    position: relative;
    z-index: 1;
}

.story-label {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 1rem;
    color: #0a0e27;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e8c547 100%);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.story-header h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.05;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e8c547 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-header p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.story-prose {
    padding: 3rem;
    color: var(--text-light);
}

.story-prose h1 {
    display: none;
}

.story-prose h2 {
    margin: 2.8rem 0 1rem;
    color: var(--primary-color);
    font-size: 1.55rem;
    line-height: 1.25;
}

.story-prose h3 {
    margin-bottom: 0.8rem;
    color: #e8c547;
    font-size: 1.2rem;
}

.story-prose p,
.story-prose li {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.85;
}

.story-prose p {
    margin-bottom: 1rem;
}

.story-prose ul {
    margin: 1rem 0 1.5rem 1.4rem;
}

.story-prose li {
    margin-bottom: 0.7rem;
    padding-left: 0.25rem;
}

.story-prose strong {
    color: #f1d675;
}

.story-prose .last-updated {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0.9rem;
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 999px;
    font-weight: 700;
}

.warning-box,
.info-box,
.story-prose .contact-info {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-left: 4px solid var(--primary-color);
    border-radius: 16px;
}

.info-box {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.24);
    border-left-color: var(--accent);
}

.story-prose .contact-info {
    display: block;
    background: rgba(255, 255, 255, 0.035);
}

.story-prose table {
    width: 100%;
    margin: 1.5rem 0 2rem;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 16px;
}

.story-prose th,
.story-prose td {
    padding: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    text-align: left;
    vertical-align: top;
}

.story-prose th {
    color: #0a0e27;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e8c547 100%);
    font-weight: 800;
}

.story-prose td {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.025);
}

.story-prose tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .privacy-page {
        margin-top: 100px;
        padding: 0 1rem;
    }

    .story-header {
        padding: 3rem 1.5rem 2.5rem;
    }

    .story-prose {
        padding: 2rem 1.25rem;
    }

    .story-prose table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .story-header {
        padding: 2.5rem 1rem 2rem;
    }

    .story-prose {
        padding: 1.5rem 1rem;
    }

    .story-prose h2 {
        font-size: 1.25rem;
    }
}

