/* WKUK Mars - Main Stylesheet */

/* CSS Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0b0;
    --accent-red: #c41e3a;
    --accent-orange: #d4652f;
    --accent-gold: #d4a03a;
    --border-color: #333;
    --success: #28a745;
    --error: #dc3545;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-orange);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Header */
.site-header {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.header-content.header-centered {
    justify-content: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

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

.nav-links a:hover {
    color: var(--text-primary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 30px 0;
}

.hero-poster {
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.hero-poster img {
    display: block;
    border-radius: 4px;
}

/* Section Styling */
.section {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Trailers Section */
.trailers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.trailer-item {
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.trailer-item h3 {
    padding: 15px 20px;
    background: var(--bg-tertiary);
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.coming-soon-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Pre-order Section - Amazon Style */
.preorder-section {
    background: linear-gradient(180deg, #232f3e 0%, #131921 100%);
    position: relative;
    overflow: hidden;
}

.preorder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.preorder-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.preorder-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16162a 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    color: #f0f0f0;
    border: 1px solid rgba(255, 153, 0, 0.2);
}

.preorder-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9900, #ffad33);
    color: #111;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.preorder-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.preorder-subtitle {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 20px;
}

.preorder-price-box {
    background: rgba(255, 153, 0, 0.1);
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.preorder-price-label {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 5px;
}

.preorder-release {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.preorder-release-icon {
    font-size: 1.3rem;
}

.preorder-release-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff9900;
}

.preorder-features {
    list-style: none;
    text-align: left;
    margin: 15px 0;
    columns: 2;
    column-gap: 30px;
}

.preorder-features li {
    padding: 6px 0;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    break-inside: avoid;
}

.preorder-features li::before {
    content: '✓';
    color: #ff9900;
    font-weight: bold;
}

.btn-preorder {
    display: inline-block;
    background: linear-gradient(180deg, var(--accent-gold) 0%, #c4922e 100%);
    color: #0f1111;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    border: 1px solid #a88700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.btn-preorder:hover {
    background: linear-gradient(180deg, #e8c055 0%, #b8862a 100%);
    color: #0f1111;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-preorder-icon {
    margin-right: 8px;
}

.preorder-bonus-hours {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preorder-secure {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* Tour Dates Section */
.tour-dates-list {
    max-width: 800px;
    margin: 0 auto;
}

.tour-date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.tour-date-item:hover {
    border-color: var(--accent-gold);
}

.tour-date-info {
    flex: 1;
}

.tour-date-venue {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.tour-date-location {
    color: var(--text-secondary);
    font-size: 1rem;
}

.tour-date-details {
    text-align: right;
}

.tour-date-date {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.tour-date-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tour-date-status {
    margin-left: 30px;
}

.status-pending {
    color: var(--text-secondary);
    font-style: italic;
}

.no-dates {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 40px;
}

/* Subscribe Section */
.subscribe-section {
    background: var(--bg-secondary);
}

.subscribe-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    font-size: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
}

.subscribe-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.subscribe-form button {
    padding: 15px 30px;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(40, 167, 69, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.2);
    color: var(--error);
    border: 1px solid var(--error);
}

/* Footer */
.site-footer {
    background: var(--bg-secondary);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
}

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

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-tribeca {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Footer Logos */
.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-logo-link {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo {
    max-height: 50px;
    width: auto;
}

/* Press Page */
.press-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.press-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.press-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px;
}

.press-section {
    margin-bottom: 25px;
}

.press-section h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--accent-gold);
}

.press-section p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.7;
}

.press-kit-download {
    text-align: center;
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 25px;
}

.press-bio {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.press-bio img {
    width: 450px;
    border-radius: 8px;
    flex-shrink: 0;
}

.press-contact {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 8px;
}

.press-contact a {
    font-size: 1.2rem;
}

/* Admin Styles */
.admin-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.admin-header h1 {
    font-size: 1.8rem;
}

.login-form {
    max-width: 400px;
    margin: 100px auto;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.login-form h1 {
    text-align: center;
    margin-bottom: 30px;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.admin-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.admin-nav a {
    padding: 10px 20px;
    background: var(--bg-secondary);
    border-radius: 4px;
    color: var(--text-secondary);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.admin-table tr:hover {
    background: var(--bg-tertiary);
}

.admin-actions {
    display: flex;
    gap: 10px;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.85rem;
}

.btn-danger {
    background: var(--error);
    color: white;
}

.btn-danger:hover {
    background: #c82333;
    color: white;
}

.admin-form {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.admin-form h2 {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.status-confirmed {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.status-pending {
    background: rgba(212, 160, 58, 0.2);
    color: var(--accent-gold);
}

.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

.alert-error {
    background: rgba(220, 53, 69, 0.2);
    color: var(--error);
    border: 1px solid var(--error);
}

/* Hashtag Campaign Section */
.hashtag-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hashtag-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(212, 101, 47, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hashtag-hero {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.hashtag-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 0 60px rgba(196, 30, 58, 0.3);
}

.hashtag-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

.hashtag-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hashtag-ideas {
    background: var(--bg-tertiary);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.hashtag-ideas h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.hashtag-ideas ul {
    list-style: none;
}

.hashtag-ideas li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.hashtag-ideas li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-red);
}

.hashtag-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.hashtag-action p {
    color: var(--text-secondary);
    margin: 10px 0;
}

.hashtag-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    padding: 15px 30px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 2px solid var(--accent-gold);
    display: inline-block;
    margin: 15px 0;
}

/* Fan Content Carousel */
.fan-section {
    background: var(--bg-secondary);
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.fan-carousel {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 14px);
    padding: 0 7px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-gold);
}

.fan-card {
    background: var(--bg-tertiary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.fan-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.fan-card.featured {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 160, 58, 0.2);
}

.fan-media {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-primary);
}

.fan-media img,
.fan-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fan-embed {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-primary);
}

.fan-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.fan-info {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.fan-author {
    color: var(--accent-gold);
    font-weight: 500;
}

.fan-platform {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.fan-caption {
    padding: 12px 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-content {
        position: relative;
    }

    #main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        padding: 20px;
        border-top: 1px solid var(--border-color);
        z-index: 1000;
    }

    #main-nav.open {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

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

    .tour-date-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .tour-date-details {
        text-align: center;
    }

    .tour-date-status {
        margin-left: 0;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form button {
        width: 100%;
    }

    .press-bio {
        flex-direction: column;
    }

    .press-bio img {
        width: 100%;
        max-width: 200px;
    }

    .admin-nav {
        flex-wrap: wrap;
    }

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

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

    .hashtag-cta {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hashtag-display {
        font-size: 1.5rem;
        padding: 12px 20px;
    }

    .carousel-slide {
        flex: 0 0 calc(100% - 14px);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-wrapper {
        gap: 0;
    }

    .carousel-btn {
        display: none;
    }

    .carousel-slide {
        flex: 0 0 100%;
        padding: 0;
    }

    .fan-card {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .fan-section .container {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero {
        padding: 40px 0;
    }

    .section {
        padding: 40px 0;
    }
}
