/*
 Theme Name:   hello-elementor-child
 Template:     hello-elementor
 Version:      1.0.0
*/

:root {
  --font-raleway: 'Raleway', sans-serif;
  --font-poppins: 'Poppins', sans-serif;

  --color-black: #000;
  --color-bg: #fff;

  --spacing-sl: 2px;
  --spacing-md: 16px;
  --spacing-lg: 40px;
}

body {
  font-family: var(--font-poppins);
  background-color: var(--color-bg);
  color: var(--color-black);
  margin: 0;
  padding: 0;
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-raleway);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sl);
  text-align: center;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.h1--small {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sl);
}

.text--left { text-align: left; }
.weight--bold { font-weight: 700; }
.weight--extrabold { font-weight: 800; }

.mt-md { margin-top: var(--spacing-md); }
.mb-md { margin-bottom: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.pt-md { padding-top: var(--spacing-md); }
.pb-md { padding-bottom: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pb-lg { padding-bottom: var(--spacing-lg); }

.social-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.social-icons a {
  color: #ff06b5;
  font-size: 30px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .social-icons {
    gap: 28px;
  }

  .social-icons a {
    font-size: 22px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.125rem; }
  h5 { font-size: 1rem; }
  h6 { font-size: 0.875rem; }

  .h1--small {
    font-size: 2rem;
    margin-bottom: var(--spacing-sl);
  }
}