/* Color Palette inspired by CLOVR logo and album art */
:root {
    --color-dark: #1a1a1a;
    --color-darker: #0f0f0f;
    --color-sage: #8fbc8f;
    --color-sage-light: #a8d5a8;
    --color-sage-dark: #6b9a6b;
    --color-blue-light: #b0c4de;
    --color-blue-muted: #708090;
    --color-gray-light: #e0e0e0;
    --color-gray-mid: #9a9a9a;
    --color-text: #f5f5f5;
    --color-text-muted: #c0c0c0;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(143, 188, 143, 0.1);
}

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

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: 50px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(90deg);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-sage);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-sage);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background:
        linear-gradient(
            135deg,
            rgba(15, 15, 15, 0.85) 0%,
            rgba(26, 26, 26, 0.75) 50%,
            rgba(15, 15, 15, 0.85) 100%
        ),
        url('boat-on-lake.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

#rain-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(143, 188, 143, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(176, 196, 222, 0.06) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.tagline {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--color-sage-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(143, 188, 143, 0.3);
}

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

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 2rem;
    color: var(--color-sage);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--color-dark);
}

.about h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-sage);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-text em {
    color: var(--color-sage);
    font-style: italic;
}

/* Music Section */
.music {
    padding: 8rem 0;
    background: var(--color-darker);
}

.music h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-sage);
}

.album-header {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(143, 188, 143, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(143, 188, 143, 0.1);
}

.album-cover {
    width: 300px;
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.album-info h3 {
    font-size: 2rem;
    color: var(--color-sage);
    margin-bottom: 1rem;
}

.album-info p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

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

.track-embed {
    transition: transform 0.3s ease;
}

.track-embed:hover {
    transform: translateY(-5px);
}

/* Listen Section */
.listen {
    padding: 8rem 0;
    background: var(--color-dark);
    text-align: center;
}

.listen h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-sage);
}

.listen-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.streaming-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: rgba(143, 188, 143, 0.05);
    border: 2px solid rgba(143, 188, 143, 0.15);
    border-radius: 16px;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.streaming-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(143, 188, 143, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.streaming-service:hover::before {
    opacity: 1;
}

.streaming-service svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.streaming-service .streaming-logo {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.streaming-service[data-service="amazon"] .streaming-logo {
    width: 130px;
    height: auto;
}

.streaming-service:hover .streaming-logo {
    transform: scale(1.1);
}

.streaming-service:hover {
    border-color: var(--color-sage);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(143, 188, 143, 0.2);
}

.streaming-service:hover svg {
    transform: scale(1.1);
}

.streaming-service span {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Individual service colors */
.streaming-service[data-service="spotify"]:hover {
    border-color: #1DB954;
}

.streaming-service[data-service="spotify"]:hover svg {
    color: #1DB954;
}

.streaming-service[data-service="apple"]:hover {
    border-color: #FA243C;
}

.streaming-service[data-service="apple"]:hover svg {
    color: #FA243C;
}

.streaming-service[data-service="youtube"]:hover {
    border-color: #FF0000;
}

.streaming-service[data-service="youtube"]:hover svg {
    color: #FF0000;
}

.streaming-service[data-service="amazon"]:hover {
    border-color: #FF9900;
}

.streaming-service[data-service="amazon"]:hover svg {
    color: #FF9900;
}

.streaming-service[data-service="tidal"]:hover {
    border-color: #00FFFF;
}

.streaming-service[data-service="tidal"]:hover svg {
    color: #00FFFF;
}

.streaming-service[data-service="deezer"]:hover {
    border-color: #FF0092;
}

.streaming-service[data-service="deezer"]:hover svg {
    color: #FF0092;
}

.all-platforms-link {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-all-platforms {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--color-sage);
    color: var(--color-sage);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-all-platforms:hover {
    background: var(--color-sage);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(143, 188, 143, 0.3);
}

/* Footer */
footer {
    padding: 3rem 0;
    background: var(--color-darker);
    border-top: 1px solid rgba(143, 188, 143, 0.1);
}

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

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

footer p {
    color: var(--color-gray-mid);
    font-size: 0.9rem;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 0.2em;
    }

    .tagline {
        font-size: 1.125rem;
    }

    .hero-links {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

    .album-header {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .about h2,
    .music h2,
    .listen h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .streaming-service {
        padding: 1.5rem 1rem;
    }
}
