section {
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-behavior: smooth;
}

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

body, html {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    overflow-x: hidden;
}

body {
    background-color: #EED7C4 !important;
  }
  

.logo-wrapper img,
.about-us-blurb img,
.about-us-title img {
    display: block;
}



.top-logo img {
    transition: all 0.3s ease; /* smooth transition */
}

.top-logo.minimized img {
    height: 150px;
    transform: translateY(0); /* shrink logo */
}

.top-logo {
    background-color: #d82e2e;
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    overflow: visible; /* allow things to escape if needed */
    transition: all 1s ease;
    z-index: 1000;
}


.stamp {
    width: 20vw; /* scale with viewport */
    max-width: 100px; /* but cap the size */
    height: auto;
    position: absolute;
    transition: transform 0.7s ease;
    cursor: pointer;
}


.logo-wrapper,
.about-us-section {
    align-items: center;
    justify-content: center;
}


.logo-wrapper {
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
    flex-direction: column;
    padding: 100px 0;         /* Space at top and bottom */
    height: 100vh;            /* Ensure the wrapper takes the full viewport height */
    transition: all 1s ease;
}

.top-logo.minimized .logo-wrapper {
    padding: 10px 0;
}
.top-logo.minimized .logo {
    width: 25%; /* make logo smaller when minimized */
    max-width: 330px;
}

.logo {
    width: 50%;               /* 50% width of the container */
    max-width: 661px;         /* Limit the maximum width */
    height: auto;             /* Keep aspect ratio */
    margin: 0;                /* Remove any margins that could cause misalignment */
    z-index: 100;             /* Make sure it's above other elements */
    transition: all 1s ease;
}




.footer {
    background-color: #EED7C4 !important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    padding: 0.5rem 2rem 1rem 2rem; /* Add bottom padding */
    box-sizing: border-box;
    z-index: 100000000;
    flex-direction: row;
    overflow-x: hidden;
    overflow-y: hidden;
}

.app_icons,
.lang_button {
    display: flex;
    align-items: center; 
    height: 100%;
    padding-top: 5px; 

}

.app_icons img{
    margin-right: 10%;
    width: 50%;               /* 50% width of the container */
    max-width: 661px;         /* Limit the maximum width */
    height: auto; 
}

.app_icons img,
.lang_button img {
    height: auto;
    max-height: 40px;
    width: auto;
}

.app_icons img:hover,
.lang_button img:hover {
    filter:drop-shadow(1px 1px 1px black)
}

.about-us-section {
    background-color: #EED7C4;
    margin-top: 40px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    padding: 0 2rem; /* margin on both sides */
    box-sizing: border-box;
  }
  
  .about-us-title {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 3rem;
    display: block;
  }
  
  .blurb-wrapper {
    width: 100%;
    max-width: 1300px;  /* controls max width of the blurb */
    box-sizing: border-box;
    margin-bottom: 1rem;
  }
  
  .about-us-blurb {
    width: 100%;        /* now it shrinks inside .blurb-wrapper */
    height: auto;
    display: block;
  }

  .header{
    background-color: #d82e2e;
    display: flex;
    justify-content: left;
    flex-direction: row;
    position: fixed;
    height: 70px;
    width: 100%;
  }
  
  .menu{
    margin-top: 1rem;
    z-index: 1000;
    margin-left: 10px;
    width: auto;
    height: auto;
  }

  #factDisplay {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: #d82e2e !important;
    color: #EED7C4;
    padding: 20px;
    border-radius: 10px;
    z-index: 9999;
    max-width: 300px;
    font-size: 16px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  #factDisplay a {
    color: white;
    text-decoration: underline;
  }
  
  #factDisplay a:hover {
    color: #ffdada;
  }
  
  .close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    color: #EED7C4;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .close-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }


/* Full-width wrapper with red background */
.carousel-wrapper {
    width: 100vw;                 /* full viewport width */
    margin: 0;                    /* no margin */
    padding: 0;                   /* no padding */
    background-color: #d82e2e;    /* red background */
    overflow-x: hidden;          /* prevent scrollbars from image overflow */
    align-items: center;
  }


  
  /* Centered carousel within wrapper */
  #carouselExampleIndicators {
    width: 100%;
    padding: 0 10%;               /* lots of side space */
    box-sizing: border-box;
    margin: 0 auto;
    margin-bottom: 100px; /* or enough to prevent overlap */
    max-width: 100vh;
  }
  
  /* Images should fill container but stay centered */
  .carousel-item img {
    width: 90% !important;                  /* take full space inside carousel */
    height: auto;
    object-fit: contain;          /* or 'cover' depending on your design */
    display: block;
    margin: 0 auto;
  }
  
.listen-id img{
    margin-top: 10%;
    align-self: center;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 3rem;
    display: block;
}

.listen-id {
    flex-direction: column;
    align-items: center;
    display: flex;
}


  




  

  
  
  






