/*!
Theme Name: Niebieska Dama & Revvenic
Theme URI: https://revvenic.org
Author: Niebieska Dama & Revvenic
Author URI: https://revvenic.org
Description: Premium WordPress theme dla muzyki - nowoczesny design, animacje, SEO-friendly. Idealne do promocji na Spotify i YouTube.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: revvenic
Domain Path: /languages
Tags: music, artist, spotify, youtube, responsive, dark-theme, animated
*/

/* ========================================
   REVVENIC - PREMIUM MUSIC WEBSITE CSS
   ======================================== */

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-light: #eaeaea;
    --text-muted: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --transition-speed: 0.3s ease;
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform var(--transition-speed);
    color: var(--text-light);
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-speed);
    position: relative;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--highlight-color);
    transition: width var(--transition-speed);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 5px 0;
    border-radius: 3px;
    transition: all var(--transition-speed);
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

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

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-speed);
    font-weight: 600;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.4);
}

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

.btn-secondary:hover {
    background: var(--highlight-color);
    color: white;
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s ease 0.5s both;
}

.scroll-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
    display: block;
    margin-top: 10px;
}

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

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

.story {
    padding: 6rem 2rem;
    background: var(--secondary-color);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    animation: fadeInLeft 1s ease;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    transition: color var(--transition-speed);
}

.story-text p:hover {
    color: var(--text-light);
}

.quote {
    font-size: 1.3rem;
    color: var(--highlight-color);
    font-style: italic;
    margin-top: 2rem;
    padding: 1.5rem;
    border-left: 4px solid var(--highlight-color);
    background: rgba(233, 69, 96, 0.1);
}

.story-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fadeInRight 1s ease;
}

.story-element {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    animation: pulse 3s infinite;
}

.element-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: var(--shadow-lg);
}

.element-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: var(--shadow-lg);
}

.connection-line {
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #f5576c 100%);
    left: 20%;
    animation: drawLine 2s ease-in-out infinite;
}

@keyframes drawLine {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.music {
    padding: 6rem 2rem;
    background: var(--primary-color);
}

.music-container {
    max-width: 1200px;
    margin: 0 auto;
}

.music h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.track-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    transition: all var(--transition-speed);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0.1;
    transition: left var(--transition-speed);
    z-index: -1;
}

.track-card:hover::before {
    left: 0;
}

.track-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.track-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.track-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.track-artist {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.track-duration {
    color: var(--highlight-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.track-link {
    display: inline-block;
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid var(--highlight-color);
}

.track-link:hover {
    background: var(--highlight-color);
    color: white;
    transform: scale(1.05);
}

.play-icon {
    margin-right: 0.5rem;
}

/* ========================================
   STREAMING SECTION
   ======================================== */

.streaming {
    padding: 6rem 2rem;
    background: var(--secondary-color);
}

.streaming-container {
    max-width: 1200px;
    margin: 0 auto;
}

.streaming h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.streaming-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.platform-card {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    animation: fadeInUp 0.6s ease;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.spotify-card::before {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
}

.youtube-card::before {
    background: linear-gradient(135deg, #FF0000 0%, #FF4444 100%);
}

.apple-card::before {
    background: linear-gradient(135deg, #555555 0%, #000000 100%);
}

.deezer-card::before {
    background: linear-gradient(135deg, #FF0080 0%, #FF1493 100%);
}

.platform-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.platform-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.cta-arrow {
    font-size: 1.5rem;
    margin-top: 1rem;
    transition: transform var(--transition-speed);
}

.platform-card:hover .cta-arrow {
    transform: translateX(5px);
}

/* Newsletter */

.newsletter {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.newsletter h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.newsletter p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    background: var(--secondary-color);
    color: var(--text-light);
    font-size: 1rem;
}

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

.newsletter-form button {
    padding: 1rem 2rem;
}

/* ========================================
   SOCIAL & STATS
   ======================================== */

.social-stats {
    padding: 6rem 2rem;
    background: var(--primary-color);
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.stat {
    animation: fadeInUp 0.6s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.social-links h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.spotify {
    background: #1DB954;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.tiktok {
    background: #000000;
}

.social-icon:hover {
    transform: scale(1.2) translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: 6rem 2rem;
    background: var(--secondary-color);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-speed);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.3);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form button {
    width: 100%;
}

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

.contact-info a {
    color: var(--highlight-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.contact-info a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

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

.footer {
    background: var(--primary-color);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(233, 69, 96, 0.2);
}

.footer-content p {
    color: var(--text-muted);
    margin: 0.5rem 0;
}

.heart {
    color: var(--highlight-color);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ========================================
   ANIMATIONS & UTILITIES
   ======================================== */

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .story-visual {
        height: 200px;
    }

    .story-element {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: auto;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        display: none;
    }
}

/* WordPress specific */
.wp-block-image {
    margin: 1rem 0;
}

.wp-block-button__link {
    background: var(--gradient-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
}

.wp-block-button__link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
