/*
Theme Name: Artist Core
Theme URI: https://antunlwin.com
Author: Hector Kolin
Author URI: https://yechel.com
Description: Tema base para artistas, sellos y proyectos musicales.
Version: 1.0
Text Domain: artist-core
*/

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

html {
    scroll-behavior: smooth;
}

body {
    background: #0b0b0b;
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

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

.container {
    width: calc(100% - 32px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 24px 0;
}

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

.site-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-menu {
    list-style: none;
    display: flex;
    gap: 28px;
}

.main-menu a {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.main-menu a:hover {
    color: #d8a54a;
}

.hero-artist {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: end;
    padding: 160px 0 90px;
    background-image:
        linear-gradient(to bottom, rgba(10,10,10,0.20), rgba(10,10,10,0.88)),
        url('https://antunlwin.com/wp-content/uploads/2025/10/Antun-Lwin.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(216,165,74,0.10), rgba(0,0,0,0.20));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-kicker {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d8a54a;
    margin-bottom: 16px;
    font-weight: 700;
}

.artist-name {
    font-size: 88px;
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.artist-tagline {
    font-size: 20px;
    color: #dddddd;
    max-width: 680px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    background: #d8a54a;
    color: #111111;
}

.btn-primary:hover {
    background: #f0c971;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.20);
    color: #ffffff;
    background: rgba(255,255,255,0.04);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.10);
}

section {
    padding: 90px 0;
}

.section-dark {
    background: #151515;
}

h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 900;
    text-transform: uppercase;
}

.platform-grid,
.video-grid,
.music-grid,
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.platform-card,
.video-card,
.music-card,
.project-card {
    border-radius: 18px;
    overflow: hidden;
    min-height: 220px;
    padding: 28px;
    display: flex;
    align-items: end;
    font-size: 24px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.platform-card:hover,
.video-card:hover,
.music-card:hover,
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.platform-card {
    min-height: 120px;
    align-items: center;
    justify-content: center;
    background: #1e1e1e;
    font-size: 20px;
}

.video-card {
    background:
        linear-gradient(to top, rgba(0,0,0,0.60), rgba(0,0,0,0.10)),
        url('https://antunlwin.com/wp-content/uploads/2025/10/cropped-Antun-Lwin.jpg');
    background-size: cover;
    background-position: center;
}

.music-card {
    background:
        linear-gradient(to top, rgba(0,0,0,0.60), rgba(0,0,0,0.10)),
        url('https://antunlwin.com/wp-content/uploads/2025/10/cropped-Antun-Lwin.jpg');
    background-size: cover;
    background-position: center;
}

.project-card {
    background:
        linear-gradient(to top, rgba(0,0,0,0.60), rgba(0,0,0,0.10)),
        url('https://antunlwin.com/wp-content/uploads/2026/03/Antun-Lwin-Tour.jpg');
    background-size: cover;
    background-position: center;
}

.bio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.bio-image {
    min-height: 500px;
    border-radius: 18px;
    background:
        linear-gradient(to top, rgba(0,0,0,0.35), rgba(0,0,0,0.10)),
        url('https://antunlwin.com/wp-content/uploads/2026/03/Antun-Lwin-Set.jpg');
    background-size: cover;
    background-position: center;
}

.bio-text p {
    font-size: 18px;
    color: #d7d7d7;
    max-width: 640px;
}

.contact-section p {
    font-size: 18px;
    color: #d7d7d7;
}

.site-footer {
    background: #000000;
    color: #aaaaaa;
    text-align: center;
    padding: 28px 0;
    font-size: 14px;
}

@media (max-width: 991px) {
    .artist-name {
        font-size: 62px;
    }

    .platform-grid,
    .video-grid,
    .music-grid,
    .project-grid,
    .bio-layout {
        grid-template-columns: 1fr;
    }

    .header-inner {
        flex-direction: column;
        gap: 16px;
    }

    .main-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .hero-artist {
        min-height: auto;
        padding: 140px 0 70px;
    }

    .artist-name {
        font-size: 42px;
    }

    .artist-tagline {
        font-size: 17px;
    }

    h2 {
        font-size: 32px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}