/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #d8bfd8; /* Pastel Lilac */
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1e90ff; /* Pastel Blue */
}

main {
    padding: 20px;
}

section {
    margin: 50px 0;
}

.splash {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px); /* Full height minus nav height */
    overflow: hidden;
}

.splash img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clock {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    font-size: 2rem;
    border-radius: 5px;
    color: #333;
}

#about {
    background-color: #add8e6; /* Pastel Blue */
    padding: 20px;
    border-radius: 10px;
}

#investors {
    background-color: #ffc0cb; /* Pastel Pink */
    padding: 20px;
    border-radius: 10px;
}

#contact {
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}
