/* styles.css */
body {
    font-family: 'Verdana', sans-serif;
    background: radial-gradient(circle, #3b004b, #2a003b);
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, rgba(75, 0, 100, 0.9), rgba(42, 0, 59, 0.95));
    color: #ffffff;
    position: relative;
}

header .logo-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 50%;
    background: rgba(80, 0, 90, 0.6);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

header .logo {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px violet);
    margin-bottom: 20px;
}

header h1 {
    font-size: 3rem;
    color: #c7aef2;
    margin: 10px 0;
    text-shadow: 0 0 20px violet;
}

header .tagline {
    font-size: 1.5rem;
    color: #f0e6ff;
}

nav {
    background-color: #450049;
    padding: 10px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #c7aef2;
    text-shadow: 0 0 5px silver;
}

main {
    padding: 40px 20px;
    max-width: 900px;
    margin: 30px auto;
    background-color: rgba(75, 0, 100, 0.8);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(200, 200, 255, 0.3);
}

section {
    margin-bottom: 40px;
}

section h2 {
    color: #c7aef2;
    text-shadow: 0 0 10px violet;
    margin-bottom: 15px;
    font-size: 2rem;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #4e0066;
    color: #ffffff;
    font-size: 1rem;
    margin-top: 30px;
}

footer p {
    margin: 0;
}

/* Additional elements for integration */
.logo-container::before {
    content: '';
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: -20px;
    right: -20px;
    border-radius: 50%;
    border: 5px solid rgba(199, 174, 242, 0.4);
    box-shadow: 0 0 30px rgba(199, 174, 242, 0.5);
}

main p {
    line-height: 1.6;
    font-size: 1.1rem;
}

main ul {
    list-style-type: disc;
    margin-left: 20px;
}

main ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

a {
    color: #c7aef2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px violet;
}

header h1.single-line {
    white-space: nowrap;
    font-size: 2.5rem; /* Adjust size to ensure it fits comfortably */
}


