/* styles.css for SleeperBuilds.com - Tech meets garage workshop */
:root {
    --primary: #181c20;
    --accent: #00e0b8;
    --text: #f4f4f4;
    --muted: #b0b0b0;
    --bg: #23272b;
    --card: #23282f;
    --shadow: 0 4px 24px rgba(0,0,0,0.12);
    --font-main: 'JetBrains Mono', 'Fira Mono', 'Consolas', monospace;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    background: var(--primary);
    box-shadow: var(--shadow);
    padding: 1.2rem 0 0.7rem 0;
    text-align: center;
    border-bottom: 2px dashed var(--accent);
}

h1 {
    font-size: 2.1rem;
    letter-spacing: 2px;
    margin: 0 0 0.3rem 0;
    color: var(--accent);
    font-family: var(--font-main);
}

.tagline {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 0;
    font-family: var(--font-main);
}

.intro {
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin: 2rem 0;
    padding: 2rem 1.5rem;
    text-align: center;
    border-left: 4px solid var(--accent);
}

.intro h2 {
    margin-top: 0;
    color: var(--accent);
    font-size: 2rem;
}

.product-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.product-card {
    background: var(--primary);
    border-radius: 0.7rem;
    box-shadow: var(--shadow);
    padding: 1.2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 1px solid var(--card);
}

.product-img {
    width: 80px;
    height: 80px;
    background: #1a1d20;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent);
    border: 1px dashed var(--muted);
}

.product-info {
    flex: 1;
}

.product-title {
    font-size: 1.1rem;
    color: var(--text);
    margin: 0 0 0.2rem 0;
    font-family: var(--font-main);
}

.product-desc {
    color: var(--muted);
    font-size: 0.98rem;
    margin: 0;
}

.coming-soon {
    text-align: center;
    margin: 2.5rem 0 1.5rem 0;
}

.coming-soon h3 {
    color: var(--accent);
    font-size: 1.5rem;
    font-family: var(--font-main);
}

.waitlist {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0 0 0;
}

.waitlist-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.waitlist input[type="email"] {
    padding: 0.7rem 1rem;
    border-radius: 2rem;
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
    background: var(--card);
    color: var(--text);
    outline: none;
    box-shadow: var(--shadow);
}

.waitlist button {
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    border: none;
    background: var(--accent);
    color: var(--primary);
    font-weight: bold;
    font-size: 1rem;
    font-family: var(--font-main);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background 0.2s, color 0.2s;
}

.waitlist button:active {
    background: #00bfa3;
}

footer {
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
    padding: 2rem 0 1rem 0;
    border-top: 2px dashed var(--accent);
    margin-top: 2rem;
}

.social-links {
    margin-top: 1.2rem;
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    align-items: center;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: none;
    padding: 0.2rem 0.5rem 0.2rem 0.2rem;
    font-size: 1.25rem;
    font-family: var(--font-main);
    color: var(--text);
    text-decoration: none;
    gap: 0.7rem;
}
.social-icon svg {
    display: block;
    width: 38px;
    height: 38px;
}
.social-icon span {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-left: 0.2rem;
}
.social-icon.instagram:hover {
    background: rgba(0,224,184,0.08);
    transform: scale(1.08) rotate(-3deg);
}
.social-icon.youtube:hover {
    background: rgba(255,0,0,0.08);
    transform: scale(1.08) rotate(3deg);
}

/* Spotlight Build styles */
.spotlight-build {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin: 2.5rem 0 0 0;
    padding: 1.5rem 1.2rem;
    border-left: 4px solid var(--accent);
    position: relative;
    transition: box-shadow 0.2s;
}
.spotlight-img-container {
    flex-shrink: 0;
}
.spotlight-img {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 0.7rem;
    border: 1px dashed var(--muted);
    background: #181c20;
    box-shadow: var(--shadow);
}
.spotlight-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.spotlight-title {
    font-size: 1.2rem;
    color: var(--accent);
    font-family: var(--font-main);
    font-weight: bold;
    margin-bottom: 0.2rem;
}
.spec-toggle {
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1.3rem;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 0.5rem;
    box-shadow: var(--shadow);
    transition: background 0.2s, color 0.2s;
}
.spotlight-specs {
    display: none;
    background: #181c20;
    border-radius: 0.7rem;
    padding: 1rem 1.2rem;
    margin-top: 0.2rem;
    color: var(--text);
    font-size: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--card);
}
.spotlight-info.expanded .spotlight-specs {
    display: block;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }
    h1 {
        font-size: 1.3rem;
    }
    .intro h2 {
        font-size: 1.1rem;
    }
    .product-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .product-img {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .ebay-cover-img {
        width: 100%;
        height: 180px;
    }
    .ebay-cover-img-container {
        padding: 0.5rem;
        max-width: 100%;
    }
    .spotlight-build {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0.5rem;
    }
    .waitlist-form-embed iframe {
        width: 100% !important;
        min-width: 0;
        height: 340px !important;
    }
    .social-links {
        gap: 1rem;
    }
    .social-icon span {
        font-size: 1rem;
    }
}
@media (max-width: 700px) {
    .container {
        padding: 1rem;
    }
    h1 {
        font-size: 1.3rem;
    }
    .intro h2 {
        font-size: 1.1rem;
    }
    .product-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .product-img {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .ebay-cover-img {
        width: 100%;
        height: 180px;
    }
    .ebay-cover-img-container {
        padding: 0.5rem;
        max-width: 100%;
    }
    .spotlight-build {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0.5rem;
    }
    .waitlist-form-embed iframe {
        width: 100% !important;
        min-width: 0;
        height: 340px !important;
    }
    .social-links {
        gap: 1rem;
    }
    .social-icon span {
        font-size: 1rem;
    }
}

.ebay-cover-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 1.5rem 0;
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 2px dashed var(--accent);
    padding: 1.2rem;
    transition: box-shadow 0.2s;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}
.ebay-cover-img {
    width: 260px;
    height: 340px;
    object-fit: cover;
    object-position: top center;
    border-radius: 0.7rem;
    border: 2px solid var(--primary);
    background: #181c20;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ebay-cover-img:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 6px 32px rgba(0,224,184,0.10);
    border-color: var(--accent);
}
