/* Reset & base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    color: #000;
    background: #f8f8f8;
}
a { color: #c00; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.site-header {
    background: #222;
    color: white;
    padding: 1rem 0;
}
.logo { font-size: 1.8rem; margin: 0; }
.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 0.8rem;
}
.main-nav a { color: white; font-weight: bold; }

/* Hero */
.hero {
    text-align: center;
    background: #ccc;
    padding: 2rem 1rem;
}
.hero-logo { max-width: 100%; height: auto; margin-bottom: 1rem; }
.hero h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.announcement { font-size: 1.3rem; color: #c00; font-weight: bold; }

/* Highlights */
.highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}
.flag-column { text-align: center; }
.usa-flag { max-width: 120px; height: auto; }
.features ul { list-style: none; }
.features li { margin-bottom: 0.8rem; font-size: 1.1rem; }
.star { color: #c00; font-size: 1.4rem; margin-right: 0.4rem; }

/* Main content */
.about {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.about h2 { margin: 2rem 0 1rem; }
.feature-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
}

/* Footer */
.site-footer {
    background: #222;
    color: white;
    padding: 3rem 0 1.5rem;
    text-align: center;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.mascot img { max-width: 100px; }
.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 320px;
    margin: 0 auto;
}
.newsletter input, .newsletter button {
    padding: 0.7rem;
    font-size: 1rem;
}
.newsletter button {
    background: #c00;
    color: white;
    border: none;
    cursor: pointer;
}
.bottom-nav { margin: 1.5rem 0; }
.bottom-nav a { color: #fff; margin: 0 0.5rem; }
.copyright { font-size: 0.9rem; opacity: 0.8; }

/* Desktop / larger screens */
@media (min-width: 768px) {
    .main-nav ul { justify-content: flex-end; margin-top: 0; }
    .highlights { flex-direction: row; align-items: flex-start; }
    .flag-column { flex: 0 0 140px; }
    .features { flex: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; text-align: left; }
    .newsletter form { max-width: 100%; }
    .hero h1 { font-size: 3.2rem; }
}
/* Aggressive Dark Mode + Skate Vibe */
:root {
--bg-color: #f8f8f8;
--text-color: #000;
--link-color: #c00;
--link-hover: #a00;
--header-bg: #1a1a1a;
--header-text: #fff;
--card-bg: #ffffff;
--shadow: 0 4px 12px rgba(0,0,0,0.15);
--accent-red: #d00;
--accent-red-dark: #ff3333;
}

.dark-mode {
--bg-color: #0f0f0f;
--text-color: #f0f0f0;
--link-color: #ff4444;
--link-hover: #ff7777;
--header-bg: #000;
--header-text: #fff;
--card-bg: #181818;
--shadow: 0 6px 20px rgba(0,0,0,0.7);
--accent-red: #ff1a1a;
--accent-red-dark: #ff5555;
}

body {
background: var(--bg-color);
color: var(--text-color);
}

a {
color: var(--link-color);
}
a:hover, a:focus {
color: var(--link-hover);
text-decoration: underline;
}

/* Header & Footer */
.site-header {
background: var(--header-bg);
border-bottom: 3px solid var(--accent-red);
}
.site-footer {
background: var(--header-bg);
border-top: 3px solid var(--accent-red);
}

/* Card / About section gets more aggressive shadow in dark mode */
.main-content .about {
background: var(--card-bg);
box-shadow: var(--shadow);
border-left: 4px solid var(--accent-red);
border-radius: 4px;
}

/* Theme toggle – small, punchy, skate sticker style */
.theme-toggle {
background: var(--accent-red);
color: white;
border: none;
padding: 0.6rem 1.1rem;
border-radius: 50px;
cursor: pointer;
font-weight: bold;
font-size: 0.95rem;
display: inline-flex;
align-items: center;
gap: 0.6rem;
transition: all 0.25s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.theme-toggle:hover {
background: var(--accent-red-dark);
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(208,0,0,0.4);
}

/* Tiny board emoji styling */
.theme-toggle .icon-light,
.theme-toggle .icon-dark {
font-size: 1.3rem; /* small but visible */
line-height: 1;
}

.dark-mode .theme-toggle {
background: #ff1a1a;
}
.dark-mode .theme-toggle:hover {
background: #ff5555;
}

/* Make stars aggressive too */
.star {
color: var(--accent-red);
font-size: 1.5rem;
margin-right: 0.5rem;
}

/* Optional: subtle grain/noise background in dark mode for street feel */
.dark-mode body {
background-image:
radial-gradient(circle at 10% 20%, rgba(255,255,255,0.03) 0%, transparent 5%),
radial-gradient(circle at 90% 80%, rgba(255,255,255,0.02) 0%, transparent 6%);
background-size: 120px 120px;
}

/* Catalog-specific tweaks */
.hero-img {
max-width: 100%;
height: auto;
border-radius: 8px;
margin: 1rem 0;
}

.prices {
margin: 2rem 0;
}
.price-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
}
.price-card {
background: var(--card-bg);
padding: 1.5rem;
border-radius: 8px;
border-left: 4px solid var(--accent-red);
box-shadow: var(--shadow);
}
.price-card h3 {
margin-bottom: 1rem;
color: var(--accent-red);
}
.price-card ul {
list-style: none;
padding-left: 0;
}
.price-card li {
margin-bottom: 0.5rem;
font-size: 1.1rem;
}
.note {
font-style: italic;
margin-top: 1.5rem;
text-align: center;
}

.deck-shapes {
margin: 3rem 0;
}
.shapes-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 1.5rem;
text-align: center;
}
.shapes-grid a {
text-decoration: none;
color: var(--text-color);
}
.shapes-grid img {
width: 100%;
height: auto;
border-radius: 6px;
box-shadow: 0 2px 8px var(--shadow);
transition: transform 0.2s;
}
.shapes-grid a:hover img {
transform: scale(1.05);
}
.shapes-grid p {
margin-top: 0.5rem;
font-weight: bold;
}
.center { text-align: center; }

