/* ===========================================
   THE SCREAMIN HONKERS - STYLESHEET
   Matching original Weebly site style
   =========================================== */

:root {
    /* Color palette - matching original site */
    --white: #ffffff;
    --off-white: #f8f8f8;
    --light-gray: #e8e8e8;
    --text-gray: #444444;
    --text-dark: #333333;
    --text-light: #666666;
    --cyan: #29b8c8;
    --cyan-dark: #1fa3b2;
    --black: #000000;
    
    /* Typography */
    --font-main: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

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

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

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-gray);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 60px; /* Space for fixed header */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--cyan-dark);
    text-decoration: underline;
}

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

/* ===========================================
   HEADER & NAVIGATION
   =========================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    border-top: 3px solid var(--cyan);
}

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

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.logo:hover {
    color: var(--white);
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
}

.main-nav a {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-xs) var(--space-sm);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--cyan);
    color: var(--white);
    text-decoration: none;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-fast);
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #222;
    background-image: url('images/honkers_bandphoto_bw.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--space-xl) var(--space-md);
    position: relative;
}

/* Scroll down indicator arrow */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator::before,
.scroll-indicator::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: translateX(-50%) rotate(45deg);
}

.scroll-indicator::before {
    top: 8px;
}

.scroll-indicator::after {
    top: 18px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--white);
    margin-bottom: var(--space-md);
    font-weight: 400;
}

.dedication {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    font-size: 1rem;
    font-style: italic;
}

.dedication strong {
    font-style: normal;
}

.cta-button {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-sm) var(--space-lg);
    background: var(--cyan);
    color: var(--white);
    border: none;
    transition: background var(--transition-fast);
}

.cta-button:hover {
    background: var(--cyan-dark);
    color: var(--white);
    text-decoration: none;
}

/* ===========================================
   PAGE HEADER (for inner pages)
   =========================================== */

.page-header {
    min-height: 200px;
    background: #222;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg) var(--space-md);
}

/* Add a band photo as background on inner pages */
/* .page-header { background-image: url('images/header-bg.jpg'); } */

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

/* ===========================================
   WELCOME / INTRO SECTION
   =========================================== */

.welcome {
    padding: var(--space-xl) var(--space-md);
    background: var(--white);
    text-align: center;
}

.welcome-text {
    max-width: 700px;
    margin: 0 auto var(--space-md);
    font-size: 1rem;
    color: var(--text-gray);
}

.signature {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: var(--space-lg);
    font-style: italic;
}

/* ===========================================
   CONTENT SECTIONS
   =========================================== */

.content-section {
    padding: var(--space-xl) var(--space-md);
    background: var(--white);
}

.content-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    margin-top: var(--space-lg);
}

.content-section h2:first-of-type {
    margin-top: 0;
}

.content-section p {
    margin-bottom: var(--space-md);
    color: var(--text-gray);
    line-height: 1.8;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Band members list */
.members-list {
    list-style: disc;
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
}

.members-list li {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--text-gray);
}

.members-list li strong {
    color: var(--text-dark);
}

/* Story callouts */
.story-callout {
    background: var(--off-white);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
    border-left: 4px solid var(--cyan);
}

.story-callout h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    font-style: italic;
}

.story-callout ul {
    list-style: disc;
    padding-left: var(--space-lg);
    color: var(--text-gray);
}

.story-callout li {
    margin-bottom: var(--space-xs);
}

/* ===========================================
   VIDEO SECTION
   =========================================== */

.video-section {
    margin-bottom: var(--space-xl);
}

.video-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: var(--space-md);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--text-light);
    font-size: 0.9rem;
}

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

/* SoundCloud embed */
.soundcloud-embed {
    margin-bottom: var(--space-lg);
}

.soundcloud-embed iframe {
    display: block;
}

.track-list {
    list-style: none;
}

.track-item {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

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

.track-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyan);
    min-width: 2rem;
}

.track-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

.track-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

audio {
    width: 100%;
    margin-top: var(--space-sm);
}

/* ===========================================
   GALLERY
   =========================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-sm);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
    aspect-ratio: 4/3;
    display: block;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium), opacity var(--transition-fast);
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================================
   CONTACT PAGE
   =========================================== */

.contact-page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-hero {
    flex: 1;
    min-height: calc(100vh - 60px);
    background: #222;
    background-image: url('images/honkers_bandphoto_bw.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
}

.contact-form-container {
    background: rgba(0, 0, 0, 0.5);
    padding: var(--space-lg);
    max-width: 420px;
    width: 100%;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.required-note {
    font-size: 0.8rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.required-note::before {
    content: "* ";
    color: #e74c3c;
}

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

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.contact-form label .required {
    color: #e74c3c;
}

.contact-form .name-fields {
    display: flex;
    gap: var(--space-sm);
}

.contact-form .name-field {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-family: var(--font-main);
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background: var(--white);
    color: var(--text-dark);
    transition: box-shadow var(--transition-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--cyan);
}

.contact-form .field-hint {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

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

.submit-button {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
    background: var(--cyan);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.submit-button:hover {
    background: var(--cyan-dark);
}

@media (max-width: 480px) {
    .contact-form .name-fields {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .contact-form-container {
        padding: var(--space-md);
    }
    
    .contact-form-container h2 {
        font-size: 1.5rem;
    }
}

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

.site-footer {
    margin-top: auto;
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
    padding: var(--space-md);
    text-align: center;
}

.site-footer p {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: var(--space-sm);
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav a {
        display: block;
        padding: var(--space-sm);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav li:last-child a {
        border-bottom: none;
    }
    
    .hero {
        min-height: 40vh;
    }
    
    .page-header {
        min-height: 180px;
    }
    
    .content-section {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .track-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .header-content {
        padding: var(--space-sm);
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .hero {
        min-height: 35vh;
    }
    
    .page-header {
        min-height: 150px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xs);
    }
}
