/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  background-color: #C28285;
  margin: 0; 
  font-family: 'Poppins', sans-serif;
}


.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 15px;
}


.site-header {
  display: flex;
  align-items: center;
  width: 100%;
}

.logo-container {
  max-width: 100px;
}

.logo {
  width: 100%;
  height: auto;
}

.header-text {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-title {
  font-size: 50px;
  color: white;
  text-align: center;
  margin: 0;
}


.site-main {
  flex: 1; 
  margin-top: 25px;
  margin-bottom: 50px;
}

.about-section {
  background-color: #7E0845;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; 
  padding: 20px;
}


.image-container,
.story-container {
  flex: 1;
  margin: 30px;
  min-width: 300px;
}

.about-image {
  width: 100%;
  height: auto;
  border: 5px solid white;
}

.story {
  color: white;
  font-size: 28px;
  text-align: center;
  word-wrap: break-word;
  font-weight: bolder;
  padding: 30px;
}


.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #7E0845;
  padding: 10px 20px; 
}

.footer-heading {
  font-size: 25px;
  color: white;
  margin: 0;
}

.social-icons {
  display: flex;
}

.social-icon {
  padding-left: 14px;
}



@media all and (max-width: 1056px) {
  .about-section {
    flex-direction: column;
    justify-content: center;
  }
  .image-container,
  .story-container {
    margin: 15px;
    min-width: auto;
    width: 90%;
  }
  .story {
    font-size: 20px;
    padding: 15px;
  }
}


@media all and (max-width: 700px) {
  .page-title {
    font-size: 40px;
  }
  
  .logo-container {
    width: 140px;
    height: 140px;
  }
  
  .story {
    padding: 5px;
    font-size: 15px;
  }
  
  .about-image {
    padding: 5px;
    width: 100%;
  }
}

@media all and (max-width: 280px) {
  .page-title {
    font-size: 25px;
  }
  
  .logo-container {
    width: 100px;
    height: 100px;
  }
  
  .story {
    padding: 5px;
    font-size: 15px;
  }
  
  .about-image {
    padding: 5px;
    width: 100%;
  }
}
