/*Mobile First approach*/
@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);
    }
}

/* 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);
}

html, body {
    margin: 0;
    padding: 0;
    background: #2C2C2C;
    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;
    }

#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: 75vh; 
    display: flex;
    flex-direction: column;
    background-image: url("images/stream_bg.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;
}

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


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


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

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


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


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

.bee-text{
	margin-top: 3.5rem;
	margin-left: 4.5rem;
	width: 80%;
    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;
	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;
    }

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

.text-content .head_text {
    padding: 1rem 0;
    width: 100%;
    }

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

.text-content_2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8rem;
    background-color: #fff;
}
.text-content_2 .head_text {
    padding: 1rem 0;
    width: 100%;
    }

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


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

.calendar-container {
    width: 100%;
    max-width: 600px;
    height: 500px; /* Fixed height for mobile */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.calendar-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.inc{
	text-align: center;
	font-family: 'Kumbh Sans', Arial, Helvetica, sans-serif;
	line-height: 0.1;
  }

.inc p{
	font-weight: 700;
	text-align: center;
  }

.creative_flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}

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


@media (min-width: 1025px){

    #corner-logo {
    width: 200px;
    }

    .banner{
        padding: 0;
    }

	.nav-toggle {
		display: none;
		}

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


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

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

   #schedule_sect {
        width: 100%;
        background-color: #fff;
        padding-bottom: 0;
        position: relative;
        overflow: hidden;
        padding-left: 0;
        padding-right: 0;
    }

    .creative_flex {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Equal 50/50 split */
        min-height: calc(100vh - 300px);
        max-width: none;
        margin: 0;
        align-items: stretch; /* Changed from center to stretch */
        padding: 0; /* Remove all padding for wall-to-wall effect */
        gap: 0; /* Remove gap for true wall-to-wall */
        width: 100vw; /* Full viewport width */
        margin-left: calc(-50vw + 50%); /* Center the full-width container */
    }

    .creative_img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .calendar-container {
        width: 90%; /* Takes up 90% of the 50% alloted space */
        max-width: none;
        height: 600px; 
        border-radius: 8px; 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
        overflow: hidden;
        margin: 0 auto; /* Centers within the 50% grid cell */
        justify-self: center;
    }

    .calendar-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .bee-text{
        justify-content: center;
        text-align: center;
        align-items: center;
        font-size: 3rem;
        margin-left: 0.5rem !important;
    }
}


@media screen and (max-width: 500px) and (orientation: portrait){
     #background{
        background-position: 36%;
        background-size: 330%;
    }

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


    .text-content {
        padding: 2rem;
        
    }
    .text-content_2 {
        padding: 3em;
    }

    .head_text {
        padding: 1.5rem 0; /* Increased padding around head text */
        width: 100%;
    }

    .head_text p{
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: clamp(1.8rem, 6vw, 2.2rem) !important;
    }

    .bee-text{
        font-size: clamp(2.5rem, 5vw, 3rem);
        margin-left: 0rem;
        text-align: center;
        margin-top: 1rem;
        max-width: 70rem;
        width: 80%;
    }

}

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

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

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

    .head_text p{
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .bee-text{
        font-size: clamp(2.5rem, 5vw, 3rem);
        margin-left: 2rem;
        width: 80%;
        text-align: center;
    }

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

}

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

    .text-content {
        padding: 5rem;
    }

    .head_text p{
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .bee-text{
        font-size: clamp(2.5rem, 5vw, 3rem);
        margin-left: 2rem;
        width: 80%;
        text-align: center;
    }

    #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-position: 65%;
        background-size: 90rem;
    }

    .head_text p{
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .bee-text{
        font-size: clamp(2.5rem, 5vw, 3rem);
        margin-left: 2rem;
        width: 80%;
        text-align: center;
    }

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

}