/* NAV */
* {
    font-family: "Outfit", sans-serif;
    /* //crimson red */
    --primary-color: #4b3621;
    --body-text-color: #222;
    --heading-color: black;
}

nav {
    background-color: var(--primary-color);
    padding: 1rem;
    z-index: 1000;
    width: 100%;
    height: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #f4c430;
}

.section-main-content {
    /* margin-top: 160px; */
}
/* FOOTER */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    font-family: "Poppins", sans-serif;
}

footer h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

footer ul li a:hover {
    color: #f4c430;
}

.inner-container {
    width: 70%;
    margin: 0 auto;
}
.outer-container {
    margin: 0 1rem;
}

.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 9999;
}

.floating-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.floating-icons a:hover {
    transform: scale(1.3);
}

.floating-icons svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@media (max-width: 1024px) {
    nav ul {
        width: max-content;
        background: black;
        padding: 1rem;
        border-radius: 5px;
    }
}

strong {
    font-weight: 900;
    color: black;
    font-size: 1.2rem;
}
