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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 60px;
}

/* Header - Logo styling to match reference */
.header {
    margin-bottom: 100px;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo {
    font-size: 4.25rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 8px;
}

/* Sparkle overlays on logo */
.sparkle {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

/* Celebration sparkle near upper-left of "R" - positioned to not overlap too much */
.sparkle-r {
    top: -30px;
    left: -30px;
}

/* Fashion Stars sparkle near lower-right of "S" in Productions */
.sparkle-s {
    bottom: -15px;
    right: -25px;
}

.tagline {
    font-size: 1.45rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.01em;
}

.contact-email {
    display: block;
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 400;
    color: #666666;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Skills Overview - Table of Contents */
.skills-overview {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.skills-overview-item {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888888;
    line-height: 1.5;
    letter-spacing: 0.005em;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* Skill Section - Two Column Layout */
.skill-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.skill-content {
    flex: 1;
    max-width: 680px;
}

/* Skill Title */
.skill-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

/* Skill Subtitle (parenthetical) */
.skill-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    font-style: italic;
    color: #666666;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

/* Skill List (bullets) */
.skill-list {
    list-style: disc;
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-list li {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    line-height: 1.55;
    letter-spacing: 0.005em;
}

/* Video Placeholder - Base styles */
.video-placeholder {
    flex-shrink: 0;
    position: relative;
}

/* Unmute button for audio videos */
.unmute-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.unmute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.unmute-btn svg {
    width: 22px;
    height: 22px;
}

/* Vertical 9:16 - Sized to fill available vertical space */
.video-placeholder.vertical {
    width: 340px;
}

.video-placeholder.vertical .video-frame {
    aspect-ratio: 9 / 16;
}

/* Horizontal 16:9 - Sized to fill available horizontal space */
.video-placeholder.horizontal {
    width: 540px;
}

.video-placeholder.horizontal .video-frame {
    aspect-ratio: 16 / 9;
}

.video-frame {
    position: relative;
    width: 100%;
    background: linear-gradient(145deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 0; /* Sharp corners - no rounded edges */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video element styling */
video.video-frame {
    object-fit: cover;
    display: block;
}

/* Play Button */
.play-button {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.play-button:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.18);
}

.play-button svg {
    width: 26px;
    height: 26px;
    color: #1a1a1a;
    margin-left: 4px;
}

/* Footer */
.footer {
    margin-top: 120px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
    text-align: center;
}

.footer p {
    font-size: 0.875rem;
    color: #999999;
    letter-spacing: 0.02em;
}

/* Responsive Design - Large Tablet */
@media (max-width: 1200px) {
    .video-placeholder.vertical {
        width: 280px;
    }

    .video-placeholder.horizontal {
        width: 450px;
    }
}

/* Responsive Design - Tablet */
@media (max-width: 1000px) {
    .container {
        padding: 60px 40px;
    }

    .header {
        margin-bottom: 80px;
    }

    .logo {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .contact-email {
        font-size: 0.9rem;
    }

    .skills-overview {
        margin-top: 24px;
    }

    .skills-overview-item {
        font-size: 0.85rem;
    }

    .main-content {
        gap: 80px;
    }

    .skill-section {
        gap: 40px;
    }

    .video-placeholder.vertical {
        width: 220px;
    }

    .video-placeholder.horizontal {
        width: 360px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 800px) {
    .container {
        padding: 50px 28px;
    }

    .header {
        margin-bottom: 60px;
    }

    .logo {
        font-size: 8.5vw;
        white-space: nowrap;
    }

    .tagline {
        font-size: 2.8vw;
    }

    .contact-email {
        font-size: 3vw;
        margin-top: 10px;
    }

    .skills-overview {
        margin-top: 20px;
    }

    .skills-overview-item {
        font-size: 0.8rem;
    }

    .main-content {
        gap: 70px;
    }

    .skill-section {
        flex-direction: column-reverse;
        align-items: center;
        gap: 35px;
    }

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

    .video-placeholder.vertical,
    .video-placeholder.horizontal {
        width: 100%;
        max-width: 100%;
    }

    .skill-title {
        font-size: 1.2rem;
    }
}

/* Responsive Design - Small Mobile */
@media (max-width: 500px) {
    .container {
        padding: 40px 20px;
    }

    .header {
        margin-bottom: 50px;
    }

    .logo {
        font-size: 8.5vw;
    }

    .tagline {
        font-size: 2.8vw;
    }

    .main-content {
        gap: 60px;
    }

    .skill-title {
        font-size: 1.1rem;
    }

    .skill-subtitle {
        font-size: 0.9rem;
    }

    .skill-list {
        padding-left: 18px;
        gap: 6px;
    }

    .skill-list li {
        font-size: 0.95rem;
    }

    .video-placeholder.vertical,
    .video-placeholder.horizontal {
        max-width: 100%;
    }

    .play-button {
        width: 54px;
        height: 54px;
    }

    .play-button svg {
        width: 22px;
        height: 22px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Page load animation - everything fades in once */
.header {
    animation: slideInFromRight 0.8s ease-out forwards;
}

.main-content {
    animation: fadeInUp 0.9s ease-out 0.2s forwards;
    opacity: 0;
}

.footer {
    animation: fadeIn 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video placeholder - slides in from right on scroll */
.video-placeholder {
    opacity: 0;
    transform: translateX(25px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.video-placeholder.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .header,
    .main-content,
    .footer,
    .video-placeholder {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }

    .container {
        max-width: 100%;
        padding: 30px;
    }

    .video-placeholder {
        display: none;
    }

    .skill-section {
        page-break-inside: avoid;
    }

    .footer {
        display: none;
    }
}
