body {
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  padding-top: 40px; }
  @media (min-width: 50em) {
    body {
      padding-top: 70px; } }

* {
  box-sizing: border-box;
  max-width: 100%; }

body, html {
  min-width: 320px;
  width: 100%;
  max-width: none;
  overflow-x: auto; }

a {
  color: inherit;
  text-decoration: none; }
  a:hover {
    color: #ec008c; }

#logo {
  padding-bottom: 40px; }
  #logo img {
    max-width: 530px;
    width: 80%; }
  @media (min-width: 37.5em) {
    #logo {
      padding-bottom: 60px; } }

h2 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 100px; }
  @media (min-width: 25em) {
    h2 {
      font-size: 24px; } }
  @media (min-width: 37.5em) {
    h2 {
      font-size: 28px;
      margin-bottom: 150px; } }

.clear {
  clear: both; }

#content {
  text-align: center; }

input[type=email], button {
  height: 50px;
  font-weight: bold;
  font-size: 12px;
  border: none; }
  input[type=email][disabled], button[disabled] {
    opacity: .5; }

input[type=email] {
  width: 100%;
  background: white;
  padding: 8px 10px;
  margin-bottom: 10px;
  border: 3px solid black;
  border-right-width: 0; }

::-webkit-input-placeholder {
  color: #ec008c;
  text-transform: uppercase; }

:-ms-input-placeholder {
  color: #ec008c;
  text-transform: uppercase; }

::placeholder {
  color: #ec008c;
  text-transform: uppercase; }

textarea::-webkit-input-placeholder {
  color: #ec008c;
  text-transform: uppercase; }

textarea:-ms-input-placeholder {
  color: #ec008c;
  text-transform: uppercase; }

textarea::placeholder {
  color: #ec008c; }

#newsletter {
  position: relative; }
  #newsletter h3 {
    font-size: 13px;
    font-weight: bold;
    margin-top: 0;
    text-transform: uppercase; }
  #newsletter .form-group, #newsletter .success {
    transition: opacity .3s linear; }
  #newsletter .form-group {
    opacity: 1;
    background: white;
    margin: 0 auto;
    padding: 2px;
    text-align: left;
    display: table;
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 350px; }
    #newsletter .form-group input {
      padding: 5px 15px;
      background: transparent;
      float: left;
      display: table-cell;
      margin: 0;
      color: black;
      font-size: 13px;
      font-weight: bold; }
    #newsletter .form-group span {
      width: 1%;
      position: relative;
      font-size: 0;
      white-space: nowrap;
      display: table-cell; }
      #newsletter .form-group span button {
        border: none;
        padding: 10px;
        background: black;
        float: right;
        color: white;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: bold;
        width: 100%; }
        #newsletter .form-group span button:hover {
          color: #ec008c; }
  #newsletter .success {
    opacity: 0;
    position: absolute;
    z-index: 1;
    bottom: 10px;
    left: 0;
    top: 50px;
    width: 100%;
    text-align: center; }
    #newsletter .success > p {
      width: 300px;
      display: inline-block;
      max-width: 95%;
      background: #ec008c;
      color: white;
      font-size: 16px;
      padding: 10px;
      border-radius: 10px; }
  #newsletter.sent .form-group {
    opacity: 0; }
  #newsletter.sent .success {
    opacity: 1; }
  #newsletter img {
    display: none; }
  @media (min-width: 37.5em) {
    #newsletter {
      width: 420px;
      margin-left: auto;
      margin-right: auto;
      max-width: 95%;
      text-align: left; }
      #newsletter h3 {
        font-size: 18px; }
      #newsletter img {
        display: block;
        position: absolute;
        left: -120px;
        bottom: -55px;
        height: 160px; }
      #newsletter .form-group button {
        padding: 10px 20px;
        font-size: 13px; } }

/* Footer layout - centered on all screens */
footer {
  display: flex;
  flex-direction: column; /* stack everything vertically */
  align-items: center;    /* horizontal centering */
  justify-content: center;
  font-size: 13px;
  font-weight: 300;
  margin-top: 50px;
  padding: 50px 20px 20px;
  text-align: center;
}

footer > span {
  display: block;
  padding-bottom: 20px;
  font-weight: bold;
  font-size: 14px;
  max-width: 600px;       /* optional, limits text width */
}

footer .contact {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;  /* stack email + icons vertically */
  align-items: center;
}

footer .contact .email {
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}

footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

footer .legal {
  font-size: 12px;
  font-weight: bold;
  margin-top: 30px;
}

/* Social icons */
.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 28px;
  color: black;
  border-radius: 50%;
  background-color: #f0f0f0;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: white;
}

.social-link[href*="twitter"]:hover {
  background-color: #1da1f2;
}

.social-link[href*="facebook"]:hover {
  background-color: #4267B2;
}

