/* parception.se — site-specific styles */

:root {
  --magenta: #FF1B89;
  --white: #FDFDFD;
  --black: #1C1C1E;
  --grey: #BFBFBF;
  --blue: #3DF0FF;
  --color-accent: #FF1B89;
}

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&family=Inter:wght@400;600&display=swap');

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

html, body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
}

header {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  height: 80px;
}

header nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

header nav a {
  text-decoration: none;
  color: var(--black);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: var(--magenta);
}

main {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 3rem;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--black);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1rem;
  color: var(--magenta);
}

h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--black);
}

p {
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.8;
}

p.tagline {
  font-size: 1.25rem;
  color: var(--grey);
  margin-bottom: 2rem;
}

.cta-btn, .main-btn {
  background-color: var(--magenta);
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}

.main-btn {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

.cta-btn:hover, .main-btn:hover {
  background-color: #e01777;
}

.section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 2rem;
  text-align: center;
  width: 100%;
}

.section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.testimonial {
  font-style: italic;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.person {
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 2rem;
}

.product-card {
  background-color: #FFE5F1;
  padding: 2rem;
  border-radius: 16px;
  width: 320px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 27, 137, 0.2);
}

.product-card h3 {
  margin-bottom: 0.5rem;
}

.real-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--magenta);
  margin-bottom: 1rem;
  display: block;
}

.product-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.product-card a {
  color: var(--magenta);
  font-weight: 600;
  text-decoration: none;
}

.product-card a:hover {
  text-decoration: underline;
}

.vibecode-section {
  background: linear-gradient(135deg, #1C1C1E 0%, #2a2a2e 100%);
  color: white;
  padding: 4rem 2rem;
  margin: 4rem 0;
  width: 100%;
}

.vibecode-section h2 {
  color: var(--magenta);
}

.vibecode-section p {
  color: #ccc;
}

.timeline {
  position: relative;
  margin: 4rem auto;
  padding-left: 20px;
  border-left: 2px solid var(--grey);
  max-width: 600px;
}

.timeline-event {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1rem;
}

.timeline-event .dot {
  position: absolute;
  left: -14px;
  top: 0.3rem;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, var(--magenta) 40%, var(--white) 100%);
  border: 2px solid var(--magenta);
  box-shadow: 0 0 8px rgba(255, 27, 137, 0.4);
  border-radius: 50%;
}

.timeline-event strong {
  color: var(--magenta);
}

.fade-in {
  opacity: 1;
  transition: all 0.6s ease-out;
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  text-align: center;
  text-decoration: none;
}

.portfolio-item img {
  height: 60px;
  margin-bottom: 0.5rem;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.portfolio-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.portfolio-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--grey);
}

.powered-by {
  background: #f8f8f8;
  padding: 3rem 2rem;
  margin-top: 4rem;
  width: 100%;
}

.hero-image {
  position: relative;
  height: 60vh;
  overflow: hidden;
  margin-bottom: 1rem;
  width: 100%;
}

.hero-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--grey);
  padding: 2rem;
  width: 100%;
  margin-top: 4rem;
}

footer a {
  color: var(--magenta);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
  }

  header nav {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    justify-content: center;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .product-card {
    width: 100%;
    max-width: 320px;
  }

  .hero-image {
    height: 50vh;
  }
}
