/* Gewerbeverein Laudenbach Stylesheet */

/* ----
** Filename: project.css
** Source: static/project.css 

** Table of content: */
/* 1: general */
/* 2: colors */
/* 3: navbar */
/* 4: buttons */
/* 5: banner */
/* 6: typography */
/* 7: footer */


/* 
** 1: general
** Source: static/project/general.css
** Last update: 2025-01-28 10:19:13 by b.mandel
*/

body {
    font-family: 'Work Sans';
}

.row-badge {
    margin-top: -18px;
}

.row-outline {
    border: 3px solid #171540;
}
@media only screen and (max-width: 600px) {
    .row-outline {
        border: none;
    }
}
/* 
** 2: colors
** Source: static/project/colors.css
** Last update: 2025-01-27 18:51:12 by b.mandel
*/

/* background colors */
.bg-purple-primary       {background-color: #302a7f;}
.bg-purple-secondary     {background-color: #9795c0;}
.bg-purple-tertiary      {background-color: #bdbbe0;}
.bg-green-primary        {background-color: #77af42;}
.bg-green-secondary      {background-color: #b5ca8d;}  
.bg-darkblue-primary     {background-color: #171540;}

/* text colors */
.text-darkblue           {color: #171540;}
/* 
** 3: navbar
** Source: static/project/navbar.css
** Last update: 2025-01-28 11:36:03 by b.mandel
*/

#navbar li>a {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #302a7f;
    transition: .3s;
    font-weight: 600;
}
#navbar .nav-item:hover {
    color: #171540;
    text-decoration: underline;
}


#navbar .btn-green-primary-nav {
    background-color: #77af42;
    color: #ffffff;
    font-weight: 300;
}
#navbar .btn-green-primary-nav:hover {
    background-color: #302a7f;
    color: #fff;
    text-decoration: none;
}
/* 
** 4: buttons
** Source: static/project/buttons.css
** Last update: 2026-04-07 05:16:43 by p.blank
*/

.btn-green-primary {
    background-color: #77af42;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 12px 48px ;
}
.btn-green-primary:hover,
.btn-green-primary.is-checked {
    background-color: #302a7f;
    color: #fff;
    text-decoration: none;
    border-color: #302a7f;
}

.btn-purple-primary {
    background-color: #302a7f;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 12px 48px;
    transition: .3s;
}
.btn-purple-primary:hover {
    background-color: #fff;
    color: #302a7f;
    text-decoration: none;
}


/* cta */
.btn-green-primary-cta {
    background-color: #77af42;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 12px 48px ;
}
.btn-green-primary-cta:hover {
    background-color: #fff;
    color: #302a7f;
    text-decoration: none;
}
/* 
** 5: banner
** Source: static/project/banner.css
** Last update: 2025-01-27 17:40:43 by b.mandel
*/

 /* Banner */
    .banner {
      position: relative;
      background-image: url('/assets/img/content/slider-1-06f2ceac.webp'); /* Hintergrundbild */
      background-size: cover;
      background-position: center;
      _height: 400px; /* Höhe des Banners */
      color: white; /* Textfarbe */
    }

    /* Overlay */
    .banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8); /* Halbdurchsichtiges schwarzes Overlay */
    }

    /* Banner Text */
    .banner-text {
      position: relative;
      z-index: 1; /* Text wird über dem Overlay angezeigt */
      font-size: 2.5rem;
      text-align: left;
      font-weight: bold;
      padding-top: 4vh;
      padding-bottom: 4vh;
      padding-left: 0px;
    }
    
    @media only screen and (max-width: 600px) {
        .banner-text {
            padding-left: 0;
        }
    }
    
/* 
** 6: typography
** Source: static/project/typography.css
** Last update: 2025-01-28 09:41:39 by b.mandel
*/

p {
    font-size: 1.2em;
}

.heading-badge-purple {
    margin-left: -18px;
    margin-top: -18px;
    z-index: 1;
    position: relative;
    color: #fff;
    font-size: 1.2em;
    background-color: #302a7f;
    text-transform: uppercase;
}

.heading-badge-green {
    margin-left: -18px;
    z-index: 1;
    position: relative;
    color: #302a7f;
    font-size: 1.2em;
    background-color: #77af42;
    text-transform: uppercase;
}

.heading-badge-darkblue {
    margin-left: -18px;
    z-index: 1;
    position: relative;
    color: #fff;
    font-size: 1.2em;
    background-color: #171540;
    text-transform: uppercase;
}

.presentation-box {
    border: 2px solid #fff;
    border-radius: 0;
}

.presentation-box>span {
    color: #fff;
    display: block;
    padding: 30px 0px 0px 0px;
    text-align: center;
    font-weight: 600;
    font-size: 4.8em;
}
/* 
** 7: footer
** Source: static/project/footer.css
** Last update: 2025-01-28 12:19:46 by b.mandel
*/

#footer li { 
    _color: #302a7f;
    font-size: 1em;
}

#footer { 
    font-size: 1em;
    border-top: 3px solid #171540;
}

#footer li > a{
    font-size: 1em;
    color: #302a7f;
}
