* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Quicksand", sans-serif;
    color: black;
    overflow-x: hidden;
    background: #FFF9F2;
}
.page {
    min-height: 100vh;
    background: white;
    animation: pageReveal 1.2s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes pageReveal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;

    display: flex;
    align-items: center;
    padding: 0 35px;
    gap: 35px;

    /* Plus opaque */
    background: rgba(255, 249, 242, 0.932);

    backdrop-filter: blur(123px);
    -webkit-backdrop-filter: blur(123px);

    border-bottom: 1px solid rgba(23, 50, 77, 0.09);

    box-shadow:
        0 8px 25px rgba(23, 50, 77, 0.08);

    z-index: 100000;

    animation:
        navReveal .9s
        cubic-bezier(.22, 1, .36, 1)
        .1s both;
}

@keyframes navReveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.brand {
    text-decoration: none;
}

.brand:link,
.brand:visited,
.brand:hover,
.brand:active {
    text-decoration: none;
}

.brand-name {
    text-decoration: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
    transition:
        transform .3s ease;
}
.brand:hover {
    transform:
        translateY(-2px);
}
.fox {
    width: 55px;
    height: 55px;
    object-fit: cover;
  

    transition:
        transform .3s ease,
        box-shadow .3s ease;
        background:none;
}
.brand:hover .fox {
    transform:
        rotate(-4deg)
        scale(1.04);

}
.brand-name {
    font-size: 30px;
    font-weight: 600;
    color: #17324D;
    text-decoration: none;

}
.index-1,
.about-1,
.faq-1,
.story-1,
.involve-1,
.donate-1 {
    position: absolute;
    display: flex;
    align-items: center;
    border: none;
    background: transparent;
    color: #17324D;
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition:
        transform .3s ease,
        color .25s ease,
        opacity .25s ease;
}
.index-1 {
    margin-left: 365px;
}
.about-1 {
    margin-left: 515px;
}
.faq-1 {
    margin-left: 565px;
}
.story-1 {
    margin-left: 610px;
}
.involve-1 {
    margin-left: 665px;
}
.donate-1 {
    margin-left: 790px;
}
.index-1,
.involve-1 {
    cursor: pointer;
}
.index-1.open .triangle,
.involve-1.open .triangle {
    transform:
        rotate(180deg);
}
.triangle {
    display: inline-block;
    margin-left: 5px;
    font-size: 19px;
    transform-origin: center;
    transition:
        transform .35s ease;
}
.index-1:hover,
.about-1:hover,
.faq-1:hover,
.story-1:hover,
.involve-1:hover,
.donate-1:hover {
    color: #39A6A3;
    transform:
        translateY(-2px);
}
.donate-1 {
    border:
        3px solid #17324D;
    border-radius: 35px;
    padding:
        9px 21px;
}
.donate-1:hover {
    color: #39A6A3;
    border-color:
        #39A6A3;
}
.explore-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background:
        rgb(255, 249, 242);
    backdrop-filter:
        blur(123px);
    -webkit-backdrop-filter:
        blur(123px);
    border-top:
        1px solid rgba(23, 50, 77, 0.07);
    border-bottom:
        1px solid rgba(23, 50, 77, 0.07);
    box-shadow:
        0 15px 40px rgba(23, 50, 77, .08);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform:
        translateY(-100%);
    pointer-events: none;
    transition:
        transform .5s cubic-bezier(.22, 1, .36, 1),
        opacity .35s ease,
        visibility .5s ease;
}
.explore-menu.open {
    opacity: 1;
    visibility: visible;
    transform:
        translateY(0);
    pointer-events: auto;
}
.explore-menu-content {
    width: 100%;
    height: 100%;
    padding:
        45px 8%;
    overflow-y: auto;
}
.explore-menu-header {
    margin-bottom: 35px;
}
.explore-menu-header h2 {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #17324D;
    letter-spacing: -1.5px;
}
.explore-menu-header p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #526A7A;
}
.explore-menu-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.explore-item {
   display:block;
    background:transparent;
    border:none;
      
}
.explore-item:hover {
    transform:
        translateY(-5px);
    background:
       transparent;
    box-shadow:
        0 10px 30px rgba(23, 50, 77, .08);
}
.explore-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #17324D;
}
.explore-item p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #526A7A;
}







.explore-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background:
        rgba(255, 249, 242, 0.82);
    backdrop-filter:
        blur(12px);
    -webkit-backdrop-filter:
        blur(12px);
    border-top:
        1px solid rgba(23, 50, 77, 0.07);
    border-bottom:
        1px solid rgba(23, 50, 77, 0.07);
    box-shadow:
        0 15px 40px rgba(23, 50, 77, .08);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform:
        translateY(-100%);
    pointer-events: none;
    transition:
        transform .5s cubic-bezier(.22, 1, .36, 1),
        opacity .35s ease,
        visibility .5s ease;
}
.explore-menu.open {
    opacity: 1;
    visibility: visible;
    transform:
        translateY(0);
    pointer-events: auto;
}
.explore-menu-content {
    width: 100%;
    height: 100%;
    padding:
        45px 8%;
    overflow-y: auto;
}
.explore-menu-header {
    margin-bottom: 35px;
}
.explore-menu-header h2 {
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #17324D;
    letter-spacing: -1.5px;
}
.explore-menu-header p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #526A7A;
}
.explore-menu-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.explore-item {
    padding: 25px;
    background:none;
    display:block;
    border:none;
    border-radius: 16px;
    backdrop-filter:
        blur(10px);
    -webkit-backdrop-filter:
        blur(10px);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}
.explore-item:hover {
    transform:
        translateY(-5px);
    background:
        rgba(255, 249, 242, .65);
    box-shadow:
        0 10px 30px rgba(23, 50, 77, .08);
}
.explore-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #17324D;
}
.explore-item p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #526A7A;
}

.signin-button {
    border: none;
    border-radius: 20px;
    padding:
        12px 25px;
    background:
        transparent;
    color: #17324D;
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform .3s ease,
        color .25s ease,
        background .25s ease;
}
.signin-button:hover {
    transform:
        translateY(-2px);
    color:
        #39A6A3;
    background:
        rgba(57, 166, 163, .08);
}
.signup-button {
    border: none;
    height: 45px;
    min-width: 100px;
    padding:
        0 22px;
    border-radius: 35px;
    background:
        #17324D;
    color:
        #FFF9F2;
    font-family:
        "Quicksand",
        sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 18px rgba(23, 50, 77, .13);
    transition:
        transform .3s ease,
        background .25s ease,
        box-shadow .25s ease;
}
.signup-button:hover {
    transform:
        translateY(-3px);
    background:
        #39A6A3;
    box-shadow:
        0 12px 25px rgba(57, 166, 163, .22);
}

.explore-menu-content {
    display: block;
}

.dropdown-panel {
    display: none;
    width: 100%;
}

.dropdown-panel.active {
    display: block;
}

.get-involved-menu {
    display: contents;
}

.explore-menu-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.get-involved-panel .explore-item {
    min-height: 150px;
}

/* =====================================================
   DROPDOWN ITEMS — VERTICAL, NO BACKGROUND, PAGE LINKS
   ===================================================== */

.explore-menu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
}

.explore-item {
    display: block;
    width: 100%;
    padding: 18px 0;
    margin: 0;
    background: transparent !important;
    border: none;
    border-radius: 0;
    box-shadow: none !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #17324D;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform .25s ease,
        color .25s ease;
}

.explore-item:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: translateX(8px);
}

.explore-item h3 {
    margin: 0 0 7px;
    color: #17324D;
    font-size: 20px;
    font-weight: 600;
}

.explore-item p {
    margin: 0;
    max-width: 650px;
    color: #526A7A;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.explore-item:focus-visible {
    outline: 3px solid rgba(57, 166, 163, .35);
    outline-offset: 6px;
    border-radius: 4px;
}

.get-involved-panel .explore-item {
    min-height: 0;
}

@media (max-width: 650px) {
    .explore-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .explore-menu-content {
        padding: 35px 7%;
    }

    .explore-menu-list {
        gap: 0;
    }

    .explore-item {
        padding: 15px 0;
    }
}

@media (max-width: 1200px) {
    .index-1 {
        margin-left: 300px;
    }
    .about-1 {
        margin-left: 440px;
    }
    .faq-1 {
        margin-left: 490px;
    }
    .story-1 {
        margin-left: 540px;
    }
    .involve-1 {
        margin-left: 590px;
    }
    .donate-1 {
        margin-left: 705px;
    }
    .stories-container {
        grid-template-columns:
            repeat(3, 1fr);
        gap: 20px;
    }
}
@media (max-width: 900px) {
    .top {
        padding:
            0 20px;
        gap: 15px;
    }
    .brand-name {
        font-size: 24px;
    }
    .fox {
        width: 45px;
        height: 45px;
    }
    .index-1,
    .about-1,
    .faq-1,
    .story-1,
    .involve-1,
    .donate-1 {
        position: static;
        margin-left: 0;
    }
    .stories-container {
        grid-template-columns:
            1fr;
        max-width: 500px;
    }
    .space {
        padding:
            100px 8%;
    }
    .creator {
        margin-left: 8%;
        margin-right: 8%;
    }
}
@media (max-width: 768px) {
    .space .bga-05__terrain,
    .space .bga-05__ridge {
        inset:
            -100%;
    }
    .front_text {
        font-size: 65px;
        word-spacing: 100px;
    }
    .front_text2 {
        font-size: 38px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior:
            auto;
    }
    *,
    *::before,
    *::after {
        animation-duration:
            .01ms !important;
        animation-iteration-count:
            1 !important;
        transition-duration:
            .01ms !important;
    }
    .space .bga-05__terrain,
    .space .bga-05__ridge {
        filter:
            none;
        opacity:
            .4;
    }
}
@media (max-width: 650px) {
    .top {
        height: 65px;
        padding:
            0 15px;
        gap: 8px;
    }
    .fox {
        width: 40px;
        height: 40px;
    }
    .brand-name {
        font-size: 20px;
    }
    .index-1,
    .about-1,
    .faq-1,
    .story-1,
    .involve-1,
    .donate-1 {
        display:
            none;
    }
    .signin-button {
        padding:
            8px 12px;
        font-size:
            13px;
    }
    .signup-button {
        height:
            38px;
        min-width:
            75px;
        padding:
            0 12px;
        font-size:
            12px;
    }
  }

.signin-page{
position:relative;
min-height:calc(100vh - 75px);
margin-top:75px;
padding:45px 20px 70px;
display:flex;
justify-content:center;
align-items:flex-start;
background:linear-gradient(135deg,#f7fcfb 0%,#effaf8 48%,#f8fffd 100%);
overflow:hidden;
}

.signin-card{
position:relative;
z-index:5;
width:100%;
max-width:455px;
min-height:555px;
padding:38px 32px 42px;
background:rgba(255,255,255,.94);
border:1px solid rgba(255,255,255,.8);
border-radius:0 0 17px 17px;
box-shadow:0 18px 45px rgba(23,50,77,.10);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
}

.signin-header{
text-align:center;
margin-bottom:28px;
}

.signin-header h1{
font-size:40px;
line-height:1.1;
font-weight:700;
color:#17324D;
margin-bottom:7px;
}

.signin-header p{
font-size:17px;
font-weight:500;
color:#718092;
}

.google-signin{
width:100%;
height:42px;
display:flex;
align-items:center;
justify-content:center;
gap:14px;
border:2px solid #d8e0e5;
border-radius:8px;
background:#fff;
font-family:"Quicksand",sans-serif;
font-size:17px;
font-weight:700;
color:#17324D;
cursor:pointer;
transition:.2s ease;
}

.google-signin:hover{
border-color:#39A6A3;
background:#fbffff;
transform:translateY(-1px);
}

.google-icon{
font-family:Arial,sans-serif;
font-size:20px;
font-weight:700;
color:#4285F4;
}

.signin-divider{
width:100%;
display:flex;
align-items:center;
gap:7px;
margin:30px 0 29px;
}

.signin-divider span{
height:1px;
flex:1;
background:#d9e0e4;
}

.signin-divider p{
font-size:15px;
font-weight:500;
color:#4f5d6c;
white-space:nowrap;
}

.signin-form{
display:flex;
flex-direction:column;
gap:18px;
}

.form-group{
display:flex;
flex-direction:column;
gap:8px;
}

.form-group label{
font-size:17px;
font-weight:700;
color:#17324D;
}

.form-group input{
width:100%;
height:41px;
padding:0 13px;
border:2px solid #dce3e7;
border-radius:8px;
background:#fff;
font-family:"Quicksand",sans-serif;
font-size:17px;
font-weight:500;
color:#17324D;
outline:none;
transition:.2s ease;
}

.form-group input::placeholder{
color:#8791a0;
}

.form-group input:focus{
border-color:#39A6A3;
box-shadow:0 0 0 3px rgba(57,166,163,.10);
}

.password-wrapper{
position:relative;
width:100%;
}

.password-wrapper input{
padding-right:65px;
}

.show-password{
position:absolute;
right:12px;
top:50%;
transform:translateY(-50%);
border:0;
background:transparent;
font-family:"Quicksand",sans-serif;
font-size:14px;
font-weight:700;
color:#39A6A3;
cursor:pointer;
}

.signin-submit{
width:100%;
height:42px;
margin-top:8px;
border:0;
border-radius:25px;
background:#2d9d7f;
color:white;
font-family:"Quicksand",sans-serif;
font-size:17px;
font-weight:700;
cursor:pointer;
box-shadow:0 8px 16px rgba(45,157,127,.18);
transition:.2s ease;
}

.signin-submit:hover{
background:#278d72;
transform:translateY(-1px);
box-shadow:0 10px 20px rgba(45,157,127,.23);
}

.forgot-password{
display:block;
width:max-content;
margin:35px auto 0;
font-size:17px;
font-weight:700;
color:#35957e;
text-decoration:none;
transition:.2s ease;
}

.forgot-password:hover{
color:#17324D;
}

.signup-text{
display:flex;
justify-content:center;
align-items:center;
gap:7px;
margin-top:41px;
font-size:17px;
font-weight:500;
color:#17324D;
}

.signup-text a{
color:#35957e;
font-weight:700;
text-decoration:none;
}

.signup-text a:hover{
color:#17324D;
}

.signin-decoration{
position:absolute;
z-index:1;
border-radius:50%;
border:1px solid rgba(23,50,77,.07);
background:rgba(220,229,230,.45);
}

.signin-decoration-left{
width:145px;
height:90px;
left:-35px;
top:160px;
border-radius:0 70px 70px 0;
}

.signin-decoration-left::after{
content:"";
position:absolute;
width:58px;
height:58px;
right:7px;
top:16px;
border-radius:50%;
background:rgba(224,229,229,.65);
border:1px solid rgba(23,50,77,.08);
}

.signin-decoration-right{
width:105px;
height:105px;
right:-38px;
bottom:90px;
}

.signin-decoration-right::after{
content:"";
position:absolute;
width:70px;
height:70px;
left:17px;
top:17px;
border-radius:50%;
border:1px solid rgba(23,50,77,.08);
background:rgba(222,230,230,.40);
}

@media(max-width:900px){

.signin-page{
padding:35px 20px 60px;
}

.signin-card{
max-width:455px;
}

}

@media(max-width:700px){

.signin-page{
margin-top:0;
min-height:100vh;
padding:35px 18px 50px;
align-items:center;
}

.signin-card{
max-width:500px;
min-height:auto;
padding:35px 28px 38px;
border-radius:18px;
}

.signin-header h1{
font-size:40px;
}

.signin-header p{
font-size:17px;
}

}

@media(max-width:480px){

.signin-page{
padding:25px 14px 40px;
}

.signin-card{
padding:30px 20px 35px;
border-radius:16px;
}

.signin-header{
margin-bottom:25px;
}

.signin-header h1{
font-size:36px;
}

.signin-header p{
font-size:16px;
}

.google-signin{
height:45px;
font-size:16px;
}

.signin-divider{
margin:27px 0;
}

.signin-divider p{
font-size:14px;
}

.form-group label{
font-size:17px;
}

.form-group input{
height:44px;
font-size:16px;
}

.signin-submit{
height:44px;
font-size:17px;
}

.forgot-password{
margin-top:30px;
font-size:16px;
text-align:center;
}

.signup-text{
margin-top:35px;
font-size:16px;
}

.signin-decoration-left{
left:-75px;
}

.signin-decoration-right{
right:-65px;
}

}