/* ============================================
   YAMIR Landing Page - Complete Styling
   ============================================ */

:root {
    --primary: #C4A57B;
    --dark: #1A1A1A;
    --darker: #0F0F0F;
    --accent: #E8DCC8;
    --text: #F5F5F5;
    --text-muted: #CCCCCC;
    --border: #333333;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY & SPACING
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { font-size: 1rem; margin-bottom: 1rem; color: var(--text-muted); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 165, 123, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.8) 100%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

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

.nav-brand h1 {
    font-size: 1.75rem;
    margin: 0;
    letter-spacing: 3px;
}

.nav-subtitle {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-brand {
        text-align: center;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(196, 165, 123, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(196, 165, 123, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 450px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.hero-scroll svg {
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

/* ============================================
   BIO SECTION
   ============================================ */

.bio {
    background-color: var(--dark);
}

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

.bio-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.bio-highlight {
    color: var(--primary);
    font-style: italic;
    padding: 1.5rem;
    border-left: 3px solid var(--primary);
    background-color: rgba(196, 165, 123, 0.05);
    margin: 1.5rem 0;
}

.bio-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    padding: 2rem;
    background-color: rgba(196, 165, 123, 0.1);
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: center;
}

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

.stat p {
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .bio-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MUSIC SECTION
   ============================================ */

.music {
    background-color: var(--darker);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .music-grid {
        grid-template-columns: 1fr;
    }
}

.track-card {
    background-color: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.track-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(196, 165, 123, 0.15);
    transform: translateY(-4px);
}

.track-cover {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--darker);
}

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

.track-card:hover .track-cover img {
    transform: scale(1.05);
}

.track-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
    font-size: 1.35rem;
}

.track-artist {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 0.9rem;
}

.player {
    width: calc(100% - 3rem);
    margin: 0 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--darker);
}

.track-links {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
    flex-wrap: wrap;
}

.link-btn {
    flex: 1;
    min-width: 80px;
    padding: 0.5rem 1rem;
    background-color: rgba(196, 165, 123, 0.1);
    color: var(--primary);
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.link-btn:hover {
    background-color: var(--primary);
    color: var(--dark);
}

.music-cta {
    text-align: center;
    padding: 2rem;
    background-color: var(--dark);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.music-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ============================================
   STORY SECTION
   ============================================ */

.story {
    background-color: var(--dark);
}

.story-timeline {
    position: relative;
    padding: 2rem 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) > * {
    direction: ltr;
}

.timeline-marker {
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    background-color: var(--darker);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 2px solid var(--primary);
}

.timeline-content {
    padding: 1.5rem;
    background-color: rgba(196, 165, 123, 0.05);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin: 0;
}

@media (max-width: 768px) {
    .story-timeline::before {
        left: 1rem;
    }
    
    .timeline-item {
        grid-template-columns: 80px 1fr;
        direction: ltr !important;
        gap: 1rem;
    }
    
    .timeline-item > * {
        direction: ltr !important;
    }
    
    .timeline-item:nth-child(even) {
        direction: ltr;
    }
    
    .timeline-marker {
        font-size: 1rem;
        padding: 0.5rem;
    }
}

/* ============================================
   TRANSPARENCY SECTION
   ============================================ */

.transparency {
    background-color: var(--darker);
}

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

.transparency-card {
    padding: 2rem;
    background-color: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: var(--transition);
}

.transparency-card:hover {
    border-color: var(--primary);
    background-color: rgba(196, 165, 123, 0.05);
}

.transparency-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.transparency-card p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.transparency-statement {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(196, 165, 123, 0.1) 0%, rgba(232, 220, 200, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-align: center;
}

.transparency-statement h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.transparency-statement p {
    max-width: 600px;
    margin: 0 auto 1rem;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter {
    background-color: var(--dark);
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background-color: var(--darker);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196, 165, 123, 0.1);
}

.newsletter-form button {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ============================================
   PRESS SECTION
   ============================================ */

.press {
    background-color: var(--darker);
}

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

.press-card {
    padding: 2rem;
    background-color: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.press-card h3 {
    color: var(--primary);
    margin: 0;
}

.press-card p {
    margin: 0;
    flex-grow: 1;
}

.press-card .btn {
    align-self: flex-start;
}

.featured-press {
    text-align: center;
    padding: 3rem;
    background-color: var(--dark);
    border: 1px dashed var(--border);
    border-radius: 8px;
}

.featured-press h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.coming-soon {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================
   CONNECT SECTION
   ============================================ */

.connect {
    background-color: var(--dark);
    text-align: center;
}

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

.social-btn {
    padding: 1rem 2rem;
    background-color: var(--dark);
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social-btn:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(196, 165, 123, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--darker);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    padding: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-note a {
    color: var(--primary);
    text-decoration: none;
}

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */

@media (max-width: 480px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
}

/* ============================================
   DARK MODE (Already applied throughout)
   ============================================ */

/* Ensure proper rendering in all contexts */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--text-muted);
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ============================================
   AVATAR VARIATIONS SECTION
   ============================================ */

.avatars {
    background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
}

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

.avatar-card {
    background: rgba(196, 165, 123, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.avatar-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(196, 165, 123, 0.1);
}

.avatar-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.avatar-card h4 {
    font-size: 1.25rem;
    margin: 1rem;
    color: var(--primary);
}

.avatar-card p {
    margin: 0 1rem 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .avatar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .avatar-card img {
        height: 250px;
    }
}
