
body {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1 { margin-bottom:2rem; }

.bg-light {
    background: #f7f4ed !important;
}

.bg-dark {
    background: #142800 !important;
    color: #ffffff;
    ;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 80vh;
    color: #ffffff!important;
    background-color: #f8f9fa;
    background-image: url("/images/smart-team-picker.jpg");
    background-size: cover;
    background-position: 50% 50%;
}

.hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}
.hero-content { z-index: 2; }

.hero h1 { font-size:3rem; }

.testimonials {
    display: flex;
    gap: 20px;
    justify-content: space-around;
}

.testimonial {
    max-width: 300px;
    text-align: center;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 5px;
    color: #555;
}
.btn { border-radius:2rem; padding:0.75rem 2rem; }
.btn.btn-primary { background:#64f67b; border-color:#64f67b; color:#142800; }
.btn.btn-secondary { background:#142800; border-color:#142800; color:#ffffff; }
.btn.btn-light { background:#ffffff; border-color:#ffffff; color:#142800; }
.icon-wrapper { background:#64f67b; color:#142800; width:50px; height:50px; border-radius:50%; position: relative; margin-bottom:1.5rem; }
.icon-wrapper svg { position:absolute; top:-5px; left:-5px; }

.navbar { z-index: 2; }
.navbar .btn { border-radius:2rem; padding:0.5rem 1.5rem; }
a { color: #142800; text-decoration: underline; font-weight:700; }



.pitch-football {position: relative; }
.pitch-football .pitch-half:nth-child(1) { padding-bottom:4rem; }
.pitch-football .pitch-half:nth-child(2) { padding-top:4rem; }
/* Center Line */
.pitch-football:after {
    content:"";
    display:block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%; /* Stroke width */
    height: 2px;
    background-color: white;
    transform: translateY(-50%);
}

/* Center Circle */
.pitch-football:before {
    content:"";
    display:block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px; /* Diameter of circle */
    height: 60px;
    border: 2px solid white; /* Stroke width */
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.team-color { display:inline-block; margin-right:0.5rem; margin-left:0.5rem; width:24px; height:24px; border-radius:24px; vertical-align: bottom; }