/*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/outdoor.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: 100vw; 
	position: relative;
	z-index: 100;
	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 */
    background-color: #2C2C2C;
    z-index: 2;
    padding: 2rem 4rem; /* make this responsive */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	}

.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-top: -1px;
	margin-bottom: 0;
	z-index: 10;
    }

.text-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        background-color: #fff;
    }

.text-content .head_text p {
    padding-top: 1rem;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 1rem;
    width: 100%;
    }

.text-content .head_text p {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-align: left;
    margin-bottom: 1rem;
    }


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

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

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

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

.head_text{
    justify-content: center;
    align-items: center;
    max-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: left;
    margin: 0;
    padding: 2rem;
    padding-top: 0;
}

.reg_text{
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

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

.spec_reg_text{
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

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

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

.stream_img{
    display: flex;
    max-width: 100vw;
    width: 100vw;
}


.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*/
      }

.kta-button {
        background: #fff;
        color: #064DB9;
        border: 1px solid #064DB9;
        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; 
      }

.kta-button:hover{
    background: #b1c4e2;
    transform: translateY(-4px);
}

.kta-button i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    }

.dta-button {
        background: #064DB9;
        color: #fff;
        border: 1px solid #F3F3F3;
        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;
      }

.dta-button:hover{
    background: #b1c4e2;
    transform: translateY(-4px);
}

.dta-button i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    }

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

.cta-button i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    }

#butt_more{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

#join-buttons{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

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

@media (min-width: 1025px){
    #background{
        background-position: 50% 110%; /* Changed from 'bottom' to shift down more */
        background-size: cover;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    #join-buttons{
        flex-direction: row;
    }

    #corner-logo {
        width: 200px;
        margin-left: 0.40rem
        }

	.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;
        text-shadow: 1px 1px 2px black;
		}

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

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

    .head_text p{
        text-align: left;
        width: 100%;
        max-width: 100vw; 
        }

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

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

    .spec_reg_text{
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        
    }

    .spec_reg_text p{
        text-align: left;
        padding-left: 4rem;
        padding-right: 4rem;
        padding-bottom: 2rem;
        width: 100%;
        max-width: 100vw; /* Same max-width as head_text for alignment */
    }

    .bee-text {
		position: relative;
		z-index: 2;
		font-weight: 900;
		font-size: clamp(2rem, 4vw, 3.25rem); /* 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;
		}
}

@media screen and (max-width: 500px) and (orientation: portrait){
    #corner-logo {
        margin-top: 0.85rem;
    }

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

   .bee-text {
		position: relative;
		z-index: 2;
		font-weight: 900;
		font-size: clamp(2rem, 4vw, 3.25rem); /* responsive scaling */
		text-align: center;
		color: #ffffff;
		font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
		margin: 0 auto;
		max-width: 800px !important;
		padding: 0rem;
		line-height: 1.2;
		}
        
    .head_text{
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        max-width: 100vw; /* Consistent max-width for alignment */

    }

    .head_text p{
        padding-top: 1rem !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
        padding-bottom: 0;
        text-align: left;
        width: 100%;
        max-width: 100vw; /* Consistent max-width for alignment */
        }

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

    .reg_text p{
        justify-content: center;
        align-items: center;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
        padding-top: 1rem;
        }

    .spec_reg_text{
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .spec_reg_text p{
        text-align: left;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
        padding-top: 1rem;
        width: 100%;
        max-width: 100vw; /* Same max-width as head_text for alignment */
    }

}

@media screen and (max-width: 1024px) and (orientation: landscape) {
    
    .bee-text {
		position: relative;
		z-index: 2;
		font-weight: 900;
		font-size: clamp(2.5rem, 4vw, 3.25rem); /* responsive scaling */
		text-align: center;
		color: #ffffff;
		font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
		margin: 0 auto;
		max-width: 100vw;
		padding: 0 2rem;
		line-height: 1.2;
		}
    
    .head_text{
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .head_text p{
        padding-top: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 0;
        text-align: left;
        width: 100%;
        max-width: 100vw; /* Consistent max-width for alignment */
        }

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

    .reg_text p{
        justify-content: center;
        align-items: center;
        padding: 2rem;
        padding-top: 0;
        }

    .spec_reg_text{
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .spec_reg_text p{
        text-align: left;
        padding-top: 0;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 2rem;
        width: 100%;
        max-width: 100vw; /* Same max-width as head_text for alignment */
    }

}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    #background{
        background-size: 235%;
        background-position: 50% 110%; 
    }

    .creative_img{
        justify-content: center;
        align-items: center;
        display: block;
        max-width: 100%;
		height: auto;
		object-fit: cover;
		margin: 0 auto;
		justify-self: center;
		align-self: center;
    }

    .bee-text {
		position: relative;
		z-index: 2;
		font-weight: 900;
		font-size: clamp(2rem, 4vw, 3.25rem); /* 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;
		}

    .banner{
        position: relative;
	    width: 100vw;                      
        height: 40vh;
        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;
        }

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

    .head_text p{
        padding-top: 2rem;
        padding-left: 4rem;
        padding-right: 4rem;
        padding-bottom: 0;
        text-align: left;
        width: 100%;
        max-width: 100vw; /* Consistent max-width for alignment */
        font-size: 4rem;
        }

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

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

    .spec_reg_text{
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .spec_reg_text p{
        text-align: left;
        padding-top: 0;
        padding-left: 4rem;
        padding-right: 4rem;
        padding-bottom: 2rem;
        width: 100%;
        max-width: 100vw; /* Same max-width as head_text for alignment */
    }

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

@media screen and (min-width: 501px) and (max-width: 767px) and (orientation: portrait) {
    #background{
        background-size: 235%;
        background-position: 50% 110%; 
    }

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

    .creative_img{
        justify-content: center;
        align-items: center;
        display: block;
        max-width: 100%;
		height: auto;
		object-fit: cover;
		margin: 0 auto;
		justify-self: center;
		align-self: center;
    }

    .bee-text {
		position: relative;
		z-index: 2;
		font-weight: 900;
		font-size: clamp(2rem, 4vw, 3.25rem); /* 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;
		}

    .banner{
        position: relative;
	    width: 100vw;                      
        height: 40vh;
        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;
        }

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

    .head_text p{
        padding-top: 2rem;
        padding-left: 4rem;
        padding-right: 4rem;
        text-align: left;
        width: 100%;
        max-width: 100vw; /* Consistent max-width for alignment */
        font-size: 4rem;
        }

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

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

    .spec_reg_text{
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    .spec_reg_text p{
        text-align: left;
        padding-left: 4rem;
        padding-right: 4rem;
        padding-bottom: 2rem;
        width: 100%;
        max-width: 100vw; /* Same max-width as head_text for alignment */
    }

}