/* General Styling */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: url('space.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
}

/* About Section */
#about {
    padding: 3rem 1rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Footer Section */
.footer {
    background: rgba(0, 0, 0, 0.9);
}

.social-icons {
    margin: 1rem 0;
}

.social-link {
    margin: 0 10px;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #00aaff;
}




/* Switch Styling */
.switch-container {
    position: fixed;
    top: 10px;
    right: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Bright Mode Styling */
body.bright-mode, html.bright-mode {
    background-color: white;
    color: black;
}

body.bright-mode .hero {
    background: url('earth.jpg') no-repeat center center/cover;
}

body.bright-mode .footer {
    background: rgba(255, 255, 255, 0.9);
}

body.bright-mode .social-link {
    color: black;
}

body.bright-mode .social-link:hover {
    color: #007bff;
}

