/* CSS Custom Properties - Bordeaux/Dark Red Theme */
:root {
    --primary-bordeaux: #5c1a1a;
    --primary-bordeaux-dark: #3d1010;
    --primary-bordeaux-light: #7a2323;
    --primary-bordeaux-glow: rgba(92, 26, 26, 0.4);
    --primary-bordeaux-subtle: rgba(92, 26, 26, 0.15);
    --white: #ffffff;
    --off-white: #fdfbfb;
    --light-gray: #f0ecec;
    --medium-gray: #d4c8c8;
    --dark-gray: #2a1a1a;
    --text-primary: #1a1010;
    --text-secondary: #3d2525;
    --text-muted: #5c4040;
    --border-color: #d4c8c8;
    --shadow-sm: 0 2px 8px rgba(61, 16, 16, 0.08);
    --shadow-md: 0 4px 16px rgba(61, 16, 16, 0.12);
    --shadow-lg: 0 8px 32px rgba(61, 16, 16, 0.15);
    --shadow-glow: 0 0 30px var(--primary-bordeaux-glow);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
    --header-height: 60px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-bordeaux);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 4rem 1.5rem 3rem;
    overflow: hidden;
}

.banner-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh;
    min-height: 350px;
    max-height: 500px;
    z-index: 1;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.banner-container:hover .banner-image {
    transform: scale(1.02);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.15) 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
}

/* Profile Circle - Overlapping the banner */
.profile-circle-container {
    position: relative;
    z-index: 10;
    margin-top: calc(60vh - 70px);
    margin-bottom: 1.5rem;
    animation: floatUp 0.8s ease-out;
}

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

.profile-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
}

.profile-circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-bordeaux), var(--primary-bordeaux-light));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.profile-circle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg), 0 0 40px var(--primary-bordeaux-glow);
}

.profile-circle:hover::before {
    opacity: 1;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.artist-name {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* Social Links Section */
.social-links {
    padding: 3rem 1.5rem;
    background: var(--off-white);
}

.social-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
    min-width: 140px;
    text-align: center;
}

.social-link:hover {
    border-color: var(--primary-bordeaux);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.social-link:focus-visible {
    outline: 3px solid var(--primary-bordeaux);
    outline-offset: 3px;
}

.social-icon {
    width: 28px;
    height: 28px;
    color: var(--text-secondary);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.social-link:hover .social-icon {
    color: var(--primary-bordeaux);
    transform: scale(1.1);
}

.social-link span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.social-link:hover span {
    color: var(--primary-bordeaux);
}

/* Video Section */
.video-section {
    padding: 4rem 1.5rem;
    background: var(--white);
}

.video-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-bordeaux);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: var(--medium-gray);
    overflow: hidden;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(61, 16, 16, 0.5) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.video-card:hover .video-thumbnail::after {
    opacity: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: all var(--transition-normal);
    z-index: 2;
}

.play-button svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
    color: var(--primary-bordeaux);
}

.video-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-bordeaux);
}

.play-button:hover svg {
    color: var(--white);
}

.play-button:focus-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    outline: 3px solid var(--primary-bordeaux);
    outline-offset: 3px;
}

.video-info {
    padding: 1.25rem;
}

.video-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.video-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 4rem 1.5rem;
    background: var(--off-white);
}

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

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 2rem 1.5rem;
    background: var(--text-primary);
    color: var(--white);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 65vh;
        padding: 3rem 1rem 2rem;
    }

    .banner-container {
        height: 55vh;
        min-height: 300px;
        max-height: 400px;
    }

    .profile-circle-container {
        margin-top: calc(55vh - 60px);
    }

    .profile-circle {
        width: 120px;
        height: 120px;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .social-link {
        min-width: 0;
        padding: 1rem;
    }

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

    .about-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }

    .banner-container {
        height: 50vh;
        min-height: 280px;
    }

    .profile-circle-container {
        margin-top: calc(50vh - 50px);
    }

    .profile-circle {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }

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

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-bordeaux: #3d1010;
        --border-color: #000;
        --text-secondary: #000;
        --text-muted: #333;
    }

    .social-link {
        border-width: 3px;
    }

    .profile-circle {
        border-width: 5px;
    }
}

/* Focus Styles for Accessibility */
:focus-visible {
    outline: 3px solid var(--primary-bordeaux);
    outline-offset: 2px;
}

/* Placeholder Styles for Missing Images */
.banner-image[src=""],
.profile-image[src=""],
.video-thumbnail:not([style*="url"]) {
    background: linear-gradient(135deg, var(--medium-gray) 25%, var(--border-color) 50%, var(--medium-gray) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}