/* Blair Sinta Recording - Main Stylesheet */
/* Color Palette:
   - Deep Blue/Teal: #2B7A9B
   - Charcoal: #2A2A2A, #3A3A3A
   - Cream: #E8DCC4
   - Gold: #D4AF37
   - Background: #1a1a1a
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:wght@400;600&family=Work+Sans:wght@300;400;600&display=swap');

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

:root {
    --primary-blue: #2B7A9B;
    --gold: #D4AF37;
    --cream: #E8DCC4;
    --charcoal: #2A2A2A;
    --charcoal-light: #3A3A3A;
    --bg-dark: #1a1a1a;
    --text-light: #999;
    --coral-red: #C85A54;
}

body {
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    background-color: var(--bg-dark);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Fixed Navigation */
nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    background: var(--charcoal);
    border-right: 1px solid var(--charcoal-light);
    padding: 40px 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    margin-bottom: 60px;
    line-height: 1.4;
    display: block;
}

.logo:hover {
    color: var(--gold);
    transition: color 0.3s ease;
}

nav ul {
    list-style: none;
    flex-grow: 1;
}

nav ul li {
    margin-bottom: 25px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
    padding-left: 10px;
}

nav ul li a::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::before,
nav ul li a.active::before {
    width: 12px;
}

.nav-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--charcoal-light);
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-blue);
}

/* Main Content Area */
main {
    margin-left: 280px;
    min-height: 100vh;
}

/* Page Container */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 60px;
    background-color: #1a1a1a;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.60) 0%, rgba(42, 42, 42, 0.50) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    color: var(--cream);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

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

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.about-content h2 {
    color: var(--gold);
    margin-bottom: 30px;
}

.artist-highlight {
    background: var(--charcoal);
    padding: 30px;
    border-left: 3px solid var(--primary-blue);
    margin: 40px 0;
}

.artist-highlight h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.artist-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.artist-name {
    background: var(--charcoal-light);
    padding: 8px 16px;
    border-radius: 3px;
    font-size: 0.9rem;
    color: var(--cream);
}

/* Credits Section */
.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.credit-item {
    background: var(--charcoal);
    padding: 30px;
    border-radius: 4px;
    border-left: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
    cursor: pointer;
}

.credit-item:hover {
    transform: translateY(-5px);
    border-left-color: var(--coral-red);
    background: var(--charcoal-light);
}

.credit-item:hover .credit-artist {
    color: var(--coral-red);
}

.credit-item h3 {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 10px;
}

.credit-artist {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.credit-role {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Audio Section */
.audio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.audio-embed {
    background: var(--charcoal);
    padding: 20px;
    border-radius: 4px;
}

.audio-embed iframe {
    width: 100%;
    border-radius: 4px;
}

/* Contact Form */
.contact-container {
    max-width: 700px;
    margin: 60px auto 0;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--charcoal);
    border: 1px solid var(--charcoal-light);
    color: var(--cream);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.form-submit {
    text-align: center;
    margin-top: 40px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    color: var(--cream);
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    nav {
        width: 240px;
    }
    
    main {
        margin-left: 240px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    nav {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
    }
    
    main {
        margin-left: 0;
    }
    
    .logo {
        margin-bottom: 20px;
        font-size: 1.2rem;
    }
    
    nav ul {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin-bottom: 0;
    }
    
    .nav-footer {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .page-container {
        padding: 40px 30px;
    }
    
    .hero {
        padding: 60px 30px;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .credits-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}
