

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}


.btn-main {
    background: transparent;
    border: 1.5px solid var(--yellow);
    color: var(--white);
    padding: 14px 45px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.btn-main:hover {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: #000;
    box-shadow: 0 6px 20px rgba(249, 192, 4, 0.3);
    transform: translateY(-1px);
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("/img/background.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
}

.section {
    padding: 90px 0;
    overflow: hidden;
}

.section p {
    color: var(--white) !important;
}

.section-dark-alt {
    background-color: var(--dark-gray);
}

.img-container {
    border-radius: 20px;
    overflow: hidden;
    background-color: #1877f2;
    padding: 0;
}

.img-container img {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition:  var(--transition);
    width: 100%;

}

.img-container img:hover {
transform: scale(1.1);
}

.category-card {
    border: none;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    background: #222;
}

footer {
    background-color: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid #1a1a1a;
    color: #aaa;
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--yellow);
    margin-right: 12px;
    font-size: 1.1rem;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-links a:hover {
    transform: translateY(-5px);
    color: #fff;
}

.footer-social-links .fb:hover {
    background-color: #1877f2;
}



.footer-social-links .tw:hover {
    background-color: #1da1f2;
}

.footer-social-links .inst:hover {
    background-color: #e4405f;
}

.copyright-bar {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

footer .brand-logo {
    margin-bottom: 20px !important;

}