/*
Theme Name:   Stinis Custom Theme
Theme URI:    https://www.stinis.com
Description:  Custom child theme for Stinis.com, building upon Executive Pro.
Author:       Stinis
Author URI:   https://www.stinis.com
Template:     genesis
Version:      1.0.0
*/

/* Voeg hier uw aangepaste CSS toe */
/* --- Custom Footer Styling --- */

/* Achtergrond en basiskleur voor de hele footer-widget-area */
.footer-widgets {
    background-color: #000000; /* Zwart */
    color: #ffffff; /* Wit */
    padding: 60px 0; /* Ruimte boven en onder */
}

/* Styling voor de titels in de footer (Pages, Contact, Social Media) */
.footer-widgets .widget-title {
    color: #ffffff; /* Wit */
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Styling voor de links in de footer-widgets */
.footer-widgets a,
.footer-widgets a:visited {
    color: #cccccc; /* Lichtgrijs voor links */
    text-decoration: none;
}

/* Styling voor de links als je er met de muis overheen gaat */
.footer-widgets a:hover,
.footer-widgets a:focus {
    color: #ffffff; /* Wit bij hover */
    text-decoration: underline;
}

/* Zorgt ervoor dat de lijstjes (zoals onder Pages) geen bolletjes hebben */
.footer-widgets ul {
    list-style: none;
    padding: 0;
}

.footer-widgets ul li {
    margin-bottom: 10px;
}

/* Styling voor de 'site-footer' (de balk met copyright info) */
.site-footer {
    background-color: #1a1a1a; /* Donkergrijs, net iets anders dan zwart */
    color: #cccccc; /* Lichtgrijs */
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.site-footer a {
    color: #ffffff; /* Wit voor links in de copyright-balk */
    text-decoration: underline;
}

.site-footer a:hover {
    text-decoration: none;
}
/* --- H1, H2, H3 Lettertype en Kapitalen --- */

h1, .h1,
h2, .h2,
h3, .h3 {
    font-family: 'Overpass', sans-serif;
    text-transform: uppercase;
}