/* Home  */

*{
    overflow-x: hidden;
}



body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    background: 
            radial-gradient(circle at 20% 20%, #ffd1771a, transparent 40%),
            radial-gradient(circle at 80% 80%, #f2a83b1a, transparent 40%),
            linear-gradient(135deg, #0f0f0f, #1a1a1a);

    color: #f8f6f4;    
}



.head{
    height: 8vw;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    z-index: 200;
    overflow: hidden;

    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(12px);
    
    border-bottom: 1px solid rgba(255, 209, 119, 0.2);

     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
 
}
.logo{
    height: 8vw;
    display: flex;
    align-items: center;
    background: transparent;
    margin-left: 2vw;
}
.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}
.logo a img {
    height: 6vw;
    object-fit: contain;
}
.nav>a{
    margin: 1vw;
    font-size: 2vw;
    text-decoration: none;
    font-family: "Poppins", serif;

    color: #f8f6f4;
    border-bottom: 3px solid transparent;
    transition: color 0.5s ease;
}
.nav > a:hover {
    color: #ffd177;
    border-bottom: 3px solid #f2a83b;
}
.nav {
    overflow: hidden;
}



#hamburger{
    height: 2vw;
    width: 2vw;
    margin-right: 2vw;
    display: none;
    cursor: pointer;
    filter: brightness(0) saturate(100%) invert(77%) sepia(36%) saturate(540%) hue-rotate(350deg) brightness(105%) contrast(95%);
}
#cross{
    position: absolute;
    right:2vw;
    top: 0vw;
    cursor: pointer;
}
#Menu{
    position: fixed;
    top: 9vw;          
    right: 3vw;
    width: 20vw;

    padding: 1rem;
    text-align: center;

    display: flex;
    flex-direction: column;
    gap: 0.8rem;

    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);

    border-radius: 10px;
    border: 1px solid rgba(255, 209, 119, 0.2);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 100;
    display: none;
}
#Menu>a{
    width: 10vw;
    text-decoration: none;

    color: #f8f6f4;

    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    margin-left:2.5vw ;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    
    transition: all 0.3s ease;
}
#Menu > a:hover {
    background: rgba(255, 209, 119, 0.1);
    color: #ffd177;
    transform: translateX(5px);
}
#Menu {
    animation: fadeIn 0.8s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#Menu > a {
    position: relative;
}
#Menu > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #f2a83b, #ffd177);
    transition: width 0.3s ease;
}
#Menu > a:hover::after {
    width: 100%;
}



.HeroText,.HeroText2{
    margin-top: 10vw;
    height: auto;
    width: 62vw;
    margin-left: 20vw;
    padding: 2vw;
    text-align: center;

    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 209, 119, 0.2);

    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(255, 209, 119, 0.1);
}
.HeroText2{
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(10px);

    border-radius: 1vw;

    border: 1px solid rgba(255, 209, 119, 0.15);

    box-shadow: 
        0 6px 18px rgba(0, 0, 0, 0.4);

    margin-top: 2vw;
}
.HeroText h1, .HeroText2 h2{
     color: #f2a83b; 
    font-size: 2vw;
    font-weight: 900;
    margin-bottom: 1vw;
     font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
}
.HeroText2 h2{
    font-family: "Playwrite NO", cursive;
     color: #ffd177;
}
.HeroText h1 {
    font-size: 3vw;
    background: linear-gradient(90deg, #f2a83b, #ffd177, #f2a83b);
    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shine 4s linear infinite;
}
@keyframes shine {
    to {
        background-position: 200% center;
    }
}
.HeroText p, .HeroText2 p{
   color: #bfbfbf;
    font-size: 1.2vw;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}



.buttons{
    margin-top: 2vw;
    display: flex;
    justify-content: center;
    gap: 2vw;
    margin-bottom: 2vw;
    margin-left: 45vw;
}
.buttons a{
    display: inline-block;
    padding: 0.7vw 1.8vw;
    font-size: 1.1vw;
    border-radius: 0.6vw;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
#Reg{
    background: linear-gradient(45deg, #f2a83b, #ffd177);
    color: #1a1a1a;

    box-shadow: 0 6px 18px rgba(255, 209, 119, 0.3);
}
#Reg:hover{
    transform: translateY(-3px) scale(1.03);

    box-shadow: 
        0 10px 25px rgba(255, 209, 119, 0.5),
        0 0 15px rgba(255, 209, 119, 0.4);
}

#logIn{
    background: rgba(26, 26, 26, 0.6);
    color: #f8f6f4;

    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 209, 119, 0.2);
}

#logIn:hover {
    background: rgba(255, 209, 119, 0.1);
    color: #ffd177;

    transform: translateY(-3px);
}



#userUI{
    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(10px);

    border-radius: 10px;
    border: 1px solid rgba(255, 209, 119, 0.2);

    padding: 0.6vw 1vw;

    display: flex;
    flex-direction: column;
    gap: 1vw;

    box-shadow: 0 8px 25px rgba(0,0,0,0.5);

    width: 30vw;
    margin-left: 35vw;
    
    display: none;
    margin-top: 5vw;
    text-align: center;

    word-break: break-all;
}
.userEm{
    font-family: "Poppins", sans-serif;
    font-size: 1.5vw;
     color: #f8f6f4; 
}
.logout{
    padding: 0.3vw 0.8vw;

    border-radius: 6px;
    border: none;

    background: linear-gradient(45deg, #f2a83b, #ffd177);
    color: #1a1a1a;

    font-family: "Poppins", sans-serif;
    font-size: 0.9vw;

    cursor: pointer;
    transition: all 0.3s ease;
}
#logoutBtn:hover{
    transform: translateY(-2px);

    box-shadow: 
        0 6px 15px rgba(255, 209, 119, 0.4),
        0 0 10px rgba(255, 209, 119, 0.3);
}
#userEmailMenu{
 color: #ffd177;
 word-break: break-all;
}
#logoutBtnMenu {
    background: linear-gradient(45deg, #f2a83b, #ffd177);
    color: #1a1a1a;
    display: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
#logoutBtnMenu:hover {
    transform: translateY(-2px);

    box-shadow: 
        0 6px 15px rgba(255, 209, 119, 0.4),
        0 0 10px rgba(255, 209, 119, 0.3);
}
#userEmailMenu,
#logoutBtnMenu {
  display: none;
}


.footer{
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);

    text-align: center;
    padding: 1rem 0;

    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    border-top: 1px solid rgba(255, 209, 119, 0.2);
}
.footer>p{
    color: #bfbfbf;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.footer>p>a{
    text-decoration: none;
    font-weight: 900;
    margin-left: 2rem;

    color: #f8f6f4;
    transition: color 0.3s ease;
}
.footer > p > a:hover {
    color: #ffd177;
}
.footer > p > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;

    width: 0%;
    height: 2px;

    background: linear-gradient(90deg, #f2a83b, #ffd177);
    transition: width 0.3s ease;
}

.footer > p > a:hover::after {
    width: 100%;
}





/* Events */

#event{
    display: none;
}
#cards{
    margin-top: 2vw;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    padding: 0 5vw;
    padding: 1vw;
}
.card{
    border-radius: 12px;
    overflow: hidden;

    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 209, 119, 0.15);

    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: all 0.3s ease;

    text-align: center;
}
.card img{
    width: 100%;
    height: 14vw;
    object-fit: cover;

    transition: transform 0.4s ease;
}
.card:hover{
    transform: translateY(-10px);

    box-shadow: 
        0 15px 40px rgba(0,0,0,0.7),
        0 0 20px rgba(255, 209, 119, 0.2);
}
.card:hover img{
    transform: scale(1.08);
}
.card h2{
    font-family: "Playfair Display", serif;
    font-size: 1.3vw;
    color: #f8f6f4;

    margin: 1vw 0 0.5vw 0;
}
.card a{
    display: inline-block;
    margin-bottom: 1vw;

    padding: 0.4vw 1.2vw;

    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 0.9vw;

    border-radius: 5px;

    background: rgba(26, 26, 26, 0.6);
    color: #f8f6f4;

    border: 1px solid rgba(255, 209, 119, 0.2);

    transition: all 0.3s ease;
}
.card a:hover{
    background: rgba(255, 209, 119, 0.15);
    color: #ffd177;

    transform: translateY(-2px);
}





/* About US */
.about_Us{
    width: 70vw;
    margin-left: 15vw;
    margin-top: 10vw;
    padding: 2.5vw;

    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(10px);

    border-radius: 14px;
    border: 1px solid rgba(255, 209, 119, 0.15);

    color: #f8f6f4;
    font-size: 1.2rem;
    line-height: 1.7;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    text-align: center;
    transition: all 0.3s ease-in-out;
}
.about_Us:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 209, 119, 0.15)
}
.About_h2, .Teams{
    font-family: "Playfair Display", serif;
    text-align: center;
    font-weight: 600;

    color: #f2a83b;
    letter-spacing: 1px;

    margin-bottom: 1.2rem;
}
.About_P{
    font-family: "Poppins", sans-serif;
     color: #bfbfbf;
     text-align: justify;
}
.Teams{
    margin-top: 2vw;
    font-size: 3vw;
    font-weight: 900;
}
.About_span{
    color: #ffd177;
    display: inline-block;
    font-size: 1.5rem;

    animation: wave 3s ease-in-out infinite;
}
@keyframes wave {
    0% {
        transform: rotate(-45deg);
    }
    25% {
        transform: rotate(20deg);
    }
    50% {
        transform: rotate(-45deg);
    }
    75%{
        transform: rotate(20deg);
    }
    100%{
        transform: rotate(-45deg);
    }
}
.root{
    margin-top: 3vw;
    display: flex;
    justify-content: center;
    gap: 3vw;
    flex-wrap: wrap;
}
.mem{
    width: 18vw;
    height: 55vh;

    padding: 1.5vw;
    text-align: center;

    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(10px);

    border-radius: 14px;
    border: 1px solid rgba(255, 209, 119, 0.15);

    color: #f8f6f4;

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}
.mem:hover{
    transform: translateY(-10px);

    box-shadow: 
        0 15px 40px rgba(0,0,0,0.7),
        0 0 20px rgba(255, 209, 119, 0.2);
}
.mem > img{
    width: 15vw;
    height:35vh;
    
    border-radius: 10px;
    margin-bottom: 0vw;
}
.mem h2{
    font-family: "Playfair Display", serif;
    font-size: 2vw;

    margin-bottom: 0vw;
    color: #ffd177;
}
.mem p{
    font-family: "Poppins", sans-serif;
    font-size: 1vw;
    color: #bfbfbf;
    margin-bottom: 1vw;
}
.mem a img{
    width: 1.5vw;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.mem a img:hover{
    transform: scale(1.2);
    filter: brightness(1.5);
}





/* Contact */

#HeroTextform{
    height: auto;
    margin-left: 18vw;
    margin-bottom: 5vw;
    border-radius: 10px;
   
}
#HeroTextform h1,#HeroTextform p {
    color: #f8f6f4;
}
#form{
    margin-left: 0vw;
    height: auto;
}
#form form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* gap: 0.9vw; */
}
#form label{
    font-family: "Poppins", sans-serif;
    font-size: 1vw;
    color: #bfbfbf;
    margin-top: 0.5vw;
    margin-bottom: 0.5vw;
}
#form input,
#form select,
#form textarea{
    width: 20vw;
    padding: 0.7vw;
    border-radius: 6px;
    border: 1px solid rgba(255, 209, 119, 0.2);

    background: rgba(26, 26, 26, 0.6);
    color: #f8f6f4;

    font-family: "Poppins", sans-serif;
    outline: none;

    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: all 0.25s ease;
}
#form input:focus,
#form select:focus,
#form textarea:focus{
    border: 1px solid #f2a83b;
    box-shadow: 
        0 0 10px rgba(255, 209, 119, 0.4),
        0 0 20px rgba(255, 209, 119, 0.2);

    background: rgba(26, 26, 26, 0.8);
}
#form textarea{
    min-height: 6vw;
    resize: vertical;
}
#SubmitButton{
    margin-top: 1vw;
    padding: 0.7vw;
    margin-right:0vw;
    width: 20vw;

    border-radius: 6px;
    border: none;

    background: linear-gradient(45deg, #f2a83b, #ffd177);
    color: #1a1a1a;

    font-family: "Poppins", sans-serif;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.3s ease;
}
#SubmitButton:hover{
    transform: translateY(-2px) scale(1.02);

    box-shadow: 
        0 8px 20px rgba(255, 209, 119, 0.4),
        0 0 15px rgba(255, 209, 119, 0.3);
}