/*
Theme Name: Leviathan Design
Theme URI: https://leviathandesign.com
Description: Custom minimal theme for Leviathan Design LLC â€” 3D printed models
Version: 1.0.0
Author: Leviathan Design LLC
*/

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

:root {
  --blue: #2979CC;
  --blue-light: #5BA4F5;
  --blue-dark: #1A5BA8;
  --dark: #1A1A1A;
  --gray: #555555;
  --light-gray: #f5f5f5;
  --white: #FFFFFF;
  --radius: 6px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

/* â”€â”€ HEADER â”€â”€ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.site-nav a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.95rem;
  margin-left: 2rem;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--blue); }

/* â”€â”€ HERO â”€â”€ */
.hero {
  background: var(--dark);
  background-image: radial-gradient(ellipse at 60% 50%, rgba(41,121,204,0.25) 0%, transparent 70%);
  color: var(--white);
  text-align: center;
  padding: 7rem 2rem 6rem;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(41,121,204,0.4));
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero h1 span { color: var(--blue-light); }

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* â”€â”€ BUTTONS â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-ebay     { background: #E53238; color: #fff; }
.btn-etsy     { background: #F56400; color: #fff; }
.btn-shopify  { background: #5E8E3E; color: #fff; }
.btn-blue     { background: var(--blue); color: #fff; }

/* â”€â”€ STORES SECTION â”€â”€ */
.stores {
  padding: 5rem 2rem;
  background: var(--white);
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.section-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.store-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: block;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.store-card.ebay    { border-top: 4px solid #E53238; }
.store-card.etsy    { border-top: 4px solid #F56400; }
.store-card.shopify { border-top: 4px solid #5E8E3E; }

.store-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.store-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.store-card p  { color: var(--gray); font-size: 0.95rem; }

/* â”€â”€ ABOUT â”€â”€ */
.about {
  background: var(--light-gray);
  padding: 5rem 2rem;
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-inner h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.about-inner p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.9;
}

/* â”€â”€ FOOTER â”€â”€ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.9rem;
}

.footer-links { margin-bottom: 0.75rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin: 0 0.75rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue-light); }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 600px) {
  .site-header { padding: 0 1rem; }
  .hero { padding: 5rem 1.5rem 4rem; }
  .stores, .about { padding: 3rem 1.5rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.95rem; }
  .site-nav a { margin-left: 1rem; font-size: 0.85rem; }
}
