
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'Motterdam';
  src: url('assets/Motterdam.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;

}

/* General Reset */

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

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #111;
  background-color: #fff;
  line-height: 1.2;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.pink {
  color: #F2D9DC;
}


h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111;
}

/* Hero Section */
.hero {
  height: 100vh;
  text-align: center;
  background-color: #fff;
  padding: 6rem 2rem;
  background-image: url('assets/apostolos-vamvouras-unsplash.jpg');
  background-size: cover;
  background-repeat: none;
  background-position: center;
}

.logo {
  font-family: 'Motterdam', sans-serif;
  font-size: 10rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #000;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
  width: 100%;  
}

.logo span {
  color: #F2D9DC;
  text-shadow: #111;
  text-emphasis-color: #F2D9DC;
}

.tagline {
  display: flex;
  margin: auto;
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: #fff;
  font-weight: 400;
  width: 50%;
  margin-bottom: 3rem;

}

.submit-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #F2D9DC;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.submit-button:hover {
  
  background-color: #BB7C72;
  color: #fff;
}



.email-subscription-container{
    display: flex;
    align-items: center;
    margin: auto;
    
    border: solid 3px white;
    border-radius: 0.5em;
    overflow: hidden;
    margin-top: 1.2em;
    width: 50%;
    box-shadow: 2px rgba(207, 207, 207, 0.8);
}
.email-input{
    font-family:  'Montserrat', sans-serif;
    flex: 1;
    border: none;
    margin: 0 ;     
    padding: 1em; 
    color: #BB7C72;
}

.submit-button{
      display: inline-flex;
      border: none;
      background-color: #F2D9DC;
      color: #111;
      height: 100%;
      width: max-content;
      align-items: center;
      padding: 1em 2em;
      font-weight: 700;
      letter-spacing: 0.5px;
      cursor: pointer;
}

.submit-button:hover {
    background-color: #BB7C72;

}
  
  .email-input:focus {
    
    background-color: rgba(242, 217, 220, 1)
    color: #111;

  }



/* About Section */
.about {
  background-color: #fdfdfd;
  text-align: center;
}

.h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #111;
}

.about h2 {

  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Features */
.features {
  background-color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.feature-box {
  margin-bottom: 2rem;
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #000;
}

/* Join Section */
.join {
  background-color: #F2D9DC;
  text-align: center;
  padding: 4rem 2rem;
}

/* Footer */
.footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 2rem;
}


@media (max-width: 900px) {
  .hero {
    /* height: auto; */
    padding: 4rem 2rem;
  }

  .logo {
    font-size: 6rem;
  }

  .tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    font-size: 1.1rem;
  }

  .email-subscription-container {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3rem 1rem;
    background-position: left ;
    
  }

  h1 {
    line-height: 3.5rem;
  }

  

  .email-subscription-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 1rem 0;
    text-align: center; !important
  }

button {
  text-align: center;
}

  .email-input, .submit-button {
    width: 100%;
    margin-bottom: 0;
    margin: auto;
    text-align: center; !important
  }

  .submit-button {
     display: flex;
    justify-content: center;  /* Centers the text inside the button */
    align-items: center;
    text-align: center;
    padding: 1em 2em;
    width: 100%;
  
}
