/* Import Elegant & Mystic Fonts */
@import url('https://fonts.googleapis.com/css2?family=Spectral&family=Philosopher&display=swap');

/* General Styles */
body {
    font-family: 'Spectral', serif;
    background-color: #0D0D2B; /* Deep cosmic blue */
    color: #E0E0E0; /* Soft silver */
    margin: 0;
    padding: 0;
    background-image: radial-gradient(circle, #3A0CA3 10%, #240046 50%, #10002B 100%); /* Cosmic energy gradient */
}

/* Header */
header {
    background: linear-gradient(90deg, #6A0DAD, #240046);
    padding: 40px;
    text-align: center;
    border-bottom: 3px solid #B3B3B3; /* Soft silver */
    box-shadow: 0px 0px 15px rgba(163, 0, 255, 0.6); /* Cosmic glow */
}

header h1 {
    font-family: 'Philosopher', serif;
    font-size: 3.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E0E0E0; /* Silver */
    text-shadow: 0 0 15px #6A0DAD; /* Ethereal glow */
}

header h2 {
    font-size: 1.5em;
    font-style: italic;
    color: #B3B3B3; /* Soft silver */
}

/* Navigation */
nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    font-family: 'Philosopher', serif;
    color: #E0E0E0;
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    color: #B3B3B3;
    text-shadow: 0px 0px 10px #6A0DAD; /* Cosmic energy glow */
    border-bottom: 2px solid #B3B3B3;
}

/* Section Styling */
section {
    padding: 60px;
    text-align: center;
    font-family: 'Spectral', serif;
    border: none;
    margin: 20px;
    border-radius: 25px; /* Soft curved edges */
    backdrop-filter: blur(8px);
    background: rgba(20, 20, 40, 0.7);
    box-shadow: 0px 0px 20px rgba(163, 0, 255, 0.4); /* Cosmic aura */
}

/* Section Titles */
h2 {
    font-size: 2.5em;
    text-transform: uppercase;
    border-bottom: 2px solid #B3B3B3;
    display: inline-block;
    padding-bottom: 10px;
    text-shadow: 0 0 10px #6A0DAD;
}

/* Contact Section */
#contact {
    background: linear-gradient(90deg, #240046, #10002B);
    border-top: 3px solid #B3B3B3;
    box-shadow: 0px 0px 15px rgba(163, 0, 255, 0.6);
}

/* Footer */
footer {
    background: linear-gradient(90deg, #240046, #10002B);
    text-align: center;
    padding: 20px;
    font-size: 1em;
    font-family: 'Philosopher', serif;
    border-top: 3px solid #B3B3B3;
    color: #B3B3B3;
}
