/* James and Katria berated me and told me to do mobile first  */
/* Chickens cannot fight fr  */
/* Will probably get rid of the comments later, but for now, they help me remember what I was thinking at the time - I'll keep and or reform comments for professional reasoning of course if needed*/
@import url('https://fonts.googleapis.com/css2?family=Cousine&family=Kumbh+Sans:wght@100..900&display=swap');
      * {
        box-sizing: border-box;
      }
@view-transition {
    navigation: auto;
}

/* Smooth page entrance animation */
body {
    animation: pageLoad 0.4s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

::view-transition-old(root) {
    animation: slideOut 0.3s cubic-bezier(0.4, 0, 1, 1);
}

::view-transition-new(root) {
    animation: slideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

@keyframes slideOut {
    to {
        transform: translateX(-30px);
        opacity: 0;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
}

/* Loading state for fallback */
.page-loading {
    opacity: 0.8;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

/* Enhanced hover effects for navigation */
nav a {
    transition: all 0.2s ease;
}

nav a:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(6, 77, 185, 0.3);
}

      html, body {
        margin: 0;
        padding: 0;
        background: #171736;
        overflow-x: hidden;
		min-height: 100vh;
		width: 100%;
		position: relative
      }
      h1, h2 {
        color: white;
        margin: 0;
        font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
      }

      h1 {
        font-weight: 800;
        font-size: clamp(2rem, 8vw, 4rem);
      }

      h2 {
        font-size: clamp(1.25rem, 5vw, 2.5rem);
        font-weight: 600;
      }

      p {
        color: white;
        margin: 0;
        font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
        font-weight: 200;
        font-size: clamp(1rem, 4vw, 1.25rem);
        line-height: 1.5;
      }

      a { 
        color: #064DB9;

        font-weight: 900;
        text-decoration: none;
      }

      .signup-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 2rem;
      margin-bottom: 2rem;
    }

    #signup-form-container {
      display: none;
      margin-top: 1rem;
    }

    #signup-form-container iframe {
      width: 100%;
      max-width: 480px;
      height: 150px;
      background: white;
      border: 1px solid #ccc;
      border-radius: 8px;
    }

      /* First section - deemwed hero*/
      #background {
    	min-height: 85vh;
        width: 100%;
        background-image: url("images/background.jpg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 1rem;
		overflow: hidden;
      }

      /* Header with logo and navigation */
      .header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        padding: 1rem 0;
        position: relative;
        z-index: 100;
        flex-shrink: 0;
    }

      #corner-logo {
        width: 140px;
        height: auto;
        flex-shrink: 0;
      }

      /* Mobile navigation - HAMBURGGGGGG MENU*/
	  /* Found most of nav toggle stuff online - note to self: Link for later so I don't get confused*/
      .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        border: none;
      }

      .nav-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: 0.3s;
      }

      .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }

      .nav-toggle.active span:nth-child(2) {
        opacity: 0;
      }

      .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }

      #page-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(23, 23, 54, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
      }

      #page-nav.active {
        right: 0;
      }

      #page-nav a {
        font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
        font-weight: 600;
        font-size: 1.25rem;
        color: #fff;
        text-decoration: none;
        padding: 1rem;
        border-radius: 8px;
      }

      #page-nav a:hover {
        background: rgba(255, 255, 255, 0.1);
      }

      /* The freaking center content */
      .hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: left;
        margin: 0 auto;
		min-height: 0;
		overflow: hidden;
      }

      #main-logo {
        width: 80%;
        max-width: 300px;
        height: auto;
      }

      .hero-content p {
        margin: 1.5rem 0;
        max-width: 400px;
        font-weight: 300;
      }

      /* Mobile Buttons*/
      .cta-button {
        background: #064DB9;
        color: #fff;
        border: 1px solid #F3F3F3;
        border-radius: 12px;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
        font-weight: 500;
        cursor: pointer;
        width: 100%;
        max-width: 280px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 1.5rem 0;
        transition: all 0.3s ease;
        touch-action: manipulation; /* I literally just looked this up because I was like confused on how mobile apps be working properly*/
      }

      .cta-button:hover {
        background: #0555CC;
        transform: translateY(-4px);
      }

#social-group {
	display: flex;
	justify-content: center;
  align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 2rem 0 1rem 0;
	margin: 0 auto;
	max-width: none; 
	position: relative;
	z-index: 10;
	flex-shrink: 0;
  }

.fa {
	flex: 0 0 64px;
	font-size: 1.8rem;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center; 
  	line-height: 1;
  	position: relative;
	box-sizing: border-box;
	vertical-align: middle;
}

.fa i{
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.fa:hover {
	opacity: 0.6;
	transform: translateY(-6px);
}

      /* The why section - that I have deemed why - l-o-l; I am so funny*/
      #why-section {
        width: 100%;
        background-color: #fff;
        padding-bottom: 0;
      position: relative;
      overflow: hidden;
      }

      .why-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .why-img {
        width: 100%;
        max-width: 500px;
        height: auto;
        object-fit: fill;
      }


.head_text{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.head_text p{
    font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 30px;
    width: 100%;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 0.5rem 0.5rem;
}


.reg_text{
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0.5rem;
}

.reg_text p{
    font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
    color: #000;
    text-align: left;
}

.banner{
  position: relative;
	width: 100vw;                      
	height: 50vh;
	min-height: 300px;
	margin-left: calc(-50vw + 50%);   
	background-image: url("images/background_nomtn.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
  }


.bee-img{
  display: flex;
  justify-content: center;
  align-items: center;
	width: 160px;
  height: 160px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  margin: 0;
	}
      
.bee-text{
	margin-top: 3.5rem;
	margin-left: 4.5rem;
	width: 65%;
  font-weight: 900;
	font-size: 1.5rem;
	text-align: center;
	align-items: center;
	color: #ffffff;
	font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	box-sizing: border-box;
	max-width: calc(100% - 9rem);
	overflow: hidden;
	}

.interested_txt p{
	width: 100%;
	font-weight: 900;
	font-size: clamp(1.5rem, 4vw, 2rem); /* scales well */
	text-align: left;
	color: #000;
	font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
	line-height: 1.6;
  padding-left: 4rem;
  padding-right: 4rem;
	}


.inc{
  text-align: center;
}

.inc p{
	font-weight: 700;
	text-align: center;
	font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
}


	  /* Accessibility */
	  button, a {
		cursor: pointer;
	  }

	  /* Accessibility for focus states */
	  button:focus,
	  a:focus {
		outline: 2px solid #4A90E2;
		outline-offset: 2px;
	  }
.end-img{
  object-fit: cover;
}


/* Desktop and Large Tablet @media portion*/
@media (min-width: 1025px) {
	.bee-text {
		position: relative;
		z-index: 2;
		font-weight: 900;
		font-size: clamp(4rem, 4vw, 4rem); /* responsive scaling */
		text-align: center;
		color: #ffffff;
		font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
		margin: 0 auto;
		max-width: 800px;
		padding: 0 2rem;
		line-height: 1.2;
		}

  #corner-logo {
    width: 200px;
    }

	.nav-toggle {
		display: none;
		}


  #page-nav {
		position: static;
		width: auto;
		height: auto;
		background: transparent;
		backdrop-filter: none;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 1.5rem;
		padding: 0;
    padding-top: 10px;
		right: 0;
		margin-right: 200px;
		}

  #page-nav a {
		white-space: nowrap;
		font-size: 1rem;
		padding: 2rem 0.5rem;
		}

  #main-logo {
    max-width: 450px;
    }

  .hero-content {
    max-width: 800px;
    }

  .bee-img{
    width: 200px;
    height: 200px;
    margin-top: -9rem;
    margin-left: -30rem;
    }


  .why-flex {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
    min-height: calc(100vh - 300px);
    gap: 0;
    max-width: none;
    margin: 0;
    align-items: stretch;
    }

  .why-img {
    max-width: 100%;
		height: auto;
		object-fit: cover;
    }

  .head_text p {
      padding-top: 3rem;
      justify-content: center;
      text-align: left;
      align-items: center;
      padding-left: 4rem; /* Match reg_text padding */
      padding-right: 4rem; /* Match reg_text padding */
      font-size: 2.45rem;
    }

  .reg_text{
    justify-content: center;
    align-items: center;
  }

  .reg_text p{
    padding-top: 1rem;
    justify-content: center;
    align-items: center;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 1rem;
  }

	.interested_txt p {
    margin: 2rem auto; /* centers horizontally */
		width: 100%;
		max-width: 100vw;
		font-weight: 900;
		font-size: 2.75rem;
		text-align: left;
		color: #000;
		font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
		line-height: 1.6;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 1rem;
		}


  .hero-content p{
    max-width: 300rem;
    }
  .end-img{
    width: 100vw;
    height: 100vh;
    margin-bottom: -2.30rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      }
  }

button:focus,
a:focus {
      outline: 2px solid #4A90E2;
      outline-offset: 2px;
      }

@media screen and (max-width: 500px) and (min-width: 400px) and (orientation: portrait){
  .cta-button{
    max-width: 220px;
    height: 42px;
    font-size: 0.85rem;
  }

  .header {
	padding: 2rem 0;
  }

  #corner-logo {
	width: 140px;
  }

  .nav-toggle {
	display: flex !important;
  }
	
  .why-flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	text-align: center;
  }

  .why-img {
	width: 100%;
	max-width: 500px;
	margin-top: -3rem;
  }

  .head_text p{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 5%;
    width: 20rem;
    }

  .reg_text{
    text-align: center;
    justify-content: center;
    align-items: center;
    }

  .reg_text p{
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding: 2rem 5%;
    }

    .bee-img{
      margin-top: -26rem;
      width: 150px;
      height: 150px;
    }


  #page-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    max-width: 350px;
    height: 100vh;
    background: rgba(23, 23, 54, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
	margin: 0 !important
  }

  #page-nav.active {
    right: 0;
  }
  #page-nav a {
    font-size: 1.25rem;
    padding: 1rem;
  }

  #main-logo {
    max-width: 220px;
    width: 65%

  }

  .interested_txt p{
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding: 2rem 5%;

  }

  .hero-content p {
    max-width: 80vw;
	  font-size: clamp(1.15rem, 3vw, 2rem);
  }
  .bee-text {
    margin-top: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
    width: calc(100% - -1.5rem);
    font-size: 3rem;
	  text-align: center;
    max-width: none;
    padding: 0 2rem;
    box-sizing: border-box;
	  position: static;
	  line-height: 1.6;
    }

  #social-group {
    gap: 0.5rem;
    margin-left: 0; /* Remove the margin-left: 18rem; */
    max-width: calc((64px * 3) + (1rem*2)); 
    margin: 0 auto; /* Center it properly */
  }

   .end-img{
    height: 30vh;
    width: 100vw;
    margin-bottom: -2.30rem;
  }
}
/* Mobile Landscape Orientation */
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .nav-toggle {
		display: flex !important;
	}

  .bee-img{
    margin-top: -30rem;
    width: 200px;
    height: 200px;
  }

  #social-group {
    gap: 0.5rem;
    margin-left: 0; /* Remove the margin-left: 18rem; */
    max-width: calc((64px * 3) + (1rem*2)); 
    margin: 0 auto; /* Center it properly */
  }


  .why-flex{
	display: flex !important;
	flex-direction: column !important;
	align-items: center;
	gap: 2rem;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;

  }

  .why-img {
	margin-top: -3rem;
	width: 100%;
	max-width: 450px;
  }

	#background {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .bee-text {
    margin-top: 1rem;
    margin-left: 3rem;
    margin-right: 3rem;
    width: calc(100% - 6rem);
    font-size: clamp(2rem, 3vw, 2.75rem);
    max-width: none;
    padding: 0 2rem;
    box-sizing: border-box;
  }


  .header {
    padding: 1.5rem 0;
  }

  .hero-content {
    max-width: 100vw !important;
    width: 100% !important; 
    height: 90vh;
    padding: 0 0rem;
    padding-bottom: 0;
    margin: auto;
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  #main-logo {
    max-width: 2000px !important;
    width: 35% !important;
    height: auto;
    margin-top: 1rem;
  }

  .hero-content{
    height: auto;
    width: auto;
  }

  .hero-content p {
    max-width: none !important;
    width: 100% !important;
    height: 100%;
    margin: 0.25rem 0;
    font-size: clamp(1.25rem, 1vw, 0.85rem) !important;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 1rem;
  }

  #page-nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 40vw;
    max-width: 280px;
    height: 100vh;
    background: rgba(23, 23, 54, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
	box-sizing: border-box;
	margin: 0 !important;
  }


  #page-nav.active {
    right: 0;
  }

  #page-nav a {
    font-size: 1.125rem;
    padding: 1rem;
  }

  .cta-button{
		margin: 0.25rem 0 !important;
    max-width: 200px !important;
    height: 30px !important;
    font-size: 0.75rem !important;
    padding: 0 !important;
    transform: translateY(-6px);
	}

  .reg_text{
    text-align: center;
    justify-content: center;
    align-items: center;
    }

  .reg_text p{
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding: 2rem 5%;
    }

  .end-img{
  height: 80vh;
  width: 100vw;
  margin-bottom: -2.30rem;
  }

  .inc{
    margin-top: -1rem;
    }

}


@media screen and (max-width: 930px) and (orientation: landscape) {
  .nav-toggle {
		display: flex !important;
	}

  .bee-img{
    width: 200px;
    height: 200px;
  }

  #social-group {
    gap: 0.5rem;
    margin-left: 0; /* Remove the margin-left: 18rem; */
    max-width: calc((64px * 3) + (1rem*2)); 
    margin: 0 auto; /* Center it properly */
  }


  .why-flex{
	display: flex !important;
	flex-direction: column !important;
	align-items: center;
	gap: 2rem;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;

  }

  .why-img {
	margin-top: -3rem;
	width: 100%;
	max-width: 450px;
  }

	#background {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .bee-text {
    margin-top: 1rem;
    margin-left: 3rem;
    margin-right: 3rem;
    width: calc(100% - 6rem);
    font-size: clamp(2rem, 3vw, 2.75rem);
    max-width: none;
    padding: 0 2rem;
    box-sizing: border-box;
  }


  .header {
    padding: 1.5rem 0;
  }

  .hero-content {
    max-width: 100vw !important;
    width: 100% !important; 
    height: 90vh;
    padding: 0 0rem;
    padding-bottom: 0;
    margin: auto;
    flex: 0 1 auto;
    box-sizing: border-box;
  }

  #main-logo {
    max-width: 2000px !important;
    width: 35% !important;
    height: auto;
    margin-top: 1rem;
  }

  .hero-content{
    height: auto;
    width: auto;
  }

  .hero-content p {
    max-width: none !important;
    width: 100% !important;
    height: 100%;
    margin: 0.25rem 0;
    font-size: clamp(1.25rem, 1vw, 0.85rem) !important;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 1rem;
  }

  #page-nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 40vw;
    max-width: 280px;
    height: 100vh;
    background: rgba(23, 23, 54, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
	box-sizing: border-box;
	margin: 0 !important;
  }


  #page-nav.active {
    right: 0;
  }

  #page-nav a {
    font-size: 1.125rem;
    padding: 1rem;
  }

  .cta-button{
		margin: 0.25rem 0 !important;
    max-width: 200px !important;
    height: 30px !important;
    font-size: 0.75rem !important;
    padding: 0 !important;
    transform: translateY(-6px);
	}

  .reg_text{
    text-align: center;
    justify-content: center;
    align-items: center;
    }

  .reg_text p{
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding: 2rem 5%;
    }

  .end-img{
  height: 90vh;
  width: 100vw;
  margin-bottom: -2.30rem;
  }

  .inc{
    margin-top: -1rem;
    }

}

/* Tablet Portrait - for like good tablets */
@media screen and (min-width: 800px) and (max-width: 1024px) and (orientation: portrait) {
  .cta-button{
    max-width: 280px;
    height: 46px;
    }

  .banner{
    margin-top: 2rem;
    z-index: 2;
    }

  .head_text p{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    padding-left: 4rem;
    padding-right: 4rem;
    }

  .reg_text{
    text-align: center;
    justify-content: center;
    align-items: center;
    }

  .reg_text p{
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 0.5rem;
    padding-left: 4rem;
    padding-right: 4rem;
    }

  .nav-toggle {
    display: flex !important;
    }

  .bee-img{
    margin-top: -30rem;
    width: 200px;
    height: 200px;
    }


  .why-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    }

  .why-img {
    width: 100%;
    max-width: 500px;
    margin-top: -3rem;
    }

  .interested_txt p{
    justify-content: center;
    align-items: center;
    text-align: left;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 4rem;
    padding-right: 4rem;
    }

  #page-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    max-width: 350px;
    height: 100vh;
    background: rgba(23, 23, 54, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    margin: 0 !important
    }

  #page-nav.active {
    right: 0;
    }

  #page-nav a {
    font-size: 1.25rem;
    padding: 1rem;
    }

  #main-logo {
    max-width: 320px;
    }

  .hero-content p {
    max-width: 600px;
	  font-size: clamp(1rem, 3vw, 1.15rem);
    }

.bee-text {
  margin-top: 1rem;
  margin-left: 2rem;
  margin-right: 2rem;
  width: calc(100% - 4rem);
  font-size: clamp(4rem, 4vw, 3rem);
	text-align: center;
  max-width: none;
  padding: 0 2rem;
  box-sizing: border-box;
	position: static;
	line-height: 1.6;
  }

#social-group {
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    max-width: calc((64px * 3) + (1rem*2));
    margin: 0 auto;
  }


.end-img{
  height: 40vh;
  width: 100vw;
  margin-bottom: -2.30rem;
  }
}




/*Weird Little Area in the screen world*/
@media screen and (min-width: 501px) and (max-width: 600px) and (orientation: portrait) {
  .cta-button{
    max-width: 280px;
    height: 46px;
    }

  .banner{
    margin-top: 2rem;
    z-index: 2;
    }

  .head_text p{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 4rem;
    padding-right: 4rem;
    }

  .reg_text{
    text-align: center;
    justify-content: center;
    align-items: center;
    }

  .reg_text p{
    justify-content: center;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 4rem;
    padding-right: 4rem;
    }

  .nav-toggle {
    display: flex !important;
    }

  .bee-img{
    margin-top: -30rem;
    width: 200px;
    height: 200px;
    }


  .why-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    }

  .why-img {
    width: 100%;
    max-width: 500px;
    margin-top: -3rem;
    }


  .interested_txt p{
    justify-content: center;
    align-items: center;
    text-align: left;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 4rem;
    padding-right: 4rem;
    }

  #page-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    max-width: 350px;
    height: 100vh;
    background: rgba(23, 23, 54, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    margin: 0 !important
    }

  #page-nav.active {
    right: 0;
    }

  #page-nav a {
    font-size: 1.25rem;
    padding: 1rem;
    }

  #main-logo {
    max-width: 320px;
    }

  .hero-content p {
    max-width: 600px;
	  font-size: clamp(1rem, 3vw, 1.15rem);
    }

  .bee-text {
    margin-top: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
    width: calc(100% - 4rem);
    font-size: clamp(2.5rem, 4vw, 4rem);
    text-align: center;
    max-width: none;
    padding: 0 2rem;
    box-sizing: border-box;
    position: static;
    line-height: 1.6;
    }

  #social-group {
      gap: 0.5rem;
      justify-content: center;
      align-items: center;
      max-width: calc((64px * 3) + (1rem*2)); 
    }


  .end-img{
    height: 50vh;
    width: 100vw;
    margin-bottom: -2.30rem;
    }
}



@media screen and (min-width: 601px) and (max-width: 799px) and (orientation: portrait) {
  .cta-button{
    max-width: 280px;
    height: 46px;
    }

  .banner{
    margin-top: 2rem;
    z-index: 2;
    }

  .head_text p{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 4rem;
    padding-right: 4rem;
    font-size: 2.35rem;
    }

  .reg_text{
    text-align: center;
    justify-content: center;
    align-items: center;
    }

  .reg_text p{
    justify-content: center;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 4rem;
    padding-right: 4rem;
    }

  .nav-toggle {
    display: flex !important;
    }

  .bee-img{
    margin-top: -30rem;
    width: 200px;
    height: 200px;
    }


  .why-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    }

  .why-img {
    width: 100%;
    max-width: 500px;
    margin-top: -3rem;
    }

  .interested_txt{
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .interested_txt p{
    justify-content: center;
    align-items: center;
    text-align: left;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 4rem;
    padding-right: 4rem;
    }

  #page-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    max-width: 350px;
    height: 100vh;
    background: rgba(23, 23, 54, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    margin: 0 !important
    }

  #page-nav.active {
    right: 0;
    }

  #page-nav a {
    font-size: 1.25rem;
    padding: 1rem;
    }

  #main-logo {
    max-width: 320px;
    }

  .hero-content p {
    max-width: 600px;
	  font-size: clamp(1rem, 3vw, 1.15rem);
    }

  .bee-text {
    margin-top: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
    width: calc(100% - 4rem);
    font-size: clamp(2.5rem, 4vw, 4rem);
    text-align: center;
    max-width: none;
    padding: 0 2rem;
    box-sizing: border-box;
    position: static;
    line-height: 1.6;
    }

  #social-group {
      gap: 0.5rem;
      justify-content: center;
      align-items: center;
      max-width: calc((64px * 3) + (1rem*2)); 
    }


  .end-img{
    height: 50vh;
    width: 100vw;
    margin-bottom: -2.30rem;
    }

}


@media screen and (max-width: 399px) and (orientation: portrait) {
.cta-button{
    max-width: 220px;
    height: 42px;
    font-size: 0.85rem;
  }

  .header {
	padding: 2rem 0;
  }

  #corner-logo {
	width: 140px;
  }

  .nav-toggle {
	display: flex !important;
  }
	
  .why-flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	text-align: center;
  }

  .why-img {
	width: 100%;
	max-width: 500px;
	margin-top: -3rem;
  }

  .head_text p{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 5%;
    width: 20rem;
    }

  .reg_text{
    text-align: center;
    justify-content: center;
    align-items: center;
    }

  .reg_text p{
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding: 2rem 5%;
    }

    .bee-img{
      margin-top: -25rem !important;
      width: 150px;
      height: 150px;
    }


  #page-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    max-width: 350px;
    height: 100vh;
    background: rgba(23, 23, 54, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
	margin: 0 !important
  }

  #page-nav.active {
    right: 0;
  }
  #page-nav a {
    font-size: 1.25rem;
    padding: 1rem;
  }

  #main-logo {
    max-width: 220px;
    width: 65%

  }

  .interested_txt p{
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding: 2rem 5%;

  }

  .hero-content p {
    max-width: 80vw;
	  font-size: clamp(1.15rem, 3vw, 2rem);
  }
  .bee-text {
    margin-top: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
    width: calc(100% - -1.5rem);
    font-size: 3rem;
	  text-align: center;
    max-width: none;
    padding: 0 2rem;
    box-sizing: border-box;
	  position: static;
	  line-height: 1.6;
    }

  #social-group {
    gap: 0.5rem;
    margin-left: 0; /* Remove the margin-left: 18rem; */
    max-width: calc((64px * 3) + (1rem*2)); 
    margin: 0 auto; /* Center it properly */
  }

   .end-img{
    height: 50vh;
    width: 100vw;
    margin-bottom: -2.30rem;
  }
}


@media screen and (max-width: 315px) and (orientation: portrait) {
.cta-button{
    max-width: 220px;
    height: 42px;
    font-size: 0.85rem;
  }

  .header {
	padding: 2rem 0;
  }

  #corner-logo {
	width: 140px;
  }

  .nav-toggle {
	display: flex !important;
  }
	
  .why-flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	text-align: center;
  }

  .why-img {
	width: 100%;
	max-width: 500px;
	margin-top: -3rem;
  }

  .head_text p{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 5%;
    width: 20rem;
    }

  .reg_text{
    text-align: center;
    justify-content: center;
    align-items: center;
    }

  .reg_text p{
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding: 2rem 5%;
    }

    .bee-img{
      margin-top: -22.5rem !important;
      width: 115px;
      height: 115px;
    }


  #page-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    max-width: 350px;
    height: 100vh;
    background: rgba(23, 23, 54, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
	margin: 0 !important
  }

  #page-nav.active {
    right: 0;
  }
  #page-nav a {
    font-size: 1.25rem;
    padding: 1rem;
  }

  #main-logo {
    max-width: 220px;
    width: 65%

  }

  .interested_txt p{
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding: 2rem 5%;

  }

  .hero-content p {
    max-width: 80vw;
	  font-size: clamp(1.15rem, 3vw, 2rem);
  }
  .bee-text {
    margin-top: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
    width: calc(100% - -1.5rem);
    font-size: 3rem;
	  text-align: center;
    max-width: none;
    padding: 0 2rem;
    box-sizing: border-box;
	  position: static;
	  line-height: 1.6;
    }

  #social-group {
    gap: 0.5rem;
    margin-left: 0; /* Remove the margin-left: 18rem; */
    max-width: calc((64px * 3) + (1rem*2)); 
    margin: 0 auto; /* Center it properly */
  }

   .end-img{
    height: 50vh;
    width: 100vw;
    margin-bottom: -2.30rem;
  }
}
