/* Default Light Mode */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --link-color: #007bff;
    --hover-color: rgb(89, 12, 127);
    --button-bg: #eaeaea;
    --button-text: #000000;
}

/* Dark Mode */
.dark-mode {
    --bg-color: #121212;
    --text-color: #ffffff;
    --link-color: #1e90ff;
    --hover-color: #ffcc00;
    --button-bg: #586c81;
    --button-text: #ffffff;
}

/* Apply Variables */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Inter", sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Center the container in the viewport */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 20px;
    padding: 20px;
}

/* Style the image */
.custom-image {
    width: 400px;
    height: auto;
    border-radius: 10px;
    margin: 10px;
}

/* Style the text container */
.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Style site links */
.site-links, .video-links {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 12px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.site-links li, .video-links li {
    margin-bottom: 10px;
}

.site-links a, .video-links a {
    text-decoration: none;
    font-size: 16px;
    color: var(--text-color);
}

.site-links a:hover, .video-links a:hover {
    text-decoration: underline;
    color: var(--hover-color);
}

/* Toggle Button */
#theme-toggle {
    margin-top: 20px;
    padding: 10px 15px;
    cursor: pointer;
    background-color: var(--button-bg);
    color: var(--button-text);
    border: none;
    border-radius: 15px;
    font-size: 16px;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

#theme-toggle:hover {
    opacity: 0.8;
}

/* Headings */
h1, h3 {
    font-family: "Inter", sans-serif;
}

h1 {
    font-weight: 400;
}

h3 {
    font-weight: 500;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        height: auto;
    }
    .custom-image {
        width: 150px;
    }
    .content {
        align-items: left;
    }
    .site-links {
        text-align: left;
    }
}
