/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #ffffff;
  --foreground: #171717;
  --font-sans: Arial, Helvetica, sans-serif;
  --font-mono: 'Courier New', monospace;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #1d4ed8;
}

/* Navigation */
nav {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2563eb;
}

.logo .llc {
  margin-left: 0.5rem;
  font-size: 1rem;
  color: #6b7280;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #374151;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #2563eb;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #374151;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 1rem 0;
}

.mobile-nav.show {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-links a {
  display: block;
  padding: 0.5rem 0;
  color: #374151;
  transition: color 0.2s;
}

.mobile-nav-links a:hover {
  color: #2563eb;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e293b 0%, #1e40af 50%, #1e293b 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDEzNGg1MHYxSDM2di0xek0xMzYgMzRoMXY1MGgtMVYzNHoiLz48L2c+PC9nPjwvc3ZnPg==');
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero .divider {
  width: 5rem;
  height: 0.25rem;
  background: #60a5fa;
  margin: 2rem auto;
}

.hero .subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
  font-weight: 300;
}

.hero .description {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: #cbd5e1;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background: white;
  color: #1e293b;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #f3f4f6;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: white;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.services .description {
  text-align: center;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  border: 1px solid #e5e7eb;
  padding: 2rem;
  border-radius: 0.5rem;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.service-card p {
  color: #6b7280;
}

/* Info Section */
.info-section {
  background: #f9fafb;
  padding: 5rem 0;
}

.info-content {
  max-width: 768px;
  margin: 0 auto;
}

.info-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.info-content p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: #1e293b;
  color: white;
  padding: 4rem 0;
  border-top: 1px solid #334155;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #cbd5e1;
}

/* Footer */
footer {
  background: #111827;
  color: white;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3, .footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section h3 {
  font-size: 1.25rem;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding: 2rem 1rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.75rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .services h2 {
    font-size: 3rem;
  }

  .cta-section h2 {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .services {
    padding: 3rem 0;
  }

  .info-section {
    padding: 3rem 0;
  }

  .cta-section {
    padding: 3rem 0;
  }
}

/* About Page */
.about-hero {
  background: white;
  padding: 4rem 0;
}

.about-hero h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-section {
  margin-bottom: 2rem;
}

.about-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.about-section p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.about-list {
  list-style: disc;
  padding-left: 1.5rem;
  color: #6b7280;
}

.about-list li {
  margin-bottom: 0.5rem;
}

.company-info {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.company-info p {
  margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-hero {
  background: white;
  padding: 4rem 0;
}

.contact-hero h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.contact-info p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-details .icon {
  color: #2563eb;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.contact-details h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1f2937;
}

.contact-details p {
  color: #6b7280;
  margin: 0;
}

.contact-form {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 0.5rem;
}

.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #374151;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.btn-submit {
  background: #2563eb;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s;
}

.btn-submit:hover {
  background: #1d4ed8;
}

.contact-additional {
  background: #dbeafe;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.contact-additional h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.contact-additional p {
  color: #374151;
  margin-bottom: 0.75rem;
}

/* Stores Page */
.stores-hero {
  background: white;
  padding: 4rem 0;
}

.stores-hero h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.stores-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.stores-intro {
  text-align: center;
  color: #6b7280;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.store-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.store-image {
  width: 100%;
  height: 200px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 1rem;
}

.store-content {
  padding: 1.5rem;
}

.store-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.store-content p {
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Legal Pages */
.legal-hero {
  background: white;
  padding: 4rem 0;
}

.legal-hero h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.legal-section p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.legal-list {
  list-style: disc;
  padding-left: 1.5rem;
  color: #6b7280;
}

.legal-list li {
  margin-bottom: 0.5rem;
}

/* Stores Page Specific Styles */
.alert-box {
  background: #dbeafe;
  border-left: 4px solid #3b82f6;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.empty-state {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.empty-state-icon {
  width: 4rem;
  height: 4rem;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #9ca3af;
}

.empty-state h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.empty-state p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.info-box {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 3rem;
}

.info-box h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.info-box p {
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Utilities */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
