@font-face {
  font-family: 'Recoleta-SemiBold';
  src: url('fonts/Recoleta-SemiBold.eot');
  src: url('fonts/Recoleta-SemiBold.eot?#iefix') format('embedded-opentype'),
       url('fonts/Recoleta-SemiBold.woff') format('woff'),
       url('fonts/Recoleta-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Font-face rule for Lumios Marker */
@font-face {
  font-family: 'Lumios Marker';
  src: url('fonts/LumiosMarker.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

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

/* Responsive font sizes */
html {
  font-size: 16px;
}

/* Container */
.container {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  min-width: 100vw;
  min-height: 100vh;
  /* padding: 1rem; */
  margin: 0 auto;
  /* background-color: #f7f0de; */
}

/* Header */
header {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

/* Logo */
.logo {
  width: 12rem;
  height: auto;
}
.logo-large {
  display: none;
}
/* Title */
h1 {
  font-family: 'Recoleta-SemiBold','Recoleta', serif;
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
  margin-top: 4rem;
  text-align: center;
}

/* Paragraph */
p {
  font-family: 'Recoleta-SemiBold','Gotham', sans-serif;
  font-weight: lighter;
  font-size: 1rem;
  color: #333; /* Dark Grey */
  margin-bottom: 1rem;
  text-align: center;
  padding: 0.4rem;
}

.lumios {
  font-family: 'Lumios Marker','Recoleta-SemiBold','Gotham', sans-serif;

}

/* Email form */
#email-form {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 0 10%;
}

#email-form input {
  border: none;
  border-radius: 50px;
  padding: 1rem 0.5rem;
  font-size: 0.8rem;
  outline: none;
  width: 100%;
  max-width: 15rem;
  background-color: #f7f0de;
  color: #d56544;
  text-align: center;
}

#email-form button {
  background-color: #e2725b;
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 1rem 2rem;
  cursor: pointer;
  outline: none;
}

#email-form button:hover {
  background-color: #c05748;
}

/* Contact Info */
.contact-info {
  font-family: 'Gotham', sans-serif;
  font-size: 0.8rem;
  color: #333;
  text-align: center;
  padding-top: 5rem;
}

.contact-info a {
  color: #333; /* Or any color you prefer */
}

.background-image {
  display: none;
  position: relative;
}

.background-image img {
  opacity: 0.6; /* Set the logo opacity */
  max-width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 876px) {
  .logo-small {
    display: none;
  }

  .logo-large {
    display: block;
    /* Adjust size if needed */
    width: 14rem; 
  }
  /* Split screen */
  .container {
    flex-direction: row;
  }
  
  .content {
    flex: 1;
    display: flex; /* establish flex context */
    flex-direction: column; /* make it stack vertically */
    justify-content: center; /* center vertically */
    align-items: center; /* center horizontally */
    background-color: #fbf8ef; /* set this to white
    background-color: #ffffff; /* set this to white */
    color: #333; /* adjust text color if necessary */
    padding: 2rem;
  }
  
  .background-image {
    display: flex; /* make this flex instead of block */
    flex: 1;
    background-image: url("/img/background.png"); /* make sure this path is correct */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center; /* add this to center the logo horizontally */
    align-items: center; /* add this to center the logo vertically */
  }
  
  .second-logo {
    /* border: 3px solid red; */
    position: relative; /* change this from absolute to relative */
    width: 50%;
    height: auto;
    opacity: 0.8;
  }

  /* Adjust font sizes */
  h1 {
    font-size: 3rem;
  }

  p {
    font-size: 1.5rem;
  }

  .email-form input, .email-form button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 875px) {
  /* Adjust font sizes */
  .email-form input, .email-form button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .container{
    background-image: url("/img/background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  h1 {
    font-size: 2rem;
    color: #f7f0de;;
  }

  p {
    font-size: 1rem;
    color: #f7f0de;
  }
  .contact-info {
    color: #f7f0de;
  }
  
  .contact-info a {
    color: #f7f0de; /* Or any color you prefer */
  }
}
