/* ========================================
   GRUMPY DAD MUSIC - STYLES
   Vintage record store meets mid-century modern
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Warm, earthy palette */
    --color-cream: #F5F0E6;
    --color-cream-dark: #EDE5D8;
    --color-mustard: #C9A227;
    --color-mustard-light: #D4B84B;
    --color-forest: #2D3A2E;
    --color-forest-light: #3D4A3E;
    --color-brown: #5C4033;
    --color-brown-light: #8B7355;
    --color-charcoal: #2A2A2A;
    --color-charcoal-light: #3A3A3A;
    --color-white: #FDFCFA;
    
    /* Typography */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

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

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

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

.btn-secondary:hover {
    background-color: var(--color-forest);
    color: var(--color-cream);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background-color: rgba(245, 240, 230, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(45, 58, 46, 0.1);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-forest);
}

.nav-links {
    display: flex;
    gap: var(--space-md);
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--color-charcoal);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-mustard);
    transition: width var(--transition-base);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-forest);
    transition: var(--transition-base);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    background: linear-gradient(
        180deg,
        var(--color-cream) 0%,
        var(--color-cream-dark) 100%
    );
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 58, 46, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-mustard);
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-brown);
    margin-bottom: var(--space-lg);
    font-weight: 300;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-scroll-hint {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.hero-scroll-hint span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brown-light);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-brown-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: var(--space-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-brown);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   MUSIC SECTION
   ======================================== */
.music-section {
    background-color: var(--color-white);
}

.album-category {
    margin-bottom: var(--space-xl);
}

.album-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.5rem;
    color: var(--color-forest);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.category-icon {
    font-size: 1.2rem;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

.album-card {
    background-color: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 58, 46, 0.15);
}

/* ALBUM COVER - Fixed for actual images */
.album-cover {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background-color: var(--color-cream-dark);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder styling (for fallback) */
.album-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.album-info {
    padding: var(--space-md);
}

.album-title {
    font-size: 1.4rem;
    color: var(--color-forest);
    margin-bottom: var(--space-xs);
}

.album-description {
    font-size: 0.9rem;
    color: var(--color-brown);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.album-links {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.stream-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-forest);
    color: var(--color-cream);
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.stream-link:hover {
    background-color: var(--color-mustard);
    transform: scale(1.1);
}

.stream-link svg {
    width: 18px;
    height: 18px;
}

.coming-soon {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-mustard);
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-mustard);
    border-radius: var(--radius-sm);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background-color: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
    align-items: start;
}

/* About image - Fixed for actual images */
.about-image {
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.about-image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
}

.about-text p {
    margin-bottom: var(--space-sm);
    color: var(--color-charcoal);
}

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

.about-highlight {
    font-style: italic;
    color: var(--color-forest) !important;
    padding-left: var(--space-md);
    border-left: 3px solid var(--color-mustard);
}

.about-closing {
    font-weight: 500;
    color: var(--color-brown) !important;
}

/* ========================================
   LISTEN SECTION
   ======================================== */
.listen-section {
    background-color: var(--color-forest);
    color: var(--color-cream);
}

.listen-section .section-title {
    color: var(--color-cream);
}

.listen-section .section-subtitle {
    color: rgba(245, 240, 230, 0.7);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-md);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.platform-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-mustard);
    transform: translateY(-4px);
}

.platform-icon {
    width: 48px;
    height: 48px;
    fill: var(--color-cream);
    transition: fill var(--transition-fast);
}

.platform-card:hover .platform-icon {
    fill: var(--color-mustard);
}

.platform-name {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background-color: var(--color-cream-dark);
}

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

.contact-content .section-title {
    margin-bottom: var(--space-sm);
}

.contact-intro {
    color: var(--color-brown);
    margin-bottom: var(--space-lg);
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-forest);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-mustard);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--color-charcoal);
    color: var(--color-cream);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(245, 240, 230, 0.6);
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-mustard);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--color-cream);
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 240, 230, 0.5);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-image {
        position: static;
        text-align: center;
    }
    
    .about-image img {
        margin: 0 auto;
    }
    
    .about-content .section-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--color-cream);
        flex-direction: column;
        padding: var(--space-md);
        gap: var(--space-sm);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        border-bottom: 1px solid rgba(45, 58, 46, 0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .album-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}

/* Add these styles to your existing styles.css */

/* Logo in Navigation */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--color-text);
}

/* Hide text on very small screens, show just the logo */
@media (max-width: 400px) {
    .nav-logo-text {
        display: none;
    }
}





