:root {
	--accent: #960076;
}

.hero-logo img { 
		max-height: 400px; 
}

h1, h2, h3, h4 {
	color: var(--accent);
}

#our-services img, #covered-events img {
	padding: 1rem 1rem 5rem 1rem;
	margin-top: -3rem;
	box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, .1);
	rotate: 10deg;
}

#covered-events img {
	margin-top: 0;
	box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, .1);
	rotate: -7deg;
}

#what-our-clients-say {
	margin-top: 90px;
	padding: 90px 0;
	background-image: url("../images/testimonials.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

#what-our-clients-say h2 {
	color: white;
	text-shadow: 5px 5px 10px 10px rgba(0, 0, 0, .5);
}

.testimonial-item {
	background: rgba(0, 0, 0, .8);
	color: white;
}

.testimonial-quote, .testimonial-name {
	color: white;
}

.testimonial-role {
	color: white;
}

.site-footer {
    color: white;
    background: #262626;
    border-top: 1px solid var(--accent);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    margin-bottom: 40px;
    text-align: left;
}

/* Tablet: 2x2 grid */
@media (min-width: 768px) and (max-width: 991px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

.footer-column h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-column ul li {
    color: #3AAA35;
    margin-left: 0;
}

.footer-nav {
    justify-content: start;
}

.site-footer .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-nav a,
.footer-column a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer .footer-nav a:hover,
.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}