/* Liquor Store Landing Page - Vendiloop */

/* ===== CSS Variables ===== */
:root {
  /* Brand Colors - Warm, sophisticated palette */
  --primary: #1a1a2e;           /* Deep navy - trust, professionalism */
  --primary-light: #2d2d44;
  --accent: #c9a227;            /* Gold - premium, quality */
  --accent-hover: #d4b234;
  --secondary: #4a4a5a;         /* Muted gray */
  --bg-light: #faf9f7;          /* Warm white */
  --bg-white: #ffffff;
  --bg-dark: #0f0f1a;
  --text: #1a1a2e;
  --text-light: #6b6b7b;
  --text-muted: #9b9bab;
  --border: #e8e6e1;
  --success: #2a9d5c;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 5rem 0;
  --container-width: 1200px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: var(--bg-light);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 32px;
  width: auto;
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  background: var(--primary);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--primary-light);
}

/* ===== Hero Section ===== */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

/* Hero Visual - Device Mockups */
.hero-visual {
  position: relative;
}

.device-mockup {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.device {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.device-screen {
  background: var(--primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.device.phone .device-screen {
  width: 80px;
  height: 160px;
  border-radius: 12px;
}

.device.tv .device-screen {
  width: 180px;
  height: 110px;
}

.device.laptop .device-screen {
  width: 140px;
  height: 90px;
  border-radius: 6px 6px 0 0;
}

.device.laptop::after {
  content: '';
  width: 160px;
  height: 8px;
  background: var(--secondary);
  border-radius: 0 0 4px 4px;
}

.device-label {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mock content inside devices */
.mock-post {
  padding: 8px;
}

.mock-post-header {
  width: 40px;
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  margin-bottom: 6px;
}

.mock-post-image {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, var(--accent) 0%, #8b6914 100%);
  border-radius: 4px;
  margin-bottom: 6px;
}

.mock-post-text {
  width: 80%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

.mock-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  text-align: center;
  padding: 1rem;
}

.mock-promo-text {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.mock-promo-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.mock-website {
  padding: 6px;
}

.mock-nav {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-bottom: 6px;
}

.mock-hero {
  width: 100%;
  height: 30px;
  background: linear-gradient(135deg, var(--accent) 0%, #8b6914 100%);
  border-radius: 3px;
  margin-bottom: 6px;
}

.mock-cards {
  display: flex;
  gap: 4px;
}

.mock-cards::before,
.mock-cards::after {
  content: '';
  flex: 1;
  height: 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.flow-lines {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  pointer-events: none;
  opacity: 0.15;
}

.flow-svg {
  width: 100%;
  height: auto;
  color: var(--primary);
}

/* ===== Pain Points Section ===== */
.pain-points {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pain-card {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pain-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.pain-card h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.pain-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== Solution Section ===== */
.solution {
  padding: var(--section-padding);
  background: var(--primary);
  color: white;
}

.solution .section-title {
  color: white;
}

.solution .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-content h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ===== Features Section ===== */
.features {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-group {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-icon.social {
  background: linear-gradient(135deg, #E1306C 0%, #833AB4 100%);
  color: white;
}

.feature-icon.tv {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  color: var(--accent);
}

.feature-icon.web {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
}

.feature-header h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list strong {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.feature-list span {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ===== Examples Section ===== */
.examples {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.example-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
}

.example-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.example-card.event { border-left-color: #22c55e; }
.example-card.event .example-tag { background: #22c55e; }

.example-card.arrival { border-left-color: #3b82f6; }
.example-card.arrival .example-tag { background: #3b82f6; }

.example-card.seasonal { border-left-color: #f59e0b; }
.example-card.seasonal .example-tag { background: #f59e0b; color: var(--primary); }

.example-card.weather { border-left-color: #8b5cf6; }
.example-card.weather .example-tag { background: #8b5cf6; }

.example-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1rem;
}

.example-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.example-channel {
  font-weight: 600;
  color: var(--text-light);
}

/* ===== Process Section ===== */
.process {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-marker {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-marker span {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.process-content h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.time-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background: var(--success);
  color: white;
  border-radius: 4px;
}

.optional-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background: var(--text-muted);
  color: white;
  border-radius: 4px;
}

.process-content ul {
  list-style: none;
}

.process-content li {
  padding: 0.375rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.25rem;
}

.process-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== Pricing Section ===== */
.pricing {
  padding: var(--section-padding);
  background: var(--primary);
  color: white;
}

.pricing .section-title {
  color: white;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.pricing-highlight {
  margin-bottom: 1.5rem;
}

.pricing-from {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-period {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.pricing-note {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

/* ===== Demo/Lead Form Section ===== */
.demo {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.demo-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.demo-info > p {
  color: var(--text-light);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.demo-benefits {
  list-style: none;
}

.demo-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  color: var(--text);
}

.demo-benefits svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

.demo-form {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 16px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0;
  background: var(--bg-dark);
  color: white;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo .logo-img {
  height: 28px;
  width: auto;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .demo-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-padding: 3.5rem 0;
  }

  .nav-container {
    height: 60px;
  }

  .hero {
    padding: 6rem 0 3rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.0625rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .device-mockup {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
  }

  .device.tv .device-screen {
    width: 140px;
    height: 85px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    padding: 1.5rem;
  }

  .examples-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    gap: 1rem;
  }

  .process-marker {
    width: 40px;
    height: 40px;
  }

  .process-timeline::before {
    left: 19px;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-amount {
    font-size: 2.5rem;
  }

  .demo-form {
    padding: 1.5rem;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Small phones */
@media (max-width: 375px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}
