
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Crimson+Pro:ital,wght@0,300;0,400;1,300&display=swap");

:root {
    --star-white: #e8eeff;
    --dim: #6b72a8;
    --border: rgba(255, 255, 255, 0.06);
    --card-bg: rgba(10, 22, 40, 0.3);
    --card-bg-hover: rgba(10, 22, 40, 0.6);
    --accent: rgba(255, 209, 102, 0.3);
    --grid-blue: #4a4e8e;
}

body {
    margin: 0;
    padding: 0;
    background-image: url("../newimages/background.jpg");
    background-size: cover;
}

.wholepage {
    display: flex;
    flex-direction: column;
    align-items: center;

}

#container-page {
    width: 75%;
    height: 80%;
    background-color:  #0b0c1e;
    border-radius: 80px;
    background-image:
        radial-gradient(1px 1px at 5% 8%, white 100%, transparent),
        radial-gradient(1.5px 1.5px at 12% 35%, #ccd6ff 100%, transparent),
        radial-gradient(1px 1px at 18% 60%, white 100%, transparent),
        radial-gradient(2px 2px at 22% 15%, #fff5cc 100%, transparent),
        radial-gradient(1px 1px at 28% 80%, white 100%, transparent),
        radial-gradient(1.5px 1.5px at 33% 45%, #ccd6ff 100%, transparent),
        radial-gradient(1px 1px at 38% 22%, white 100%, transparent),
        radial-gradient(2px 2px at 42% 70%, #ffdddd 100%, transparent),
        radial-gradient(1px 1px at 47% 5%, white 100%, transparent),
        radial-gradient(1.5px 1.5px at 53% 55%, #fff5cc 100%, transparent),
        radial-gradient(1px 1px at 58% 38%, white 100%, transparent),
        radial-gradient(2px 2px at 63% 90%, #ccd6ff 100%, transparent),
        radial-gradient(1px 1px at 67% 25%, white 100%, transparent),
        radial-gradient(1.5px 1.5px at 72% 65%, white 100%, transparent),
        radial-gradient(1px 1px at 76% 12%, #ffdddd 100%, transparent),
        radial-gradient(2px 2px at 80% 48%, #fff5cc 100%, transparent),
        radial-gradient(1px 1px at 84% 78%, white 100%, transparent),
        radial-gradient(1.5px 1.5px at 88% 30%, #ccd6ff 100%, transparent),
        radial-gradient(1px 1px at 92% 55%, white 100%, transparent),
        radial-gradient(2px 2px at 96% 18%, white 100%, transparent),
        radial-gradient(1px 1px at 15% 92%, #fff5cc 100%, transparent),
        radial-gradient(1.5px 1.5px at 44% 88%, white 100%, transparent),
        radial-gradient(1px 1px at 65% 95%, #ccd6ff 100%, transparent),
        radial-gradient(2px 2px at 8% 50%, white 100%, transparent),
        radial-gradient(1px 1px at 55% 72%, #ffdddd 100%, transparent),
        radial-gradient(1.5px 1.5px at 35% 10%, white 100%, transparent),
        radial-gradient(1px 1px at 78% 85%, #fff5cc 100%, transparent),
        radial-gradient(2px 2px at 25% 55%, white 100%, transparent),
        radial-gradient(1px 1px at 90% 72%, white 100%, transparent),
        radial-gradient(1.5px 1.5px at 50% 95%, #ccd6ff 100%, transparent);

}

#header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:-100px;
}

.logo {
    width: 225px;
    height: 225px;
    animation: eclipse-glow 12s infinite alternate ease-in-out;
}

@keyframes eclipse-glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2))
                drop-shadow(0 0 20px rgba(100, 100, 255, 0.1));
    }
    25% {
        filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.8))
                drop-shadow(0 0 40px rgba(79, 70, 229, 0.5))
                drop-shadow(0 0 60px rgba(59, 130, 246, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8))
                drop-shadow(0 0 40px rgba(245, 158, 11, 0.5))
                drop-shadow(0 0 60px rgba(239, 68, 68, 0.3));
    }
    75% {
        filter: drop-shadow(0 0 20px rgba(52, 211, 153, 0.8))
                drop-shadow(0 0 40px rgba(56, 189, 248, 0.5))
                drop-shadow(0 0 60px rgba(99, 102, 241, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8))
                drop-shadow(0 0 50px rgba(196, 181, 253, 0.5))
                drop-shadow(0 0 75px rgba(147, 51, 234, 0.3));
    }
}

#secondheader {
    display: flex;
    justify-content: center;
    align-items: center;
}

#fs {
    font-family: "Cinzel Decorative", cursive;
    color: white;
    text-align: center;
}

#secondheader h1,
#secondheader p {
    margin: 0;
}

#mainpage {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.imagegrid {
    display:grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 5px;
    place-items:center;
    margin-top: 75px;
    margin-bottom: 50px;
    justify-content:center;

}

.imagegrid a {
    display: contents;
    text-decoration:none;
}

.imagegrid a:hover img {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.95));
    opacity: 0.85;
    transition: all 0.3s ease;
}

.bunny1, .bunny2, .bunny3 {
    transition: all 0.3s ease;
}

.bunny1 {
    width: 225px;
    height: 225px;
    grid-column: 2/4;
    grid-row:1/2;
    border: #4a4e8e 5px solid;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
}

.bunny2 {
    width: 225px;
    height: 225px;
    grid-column: 8/10;
    grid-row: 1/2;
       border: #4a4e8e 5px solid;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
}

.bunny3 {
    width: 225px;
    height: 225px;
    grid-column: 5/7;
    grid-row: 1/2;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
}

.textboxgrid {
    display: grid;
    grid-template-rows: repeat(3,1fr);
    gap:20px;
    margin: 30px;
    color: #4a4e8e;

}

#description1{
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    background: rgba(10,22,40,0.3);
    transition: border-color 0.3s, background 0.3s;
    width: 600px;


}

#description1:hover {
    border-color: rgba(255,209,102,0.3);
    background: rgba(10,22,40,0.6);

}

#description2{
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    background: rgba(10,22,40,0.3);
    transition: border-color 0.3s, background 0.3s;

}

#description2:hover {
    border-color: rgba(255,209,102,0.3);
    background: rgba(10,22,40,0.6);

}

#description3{
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    background: rgba(10,22,40,0.3);
    transition: border-color 0.3s, background 0.3s;

}

#description3:hover {
    border-color: rgba(255,209,102,0.3);
    background: rgba(10,22,40,0.6);

}

.star-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--c);
}

.star-type-info { flex: 1; }
.star-type-name {
    font-family: 'Crimson Pro', serif;
    font-size: 0.85rem;
    color: var(--star-white);
    margin-bottom: 0.2rem;
}
.star-type-desc {
    font-size: 0.75rem;
    color: var(--dim);
    line-height: 1.5;
}

.star-temp {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--dim);
    text-align: right;
    white-space: nowrap;
}

#footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    margin-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--dim);
    font-family: 'Crimson Pro', serif;
    font-size: 0.85rem;
}

.social {
    display: flex;
    gap: 16px;
}

.social a img {
    width: 28px;
    height: 28px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.social a:hover img {
    opacity: 1;
}

@media (max-width: 700px) {
    .imagegrid {
        grid-template-columns: repeat(2, 1fr);
    }

    #container-page {
        border-radius: 30px;
    }

    #mainpage {
        padding: 0 20px;
    }

    #footer {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        text-align: center;
    }
}
