/* Custom styles for tetsuakibaba.jp */

body {
    background-color: #f0f2f5;
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-bs-theme="dark"] body {
    background-color: #121212;
}

.profile-card {
    border-radius: 2rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

[data-bs-theme="light"] .profile-card {
    background-color: #ffffff;
}

[data-bs-theme="dark"] .profile-card {
    background-color: #1e1e1e;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5) !important;
}

.profile-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-color: var(--bs-primary) !important;
}

/* Social Links Styling */
.social-links .btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--bs-primary);
    background-color: #f8f9fa;
    border: none;
    transition: all 0.2s ease-in-out;
}

.social-links .btn:hover {
    transform: translateY(-3px);
    background-color: var(--bs-primary);
    color: #ffffff;
}

/* Dark mode adjustments for outline buttons */
[data-bs-theme="dark"] .btn-outline-dark {
    color: #f8f9fa;
    border-color: #f8f9fa;
}

[data-bs-theme="dark"] .btn-outline-dark:hover {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

/* Dark mode adjustments for outline primary buttons */
[data-bs-theme="dark"] .btn-outline-primary {
    color: #f8f9fa;
    border-color: #f8f9fa;
}

[data-bs-theme="dark"] .btn-outline-primary:hover {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

/* Dark mode adjustments for outline secondary buttons */
[data-bs-theme="dark"] .btn-outline-secondary {
    color: #e9ecef;
    border-color: #e9ecef;
}

[data-bs-theme="dark"] .btn-outline-secondary:hover {
    color: #000;
    background-color: #e9ecef;
    border-color: #e9ecef;
}

[data-bs-theme="dark"] .social-links .btn {
    background-color: #2c3035;
    color: #6ea8fe;
}

[data-bs-theme="dark"] .social-links .btn:hover {
    background-color: #6ea8fe;
    color: #121212;
    box-shadow: 0 5px 15px rgba(110, 168, 254, 0.3);
}

/* Link Styling */
a {
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Typography adjustments */
h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.5px;
}

/* Modal Styling */
.modal-content {
    border-radius: 2rem;
}