/* Shared styles for SoundBooth Bot website */

:root {
    --primary: #00FFD2;
    --primary-dark: #00CCA8;
    --bg: #0A0A0E;
    --bg-surface: #12121A;
    --bg-elevated: #1A1A24;
    --text: #FFFFFF;
    --text-muted: #6B6B7B;
    --border: #1E1E28;
    --green: #22C55E;
    --amber: #F59E0B;
    --purple: #8B5CF6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(10, 10, 14, 0.95) 0%, transparent 100%);
    line-height: 1;
}

@media (min-width: 769px) {
    nav {
        padding: 1.5rem 4rem;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    nav .btn {
        justify-self: end;
    }
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 32px;
    width: auto;
}

@media (min-width: 769px) {
    .logo {
        height: 40px;
    }
}

.nav-links {
    display: none;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

@media (min-width: 769px) {
    .nav-links {
        display: flex;
        align-items: center;
    }
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-right: -8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

.desktop-only {
    display: none;
}

@media (min-width: 769px) {
    .desktop-only {
        display: inline-flex;
    }
}

/* Buttons */
.btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.875rem 1.5rem;
    min-height: 44px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 769px) {
    .btn {
        font-size: 0.85rem;
        padding: 1rem 2rem;
        min-height: auto;
    }
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 255, 210, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--text);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--text-muted);
}

/* Footer */
footer {
    padding: 3rem 1.5rem 2rem;
    border-top: 1px solid var(--border);
}

@media (min-width: 769px) {
    footer {
        padding: 4rem;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 769px) {
    .footer-brand {
        flex-direction: row;
    }
}

.footer-brand .logo {
    height: 28px;
}

@media (min-width: 769px) {
    .footer-brand .logo {
        height: 32px;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 769px) {
    .footer-links {
        gap: 3rem;
    }
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    padding: 0.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

@media (min-width: 769px) {
    .footer-links a {
        padding: 0;
        min-height: auto;
    }
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}
