/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: transparent; /* Changed to transparent so Three.js canvas shows through */
    color: #4a4a68;
    line-height: 1.6;
    overflow-x: hidden;
}



/* Three.js Canvas */
#space-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Glass Header (Prism/Light feel based on 2nd reference image) */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    
    /* Iridescent/prism light pastel gradient with transparency */
    background: linear-gradient(135deg, rgba(235, 245, 255, 0.6) 0%, rgba(255, 240, 250, 0.5) 50%, rgba(230, 255, 250, 0.6) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(200, 220, 240, 0.2);
}

.logo {
    text-decoration: none;
    font-weight: 600;
    font-size: 2.4rem; /* Increased size as requested */
    letter-spacing: 4px;
    /* Soft gradient text for the logo */
    background: linear-gradient(90deg, #7baaf2, #eba0d5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1.transparent-text {

	color:rgba(0,0,0,0.3);

    background-image: linear-gradient(
		70deg,
		rgb(211, 209, 209, 0.3)  45%, 
		#fff 50%,
		rgb(211, 209, 209, 0.3) 55% 
	  );
	  background-size: 500% 100%;
    background-clip: text;
  	-webkit-background-clip: text;
	  color: transparent;
    animation: shine 6s infinite;
}



nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: #797992;
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

nav a:hover, nav a.active {
    color: #7baaf2;
    text-shadow: 0 0 15px rgba(123, 170, 242, 0.5);
}

/* Mobile responsive menu variables */
.menu-toggle {
    display: none;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}
.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #7baaf2;
    border-radius: 3px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    header {
        padding: 1.2rem 2rem;
    }
    .hamburger {
        display: flex; /* Show hamburger on mobile */
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(253, 253, 253, 0.95);
        backdrop-filter: blur(15px);
        box-shadow: 0 10px 30px rgba(200, 220, 240, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 2rem;
    }
    /* Menu Open State */
    .menu-toggle:checked ~ .nav-menu {
        max-height: 400px; /* Expands the menu */
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}


/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


@keyframes shine {
	0% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


/* Basic layout for Music section */
.music-section {
    padding: 6rem 3rem 8rem;
    max-width: 900px;
    margin: 0 auto;
}

.music-section h2 {
    font-weight: 300;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 3px;
    color: #5a5a78;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2.5rem;
    background: rgba(250, 252, 255, 0.6);
    border: 1px solid rgba(220, 235, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.track-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(200, 220, 240, 0.5);
}

.track-info {
    display: flex;
    flex-direction: column;
}

.track-title {
    font-weight: 600;
    font-size: 1.3rem;
    color: #5a5a78;
}

.track-credit {
    font-size: 0.95rem;
    color: #9a9ab5;
    margin-top: 0.4rem;
}

/* Audio Player Customization */
.audio-container {
    width: 280px;
}

audio {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    outline: none;
}

/* Light styling for default webkit controls to match design */
audio::-webkit-media-controls-panel {
    background-color: rgba(255, 255, 255, 0.7);
}
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

/* --- MPA Layout Adjustments --- */
.page-content {
    min-height: 100vh;
    padding-top: 100px; /* Space for the fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Reusing hero styling for info sections */
.info-section, .contact-section {
    padding: 4rem 3rem 8rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.info-section h2, .contact-section h2 {
    font-weight: 300;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    color: #4a4a68;
}

.glass-panel {
    background: rgba(253, 253, 255, 0.65);
    border: 1px solid rgba(220, 235, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(200, 220, 240, 0.3);
}

.glass-panel p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a5a78;
}

.glass-panel h3 {
    font-weight: 400;
    margin-bottom: 1rem;
    color: #4a4a68;
}

/* --- Language Toggle --- */
.lang-toggle {
    font-weight: 600 !important;
    background: linear-gradient(135deg, rgba(166, 192, 254, 0.2), rgba(251, 194, 235, 0.2));
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(166, 192, 254, 0.4);
}

/* --- Contact Form Styling --- */
.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.input-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
    flex: 1;
}

.input-group label {
    font-size: 0.95rem;
    color: #797992;
    margin-bottom: 0.4rem;
    margin-left: 0.5rem;
}

.input-group input, .input-group textarea {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(166, 192, 254, 0.4);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    color: #4a4a68;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus, .input-group textarea:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: #7baaf2;
    box-shadow: 0 0 15px rgba(123, 170, 242, 0.2);
}

.submit-btn {
    width: 100%;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    color: white;
    background: linear-gradient(135deg, #a6c0fe 0%, #fbc2eb 100%);
    padding: 1rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-top: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(166, 192, 254, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 192, 254, 0.6);
}

.status-msg {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}
.status-msg.success {
    background: rgba(143, 222, 158, 0.2);
    color: #4a8c54;
    border: 1px solid #8fde9e;
}
.status-msg.error {
    background: rgba(255, 136, 170, 0.2);
    color: #b33959;
    border: 1px solid #ff88aa;
}

.recaptcha-notice {
    font-size: 0.8rem;
    color: #9a9ab5;
    text-align: center;
    margin-top: 1.5rem;
}
.recaptcha-notice a {
    color: #7baaf2;
}

@media (max-width: 600px) {
    .input-row {
        flex-direction: column;
        gap: 0;
    }
}

/* --- News Section --- */
.news-section {
    padding: 2rem 3rem 8rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.news-section h2 {
    font-weight: 300;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    color: #5a5a78;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.news-item {
    background: rgba(253, 253, 255, 0.65);
    border: 1px solid rgba(220, 235, 255, 0.8);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 15px rgba(200, 220, 240, 0.1);
    transition: transform 0.3s ease;
}
.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 220, 240, 0.3);
}
.news-date {
    font-size: 0.9rem;
    color: #9a9ab5;
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.news-title {
    font-size: 1.1rem;
    color: #5a5a78;
}
.news-title a {
    color: #7baaf2;
    text-decoration: none;
}
.news-title a:hover {
    text-decoration: underline;
}

