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

/* Global Styles */
body {
    font-family: 'Titillium Web', sans-serif;
    color: #d0d0d0;
    background: linear-gradient(135deg, #000000 0%, #0a102a 100%);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1; /* Takes up the remaining space to push the footer down */
}

/* Header and Navigation */
header {
    background-color: #00b0ff3b;
    padding: 1rem;
    box-shadow: 0 4px 5px 2px rgba(0, 153, 255, 0.3);
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 5px #00bfff);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: #66cfff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #33b5ff;
}

/* Hero Section */
.hero {
    color: #fff;
    text-align: center;
    padding: 6rem 1rem;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #33b5ff, 0 0 20px #0099ff;
}

.hero p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-button {
    background-color: #0099ff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.hero-button:hover {
    background-color: #006bb3;
    box-shadow: 0 4px 15px rgba(0, 107, 179, 0.5);
}

/* Footer */
footer {
    background-color: #00b0ff3b;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0 -4px 5px 2px rgba(0, 153, 255, 0.3);
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    font-size: 0.9rem;
}

/* Social Media Section */
.social-media-section {
    background-color: #0f1015;
    color: #8ab4f8;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(138, 180, 248, 0.3);
    border-bottom: 1px solid rgba(138, 180, 248, 0.3);
}

.social-media-section h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}

/* Social Media Links */
.social-media {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-media a {
    color: #ffffff;
    font-size: 2rem;
    transition: color 0.3s, transform 0.3s;
}

.social-media a:hover {
    color: #00bfff;
    transform: scale(1.2);
}
