/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

/* Logo */
.logo-container {
    padding: 2rem 0 1rem;
    width: 100%;
    display: flex;
    justify-content: center; 
}

.logo {
    width: 200px;
    max-width: 90vw;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.motto {
    margin-top: 0.5rem;
    font-size: 1.05rem;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.social-btn {
    width: 100%;
    display: block;
    text-align: center;
    background-color: #1e1e1e;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #2a2a2a;
    border-color: #ffffff33;
    transform: translateY(-2px);
}

/* Footer */
footer {
    margin-top: auto;
    padding: 1rem 0 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.heart {
    display: inline-block;
    color: #ff4b5c;
    animation: heartbeat 1.5s infinite;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .logo {
        width: 140px;
    }
    .social-links {
        width: 98vw;
        max-width: 98vw;
        padding: 1rem;
    }
    .social-btn {
        border-radius: 0;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .logo {
        width: 160px;
    }
    .social-links {
        width: 70vw;
        max-width: 70vw;
        padding: 2rem;
    }
}

@media (min-width: 1025px) {
    .logo {
        width: 200px;
    }
    .social-links {
        width: 50vw;
        max-width: 600px;
        min-width: 320px;
        margin: 0 auto;
    }
}

/* dark mode */

/* Theme Toggle Button */
#theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.7rem;
    margin-left: auto;
    /* margin-right: 2rem;
    margin-top: 1rem; */
    margin: 1rem 0 1rem 0;
    color: inherit;
    transition: color 0.3s;
}

#theme-toggle:focus {
    outline: 2px solid #888;
}

/* Smooth background and color transitions */
body {
    transition: background-color 0.5s, color 0.5s;
}

/* Light theme styles */
body.light {
    background-color: #f6f6f6;
    color: #222;
}

body.light .social-btn {
    background-color: #fff;
    color: #222;
    border: 1px solid #bbb;
}

body.light .social-btn:hover {
    background-color: #eaeaea;
    border-color: #2222;
}

body.light .heart {
    color: #e63946;
}
body.light .logo {
    content: url('logo-black.png'); /* Use your black text logo here */
}