/*Mobile First approach*/
@import url('https://fonts.googleapis.com/css2?family=Cousine&family=Kumbh+Sans:wght@100..900&display=swap');
* {
    box-sizing: border-box;
    }

html, body {
    margin: 0;
    padding: 0;
    background: #2C2C2C;
    overflow-x: hidden;
	min-height: 100vh;
	width: 100%;
	position: relative
    }

@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);
    }
}

/* Custom view transitions for supported browsers */
::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);
}

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;
    }

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

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

#background {
    height: 85vh; 
    display: flex;
    flex-direction: column;
    background-image: url("images/hhollowbg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 1rem;
    }

#social-group {
	display: flex;
	justify-content: 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);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 80%;
    background: #2C2C2C;
    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: #2C2C2C;
    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);
    }

.black_ban {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%; /* full width instead of fixed px */
    height: 15vh;
    background-color: #2C2C2C;
    z-index: 2;
    padding: 2rem 4rem; /* make this responsive */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
	}
    
.cozy_text{
    font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
	font-size: clamp(1.5rem, 2.5vw, 5rem);
    color: white;
    font-weight: 900;
    max-width: 1325px;
    width: 100%;
	}

#info-section{
    width: 100%;
    background-color: #fff;
    padding-bottom: 0;
	position: relative;
	overflow: hidden;
}

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

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

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

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

.reg_text{
    display: flex;
    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;
}

.flower_img{
    max-width: none;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	width: 100vw;
	height: auto;
	object-fit: cover;
	display: block;
	padding: 0;
	position: relative;
	left: 0;
	right: 0;
	bottom:0;
    padding-top: 2rem;
}

.queen_img{
    max-width: none;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	width: 100vw;
	height: auto;
	object-fit: cover;
	display: block;
	padding: 0;
	position: relative;
	left: 0;
	right: 0;
	bottom:0;
    padding-top: 2rem;
}

.abusive_bee{
    max-width: none;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	width: 100vw;
	height: auto;
	object-fit: cover;
	display: block;
	padding: 0;
	position: relative;
	left: 0;
	right: 0;
	bottom:0;
    padding-top: 2rem;
}

.banner{
	position: relative;
	width: 100vw;                      
	height: 60vh;
	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-top: -1px;
	margin-bottom: 0;
	z-index: 10;
}

.bee-text{
	margin-top: 3.5rem;
	margin-left: 4.5rem;
	width: 65%;
	font-weight: 900;
	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{
    display: flex;
    justify-content: center;
    align-items: center;
}

.interested_txt p{
	margin: 2rem auto; /* centers horizontally */
	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;
}

.inc{
    text-align: center;
}

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

@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;
    }
/*Portrait mode for mobile devices - Adjusted Tri Tri's design text to be a bit more readable for mobile devices*/
@media screen and (max-width: 500px) and (orientation: portrait){
    #background{
        background-position: 41% 50%;
    }   


    .cozy_text{
        padding-top: 4rem;
        padding-bottom: 4rem;
        font-size: clamp(1.25rem, 5vh, 1rem);
        width: 100%
    }   

    .head_text p{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        font-size: clamp(1.6rem, 6vw, 30px);
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .spec_reg_text p{
        font-size: clamp(1.2rem, 3vw, 20px);
        padding-bottom: 4rem;
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .reg_text p{
        font-size: clamp(1.2rem, 3vw, 20px);
        padding-bottom: 4rem;
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .flower_img{
        height: 60vh;
        object-position: 60% 30%;
    }

    .queen_img{
        height: 60vh;
        object-position: 45% 30%;
    }

    .abusive_bee{
        height: 60vh;
    }
    .banner{
        height: 10vw;
        max-height: 25rem;
        min-height: 20rem;
        bottom: 0;
        position: relative;
        margin-top: -1rem;
        margin-bottom: -1rem;
    }

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

  .interested_txt p{
    padding-top: 2rem;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }

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


@media screen and (max-width: 1024px) and (orientation: landscape) {


    .head_text p{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: clamp(2rem, 6vw, 30px);
        width: 100%;
        padding-left: 2.1rem;
        padding-right: 2.1rem;
    }

    .spec_reg_text p{
        font-size: clamp(1.4rem, 3vw, 20px);
        padding-bottom: 4rem;
        width: 100%;
        padding-left: 2.1rem;
        padding-right: 2.1rem;
    }

    .reg_text p{
        font-size: clamp(1.4rem, 3vw, 20px);
        padding-bottom: 4rem;
        width: 100%;
        padding-left: 2.1rem;
        padding-right: 2.1rem;
    }

    .flower_img{
        height: 80vh;
        object-position: 60% 30%;
    }

    .queen_img{
        height: 80vh;
        object-position: 45% 30%;
    }

    .abusive_bee{
        height: 80vh;
    }
    .banner{
        height: 10vw;
        max-height: 25rem;
        min-height: 20rem;
        bottom: 0;
        position: relative;
        margin-top: -1rem;
        margin-bottom: -1rem;
    }

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

  .interested_txt p{
    padding-top: 2rem;
    width: 100%;
    padding-left: 2.1rem;
    padding-right: 2.1rem;
  }

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

/*Tablet style suckers - Portrait */
@media screen and (min-width: 501px) and (max-width: 1024px) and (orientation: portrait) {
    #background{
        background-position: 40% 50%;
        background-size: 320%;
    }   

    .cozy_text{
        padding-top: 4rem;
        padding-bottom: 4rem;
        font-size: clamp(1.4rem, 5vh, 1rem);
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .head_text{
        padding: auto;
        display: flex;
    }

    .head_text p{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: clamp(1.9rem, 6vw, 30px);
        width: 100%;
        padding-right: 4rem;
        padding-left: 4rem;
    }

    .spec_reg_text p{
        font-size: clamp(1.4rem, 3vw, 20px);
        padding-bottom: 4rem;
        width: 100%;
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .reg_text p{
        font-size: clamp(1.4rem, 3vw, 20px);
        padding-bottom: 4rem;
        width: 100%;
        padding-right: 4rem;
        padding-left: 4rem;
    }

    .flower_img{
        height: 80vh;
        object-position: 60% 30%;
    }

    .queen_img{
        height: 80vh;
        object-position: 45% 30%;
    }

    .abusive_bee{
        height: 80vh;
    }
    .banner{
        height: 10vw;
        max-height: 25rem;
        min-height: 20rem;
        bottom: 0;
        position: relative;
        margin-top: -1rem;
        margin-bottom: -1rem;
  }

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

    .interested_txt p{
        padding-top: 2rem;
        width: 100%;
        padding-left: 4rem;
        padding-right: 4rem;
    }

     #social-group {
        gap: 0.5rem;
        margin-left: 18rem;
        max-width: calc((64px * 3) + (1rem*2)); 
    }
}

@media screen and (min-width: 1025px){
    #corner-logo {
    width: 200px;
    }
    
    .head_text{
        padding: auto;
        display: flex;
    }

    .head_text p{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: clamp(1.95rem, 6vw, 35px);
        width: 100%;
        padding-right: 4rem;
        padding-left: 4rem;
    }

    .spec_reg_text p{
        font-size: clamp(1.4rem, 3vw, 20px);
        padding-bottom: 4rem;
        width: 100%;
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .reg_text p{
        font-size: clamp(1.4rem, 3vw, 20px);
        padding-bottom: 4rem;
        width: 100%;
        padding-right: 4rem;
        padding-left: 4rem;
    }

    .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;
		}

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


    .bee-sections-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .grid-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .grid-item .flower_img,
    .grid-item .queen_img,
    .grid-item .abusive_bee {
        width: 100%;
        height: 300px;
        object-fit: cover;
        margin: 0 0 1rem 0;
        padding-top: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .grid-item .head_text {
        padding: 1rem 0 0.5rem 0;
        width: 100%;
    }
    
    .grid-item .head_text p {
        font-size: 1.5rem;
        margin: 0;
        max-width: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .grid-item .reg_text {
        padding: 0;
        width: 100%;
    }

    .grid-item .spec_reg_text{
        padding: 0;
        width: 100%;
    }

    .grid-item .spec_reg_text p{
        font-size: 1.1rem;
        line-height: 1.6;
        padding-bottom: 0;
        max-width: none;
        margin: 0;
    }
    
    .grid-item .reg_text p {
        font-size: 1.25rem;
        line-height: 1.6;
        padding-bottom: 0;
        max-width: none;
        margin: 0;
    }

    .banner{
        height: 50vh;
    }

    .bee-text{
        font-size: 2.5rem;
    }

    .interested_txt p{
        width: 100%;
        padding-left: 4rem;
        padding-right: 4rem;
        padding-bottom: 0;
    }
}

