:root {
    --primary-red: #D90D32;
    --secondary-pink: #D95F76;
    --light-gray: #F2F2F2;
    --dark-gray: #262626;
    --black: #0D0D0D;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    background-color: #fff;
}

.navbar {
    background-color: rgba(13, 13, 13, 0.9);
    padding: 1rem 2rem;
}

.navbar-brand {
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary-pink) !important;
}

.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--secondary-pink);
    border-color: var(--secondary-pink);
}

.btn-outline-light:hover {
    background-color: var(--secondary-pink);
    border-color: var(--secondary-pink);
    color: white;
}

.hero {
    background: linear-gradient(rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.7)), url('https://cdnjs.cloudflare.com/ajax/libs/placeholder-pics/100/1920x1080.png') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 5px;
}

.portfolio-item img {
    transition: transform 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.service-card {
    padding: 30px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: var(--light-gray);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.testimonial-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 5px;
    margin: 15px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.team-card {
    background-color: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin: 0 5px;
    transition: background-color 0.3s;
}

.team-social a:hover {
    background-color: var(--secondary-pink);
}

.contact-info-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 60px 0 0;
}

.footer-title {
    color: var(--secondary-pink);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: white;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-pink);
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.footer-social a:hover {
    background-color: var(--primary-red);
}

.copyright {
    background-color: var(--black);
    padding: 20px 0;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }
}
