/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100..800&display=swap');

:root {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-dark: #000000;  
  --color-trust: #FE8329;
  --color-accent: #00487D;
  --color-accent-light: #0095ff1e;  
  --color-accent-light2: #0095ff48;    
  --color-light: #d6d9dd;  
  --font-family: 'Raleway', serif;
}

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

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(5px);
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid var(--color-light) 1px;
  position: fixed;
  width: 100%;
}

.logo {
  max-width: 44px;
}

#home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: 75px auto 0;
}

.pill {
  border: solid var(--color-light) 2px;
  border-radius: 28px;
  padding: 4px 16px;
  background-color: var(--color-accent-light);
  font-size: .85rem;
  color: var(--color-accent);
  font-weight: bolder;
}

.qr-icon {
  width: 65%;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.4rem, 6vw, 2.4rem);
  color: var(--color-text);
  margin: .45rem 0;
}

#home p {
  font-size: clamp(1rem, 3.8vw, 1.15rem);
  max-width: 640px;
  margin: .45rem 0;
}

.btn-container {
  margin: .65rem 0;
}

.btn-container * {
  margin-top: .45rem;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0px 4px 12px 2px var(--color-accent-light2);
}

.btn-secondary {
  background: var(--color-light);
  color: var(--color-text);
  padding: 0.75rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}



.marquee {
  width: 100%;
  overflow: hidden;
  background: #fafafa;
  padding: 1.5rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  animation: marquee 35s linear infinite;
}

.snap img {
  width: clamp(70px, 18vw, 100px);
  height: clamp(70px, 18vw, 100px);
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-section {
  padding: 3rem 1rem;
  background: #f4f4f4;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

footer {
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.lang-select {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--color-accent);
  background: #fff;
  color: var(--color-accent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 480px) {
  header { gap: 0.5rem; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}

