/* Epicuratorial Main Site Styles - Dark Ethereal Glass Design */

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

:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Gather & Go Colors */
    --gather-navy: #074961;
    --gather-turquoise: #0A909C;
    --gather-orange: #F6921A;
    
    /* Happy Survival Colors (placeholder - adjust as needed) */
    --happy-primary: #8B4513;
    --happy-accent: #D2691E;
    
    /* Brother's Cure Colors - dark purple + violet */
    --brothers-primary: #2C3E50;
    --brothers-accent: #3498DB;
    --brothers-purple: #4B0082;
    --brothers-violet: #8B5CF6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 3rem;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container .logo {
    height: 140px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.header-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-secondary);
    transform: translateX(-3px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

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

/* Main Content */
.main-content {
    min-height: calc(100vh - 100px);
}

/* Brands Section */
.brands-section {
    padding: 6rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 4rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* Brand Bar */
.brand-bar {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 4rem;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.4s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.brand-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    transition: opacity 0.4s ease;
    z-index: 1;
}

.brand-bar:hover::before {
    opacity: 0.3;
}

.brand-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.brand-bar:hover .brand-image-overlay {
    opacity: 0.8;
}

.brand-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
}

/* Classifier bubble above each brand name */
.brand-classifier {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gather-go-classifier { color: var(--gather-turquoise); }
.happy-survival-classifier { color: var(--happy-accent); }
.brothers-cure-classifier { color: var(--brothers-accent); }

.stealth-label {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.95;
}

.stealth-bar .stealth-label.brothers-cure-stealth-label {
    color: var(--brothers-violet);
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
}

.brand-name {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

.brand-bar:hover .brand-name {
    transform: scale(1.05);
}

/* Gather & Go Brand Styling - cream background, no logo */
.gather-go-bar {
    background-color: #F5F0EA;
    background-image: none;
}

.gather-go-bar .brand-image-overlay {
    display: none;
}

.gather-go-bar::before {
    background: transparent;
}

.gather-go-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gather-go-name .gather {
    color: var(--gather-navy);
    text-shadow: 0 0 20px rgba(7, 73, 97, 0.8);
}

.gather-go-name .and {
    color: var(--gather-turquoise);
    text-shadow: 0 0 20px rgba(10, 144, 156, 0.8);
}

.gather-go-name .go {
    color: var(--gather-orange);
    text-shadow: 0 0 20px rgba(246, 146, 26, 0.8);
}

/* Stealth bars - tinted bar, no background image */
.stealth-bar {
    background-image: none;
    background-color: var(--bg-secondary);
}

.stealth-bar::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.stealth-bar .brand-image-overlay {
    display: none;
}

/* Happy Survival Brand Styling - tinted bar */
.happy-survival-bar {
    border: 1px solid rgba(210, 105, 30, 0.3);
    box-shadow: inset 0 0 0 1px rgba(210, 105, 30, 0.15);
}

.happy-survival-bar::before {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.4) 0%, rgba(210, 105, 30, 0.2) 100%);
}

.happy-survival-name {
    color: var(--happy-accent);
    text-shadow: 0 0 20px rgba(210, 105, 30, 0.8);
}

/* Brother's Cure Brand Styling - dark purple + violet tinted bar */
.brothers-cure-bar {
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: inset 0 0 0 1px rgba(75, 0, 130, 0.2);
}

.brothers-cure-bar::before {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.5) 0%, rgba(139, 92, 246, 0.3) 100%);
}

.brothers-cure-classifier {
    color: var(--brothers-violet);
    text-shadow: 0 0 16px rgba(139, 92, 246, 0.7);
}

/* Mission Section */
.mission-section {
    padding: 6rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.mission-content {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 4rem;
    text-align: center;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    padding: 6rem 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 4rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }
    
    .logo-container .logo {
        height: 90px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .brand-bar {
        height: 250px;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .mission-content,
    .contact-content {
        padding: 2.5rem;
    }
    
    .mission-title,
    .contact-title {
        font-size: 2rem;
    }
}
