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

/* Screen reader only content for SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    background: transparent;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    border-bottom-color: white;
    color: white;
}

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

.bar {
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content Styles */
main {
    min-height: 100vh;
    padding: 0;
    margin-top: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Wreckage.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.7) contrast(1.1);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Georgia', serif;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-style: italic;
    color: #f0f0f0;
}

.sub-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
}

/* Page Content Styles */
.page-content {
    padding: 6rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.page-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Literature Page Styles - Dark Theme */
.literature-page {
    background: #000000;
    color: #f5f5f5;
    min-height: 100vh;
    font-family: 'Oswald', 'Helvetica Neue', Arial, sans-serif;
}

.literature-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Literature Header */
.literature-header {
    text-align: center;
    padding: 80px 0 60px;
    background: #000000;
}

.literature-logo {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.literature-tagline {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 0px;
}

/* Model Viewers Section */
.models-section {
    padding: 0px 0 80px;
    background: #000000;
}

.models-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 20px;
}

.model-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    margin: 0 auto;
}

.model-viewer {
    width: 100%;
    height: 60vh;
    min-height: 450px;
    border-radius: 15px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    margin-bottom: 30px;
}

.model-title {
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 3px;
    color: #ffffff;
}

/* Button Styles for Literature Page */
.button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    color: #2c1810;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    min-width: 100px;
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #f0f0f0, #ffffff);
    border-color: rgba(255, 255, 255, 0.5);
}

.card-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.card-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Music Page Styles */
.music-page {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    color: white;
}

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

.music-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 40px;
}

.music-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 8px;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
}

.music-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 10px 0 0;
    opacity: 0.8;
}

.spotify-section {
    padding: 0 0 60px;
}

.embeds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.spotify-card {
    display: flex;
    flex-direction: column;
    background-color: #282828;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotify-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.spotify-card:nth-child(1),
.spotify-card:nth-child(2) {
    padding: 10px;
}

.spotify-embed-wrapper {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 0;
    box-sizing: border-box;
    display: block;
    height: auto;
    margin: 0;
}

.spotify-embed-wrapper iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
    display: block;
    margin: 0;
    vertical-align: top;
}

.stream-button-container {
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

.spotify-card:nth-child(1) .stream-button-container,
.spotify-card:nth-child(2) .stream-button-container {
    margin-top: 10px;
}

.stream-button {
    display: block;
    width: 100%;
    padding: 12px 25px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: none;
    border: none;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}

.stream-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

/* Contact Page Styles */
.contact-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.contact-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('Vibrance_FINAL ARTWORK.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(0.7) contrast(1.1);
    z-index: -1;
}

.contact-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Georgia', serif;
}

.contact-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-style: italic;
    color: #f0f0f0;
}

.contact-sub-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Responsive Design */
/* Mobile Optimizations */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }

    /* Fix nav link colors for mobile menu */
    .nav-link {
        color: #333 !important;
        border-bottom-color: #333 !important;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #000 !important;
        border-bottom-color: #000 !important;
    }

    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .sub-subtitle {
        font-size: 1rem;
    }

    /* Contact page mobile styles */
    .contact-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .contact-subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .contact-sub-subtitle {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .page-content {
        padding: 5rem 1rem 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-artist,
    .featured-author {
        flex-direction: column;
        text-align: center;
    }
    
    .music-grid,
    .literature-grid {
        grid-template-columns: 1fr;
    }
    
    .music-card,
    .book-card,
    .contact-info,
    .contact-form,
    .music-featured,
    .literature-featured,
    .social-links {
        margin: 0 1rem;
    }
    
    /* Literature Page Mobile Styles */
    .models-grid {
        gap: 80px;
    }
    
    .model-card {
        padding: 20px;
    }
    
    .model-viewer {
        height: 52.5vh;
        min-height: 300px;
    }
    
    .model-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .literature-header {
        padding: 60px 0 40px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .card-button {
        width: 100%;
        max-width: 200px;
        min-height: 44px; /* Better touch target */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Enhanced touch targets */
    .nav-link {
        padding: 0.75rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile */
    .literature-container {
        padding: 0 1rem;
    }
    
    /* Improve form inputs on mobile */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
    }

    /* Music Page Mobile Styles */
    .music-header {
        padding: 60px 0 40px;
    }
    
    .music-logo {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .music-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .embeds-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .spotify-card {
        margin-bottom: 0;
        gap: 0px;
        padding: 15px;
    }
    
    /* Default iframe height for all viewers on mobile */
    .spotify-embed-wrapper iframe {
        height: 450px !important;
    }
    
    /* Specific height for the first two viewers on mobile */
    .spotify-card:nth-child(1) .spotify-embed-wrapper iframe,
    .spotify-card:nth-child(2) .spotify-embed-wrapper iframe {
        height: 250px !important;
    }
    
    /* FIXED: Compensate for Spotify iframe internal padding */
    .spotify-card:nth-child(1) .stream-button-container,
    .spotify-card:nth-child(2) .stream-button-container {
        margin-top: -90px !important; /* Much more negative margin to pull button closer */
    }
    
    /* Space for other buttons on mobile */
    .spotify-card:nth-child(n+3) .stream-button-container {
        margin-top: 15px !important;
    }

    /* Prevent text selection on interactive elements */
    .nav-link,
    .card-button,
    .btn {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Improve scrolling performance */
    .hero-section,
    .models-section {
        -webkit-overflow-scrolling: touch;
    }

    /* Better handling of viewport height on mobile */
    .hero-section {
        height: -webkit-fill-available;
    }

    /* Optimize model viewer for mobile */
    model-viewer {
        touch-action: manipulation;
    }

    /* Improve button touch targets */
    .card-button,
    .btn {
        touch-action: manipulation;
    }

    /* Better spacing for mobile navigation */
    .nav-menu {
        gap: 0;
    }

    .nav-menu .nav-item {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .nav-menu .nav-item:last-child {
        border-bottom: none;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .sub-subtitle {
        font-size: 0.9rem;
    }

    /* Contact page small mobile styles */
    .contact-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }

    .contact-subtitle {
        font-size: 1rem;
        letter-spacing: 0px;
    }

    .contact-sub-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0px;
    }

    .model-title {
        font-size: 2rem;
    }
    
    .literature-logo {
        font-size: 2.5rem;
    }
    
    .literature-tagline {
        font-size: 0.9rem;
    }
    
    .page-content {
        padding: 4rem 0.5rem 1rem;
    }
    
    .models-grid {
        gap: 60px;
    }
    
    .model-card {
        padding: 15px;
    }
    
    .model-viewer {
        height: 45vh;
        min-height: 250px;
    }
}

/* Large mobile devices and small tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .model-viewer {
        height: 50vh;
        min-height: 350px;
    }
    
    .page-content {
        padding: 6rem 2rem 3rem;
    }
    
    /* Music page tablet styles */
    .embeds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .music-logo {
        font-size: 3.5rem;
    }
    
    .music-tagline {
        font-size: 1.1rem;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .sub-subtitle {
        font-size: 0.9rem;
    }
    
    .model-viewer {
        height: 40vh;
        min-height: 200px;
    }
    
    .literature-header {
        padding: 40px 0 20px;
    }
}



/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .model-card {
        transition: none;
    }
    
    .card-button {
        transition: none;
    }
    
    .cta-button {
        transition: none;
    }
} 

