
/* 1. RESET AND BACKGROUND */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden; 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Gradient matching your vision */
    background: radial-gradient(circle, #fce0a2 0%, #b388eb 70%, #9b63cd 100%);
}

/* 2. THE SLIDING BANNER */
.banner-container {
    width: 100%;
    background-color: #fce0a2; 
    padding: 12px 0;
    position: absolute;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    z-index: 20;
}

.banner-text {
    display: inline-block;
    font-size: 1.2rem;
    color: #9b63cd;
    letter-spacing: 1px;
    animation: slideLeft 15s linear infinite;
}

.banner-text span {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 1.8rem;
    margin: 0 10px;
}

@keyframes slideLeft {
    from { transform: translateX(0%); }
    to { transform: translateX(-50%); } 
}

/* 3. THE CENTER STAR (PNG FROM ASSETS) */
.star-container {
    position: absolute;
    top: 55%; 
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.star-image {
    width: 450px; 
    height: auto;
    /* Only moves on hover as requested */
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.4s ease;
    filter: drop-shadow(0 0 15px rgba(155, 99, 205, 0.3));
}

.gallery-label {
    position: absolute;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 3.2rem;
    color: #fce0a2;
    z-index: 30;
    pointer-events: none; 
    transition: transform 0.6s ease;
}

/* Interaction */
.star-container:hover .star-image {
    transform: scale(1.08) rotate(8deg);
    opacity: 0.9;
}

.star-container:hover .gallery-label {
    transform: scale(1.1);
}

/* 4. CORNER NAVIGATION */
.nav-link {
    position: absolute;
    color: #fce0a2;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

/* Positioning matching your drawing */
.about { bottom: 10%; left: 8%; }
.socials { bottom: 10%; right: 8%; }

/* LOADER STYLES */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #fce0a2 0%, #b388eb 70%, #9b63cd 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Stays above everything */
    transition: opacity 1s ease, visibility 1s ease;
}

.loader-star {
    width: 100px;
    height: auto;
    animation: spinStar 2s linear infinite;
    filter: drop-shadow(0 0 15px rgba(252, 224, 162, 0.5));
}

.loader-text {
    margin-top: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #9b63cd;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.loader-text span {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    text-transform: lowercase;
    font-size: 1.4rem;
}

/* Star spinning animation */
@keyframes spinStar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Class to hide the loader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}