* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "basic-sans", sans-serif;
}

h1, h2, h3, h4, h5 {
  font-family: "realistnarrow", sans-serif;
}

body {
  color: var(--body);
  line-height: 1.6;
  font-size: 1.1rem;
}

h1, h2 {
    margin-bottom: 24px;
}

.w600 {
    font-weight: 600;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

:root {
  --accent: #F23E4D;
  --secondary:#154C41;
  --white:#ffffff;
  --light-grey:#f5f5f5;
  --body:#01140E;
}

.btn{
    display: inline-flex;
    align-items: center;
    column-gap: 0.5em;
    padding: 6px 6px 6px 20px;
    border-radius: 50px;
    text-decoration: none;
}

.btn svg{
  width:30px;
  height:30px;
  display:block;
}

.btn-primary{
    border: 1px solid var(--accent);
    background-color: var(--accent);
    color: var(--white);
}
.btn-secondary{
    border: 1px solid var(--secondary);
    background-color: var(--white);
    color: var(--secondary);
}


/* TOPBAR */
.topbar {
  background: var(--accent);
  color: var(--white);
  padding: 10px 0;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
  margin-left: 10px;
}

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.store-link svg {
    width: 24px;
  height: 24px;
  display: block;
  fill: var(--white);
  flex-shrink: 0;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 0;
}

.hero .logo {
  max-width: 250px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 32px;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 16px;
}

.highlight {
  color: var(--accent);
  font-weight: bold;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* ABOUT */
.about {
  padding: 80px 0;
  background: var(--light-grey);
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}


.stats {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}

.stat {
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  min-width: 120px;
}
.stat .h4-like{
    font-size: 1.5rem;
    font-family: "realistnarrow", sans-serif;
}

.stat span {
  display: block;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* NEWSLETTER */
.newsletter {
  padding: 80px 0;
  text-align: center;
}

.form {
    margin:32px auto 0;
    width: 600px;
    max-width: 100%;
}

/* SOCIAL */
.social {
  padding: 80px 0;
  background: var(--light-grey);
  text-align: center;
}

.social .btn {
    margin-top: 32px;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: var(--white);
}

.social .social-icon svg {
  fill: var(--secondary);
}

.social .social-icon {
justify-content: center;
margin-top: 32px;
}

.social .social-icon svg{
  width: 32px;
  height: 32px;
}

/* FOOTER */
.footer {
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  padding: 30px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .stats {
    flex-direction: column;
  }
}
