body {
    background-color: #fff3e0; /* Warm light orange background */
    font-family:  'Lato', sans-serif;
}

h1 {
    color: #ff6f61; /* Warm coral color */
    text-shadow: 2px 2px #ffccbc; /* Subtle warm shadow */
}

.navbar {
    background: linear-gradient(45deg, #ff7043, #ffa726); /* Warm gradient with orange and peach */
}

.nav-link {
    font-weight: bold;
    font-size: 1.1em;
    color: #ffffff; /* White text for contrast */
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: #ffe082; /* Soft yellow on hover */
}

footer {
    background: linear-gradient(45deg, #ff7043, #ffa726); /* Matching gradient with the navbar */
}

.links-section h2 {
    color: #ff7043; /* Matching the navbar for consistency */
    text-shadow: 1px 1px #ffccbc; /* Soft, warm shadow */
}

.list-group-item {
    background-color: #ffecb3; /* Warm pastel yellow */
    border: none;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 12px; /* More rounded for a playful feel */
    transition: background-color 0.3s ease;
}

.list-group-item:hover {
    background-color: #ffd54f; /* Brighter yellow on hover */
}

.vibrant-link {
    font-size: 1.2em;
    font-weight: bold;
    color: #ff8a65; /* Warm peach */
    text-decoration: none;
    transition: color 0.3s ease;
}

.vibrant-link:hover {
    color: #ff7043; /* Darker coral on hover */
}

.link-description {
    margin-top: 5px;
    font-size: 0.9em;
    color: #5d4037; /* Warm brown for text */
}

/* social media */

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Spacing between icons */
}

.social-icon {
    color: #ff7043; /* Warm peach color */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #ff8a65; /* Lighter peach on hover */
    transform: scale(1.2); /* Slightly increase size on hover */
}

.social-icons i {
    margin: 10px;
    cursor: pointer;
}
