/*
Theme Name: Sahku Sheti Ensemble
Description: Professional WordPress theme for Sahku Sheti Ensemble featuring video hero, member profiles, events calendar, and merch store integration
Version: 1.0
Author: Sahku Sheti Ensemble
*/

:root {
    --color-primary: #1B2A5C;
    --color-accent: #C9882A;
    --color-accent-dark: #A67020;
    --color-bg: #080c18;
    --color-bg-dark: #0d1426;
    --color-bg-card: rgba(255,255,255,0.04);
    --color-text: #ffffff;
    --color-text-muted: rgba(255,255,255,0.65);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0d1a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); }
h2 { font-size: 2.5rem; color: #C9882A; }
h3 { font-size: 1.8rem; color: #fff; }
h4 { font-size: 1.4rem; }

p { margin-bottom: 15px; }

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C9882A;
    text-decoration: none;
}

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

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #C9882A;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C9882A;
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d1426 0%, #1B2A5C 40%, #0a0d1a 100%);
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}


/* Hero logo image - full logo visible inside gold ring */
.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,17,38,0.55) 0%, rgba(27,42,92,0.15) 50%, rgba(10,13,26,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: #C9882A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #000;
    font-weight: 700;
}

.hero h1 {
    margin-bottom: 15px;
}

.hero-tagline {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #C9882A;
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #A67020;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #C9882A;
    border-color: #C9882A;
    transform: translateY(-3px);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background: #0d1020;
    color: #fff;
}

.section-light {
    background: #0d1426;
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Latest Release */
.latest-release {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.release-artwork img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.release-info h3 {
    color: #C9882A;
    margin-bottom: 15px;
}

.release-info p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.streaming-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.streaming-links .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: #1B2A5C;
    color: #fff;
    border-radius: 25px;
}

.streaming-links .btn:hover {
    background: #C9882A;
    color: #000;
}

.audio-player {
    background: #141c2e;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

/* Member Profiles */
.members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.member-card {
    background: #141c2e;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: #C9882A;
}

.member-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #C9882A;
    position: relative;
    overflow: hidden;
}

.member-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.member-card:hover .member-image::before {
    transform: translateX(100%);
}

.member-info {
    padding: 30px 25px;
}

.member-info h3 {
    color: #C9882A;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.member-role {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    color: #666;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: #C9882A;
}

/* Events */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: #141c2e;
    border-radius: 15px;
    padding: 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.event-card:hover {
    border-color: #C9882A;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-month {
    background: #C9882A;
    color: #000;
    padding: 8px;
    border-radius: 5px 5px 0 0;
    font-weight: 700;
    font-size: 0.9rem;
}

.event-day {
    background: #fff;
    color: #000;
    padding: 15px 8px;
    border-radius: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-year {
    background: #0d1426;
    color: #C9882A;
    padding: 6px 8px;
    border-radius: 0 0 5px 5px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.btn-past {
    background: transparent;
    color: #666;
    border: 2px solid #333;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: default;
    pointer-events: none;
    display: inline-block;
}

.event-info h3 {
    color: #C9882A;
    margin-bottom: 10px;
}

.event-venue {
    color: #ccc;
    margin-bottom: 5px;
}

.event-location {
    color: #999;
    font-size: 0.9rem;
}

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Media Gallery */
.media-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
}

.tab-button {
    background: none;
    border: none;
    color: #999;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-button.active,
.tab-button:hover {
    color: #C9882A;
    border-bottom-color: #C9882A;
}

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

.media-item {
    background: #141c2e;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: scale(1.05);
}

.media-thumbnail {
    width: 100%;
    height: 200px;
    background: #1B2A5C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9882A;
    font-size: 3rem;
}

.media-info {
    padding: 20px;
}

.media-info h4 {
    color: #fff;
    margin-bottom: 10px;
}

.media-info p {
    color: #999;
    font-size: 0.9rem;
}

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

.contact-form {
    background: #141c2e;
    padding: 40px;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #C9882A;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #0d1020;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #C9882A;
}

.contact-info h3 {
    color: #C9882A;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #C9882A;
    font-size: 1.3rem;
    margin-top: 3px;
    min-width: 20px;
}

/* Footer */
.site-footer {
    background: #0a0d1a;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #C9882A;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: #999;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #C9882A;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social a {
    color: #666;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #C9882A;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
    
    .hero {
        background: url('images/hero-fallback.jpg') center/cover no-repeat;
        height: 80vh;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .latest-release {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .event-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content-section {
        padding: 60px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
    
    .hero {
        background: url('images/hero-fallback.jpg') center/cover no-repeat;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-press-credit {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
}

.hero-press-credit strong {
    color: #C9882A;
}

/* Member card image fix */
.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Event card past label */
.event-card .btn-secondary[style*="opacity"] {
    pointer-events: none;
}

/* Utility Classes */
.site-main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.gold { color: #C9882A; }
.white { color: #fff; }
.gray { color: #999; }

.hidden { display: none; }
.visible { display: block; }

/* WooCommerce Compatibility */
.woocommerce .button {
    background: #C9882A;
    color: #000;
}

.woocommerce .button:hover {
    background: #A67020;
}