/* ===== VARIANT 02: MINIMALIST WHITE THEME ===== */
/* Clean, spacious design with elegant typography */

:root {
    --primary: #1a1a1a;
    --primary-light: #333333;
    --accent: #e63946;
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --bg-cream: #f8f7f4;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-light: #eeeeee;
    --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.08);
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-highlight {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 160px 24px 100px;
    text-align: center;
    background: var(--bg-cream);
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Video Section */
.video-section {
    padding: 80px 24px;
}

.video-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.video-container {
    position: relative;
    padding-top: 56.25%;
    background: var(--primary);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-info {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid var(--border-light);
}

.creator-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.creator-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
}

.creator-avatar[data-thumbnail] span { display: none; }

.creator-details h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.creator-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.video-stats {
    display: flex;
    gap: 24px;
}

.stat {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stat strong {
    color: var(--primary);
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 80px 24px;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--bg-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.about-image {
    height: 350px;
    background: var(--bg-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
}

.about-image[data-thumbnail] span { display: none; }

/* Creator Section */
.creator-section {
    padding: 80px 24px;
}

.creator-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.creator-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.creator-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
}

.profile-image[data-thumbnail] span { display: none; }

.profile-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.profile-bio {
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 450px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.social-link.instagram { background: #E4405F; color: white; }
.social-link.facebook { background: #1877F2; color: white; }
.social-link.youtube { background: #FF0000; color: white; }

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Permission Section */
.permission-section {
    padding: 40px 24px;
    background: var(--bg-cream);
}

.permission-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.checkmark {
    width: 24px;
    height: 24px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.permission-notice p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Share Section */
.share-section {
    padding: 80px 24px;
    text-align: center;
}

.share-section h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--primary);
    color: white;
}

.share-btn.outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Footer */
.footer {
    padding: 60px 24px 30px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 250px;
        order: -1;
    }

    .video-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-stats {
        flex-wrap: wrap;
    }
}

/* Page Styles */
.page-header {
    padding: 140px 24px 60px;
    background: var(--bg-cream);
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.page-subtitle {
    color: var(--text-secondary);
}

.page-content {
    padding: 60px 24px;
}

.content-section {
    max-width: 700px;
    margin: 0 auto 40px;
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.content-section p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.legal-list {
    background: var(--bg-light);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.legal-list ul { list-style: none; }

.legal-list li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--primary-light);
}

