/* =========================================
   GRUNDEINSTELLUNGEN: FONTS & VARIABLEN
   ========================================= */

/* Raleway */
@font-face {
    font-family: 'Raleway'; font-style: normal; font-weight: 300;
    src: url('../fonts/raleway-v37-latin-300.woff2') format('woff2'),
         url('../fonts/raleway-v37-latin-300.woff') format('woff');
}
@font-face {
    font-family: 'Raleway'; font-style: normal; font-weight: 400;
    src: url('../fonts/raleway-v37-latin-regular.woff2') format('woff2'),
         url('../fonts/raleway-v37-latin-regular.woff') format('woff');
}
@font-face {
    font-family: 'Raleway'; font-style: italic; font-weight: 400;
    src: url('../fonts/raleway-v37-latin-italic.woff2') format('woff2'),
         url('../fonts/raleway-v37-latin-italic.woff') format('woff');
}
@font-face {
    font-family: 'Raleway'; font-style: normal; font-weight: 500;
    src: url('../fonts/raleway-v37-latin-500.woff2') format('woff2'),
         url('../fonts/raleway-v37-latin-500.woff') format('woff');
}
@font-face {
    font-family: 'Raleway'; font-style: normal; font-weight: 600;
    src: url('../fonts/raleway-v37-latin-600.woff2') format('woff2'),
         url('../fonts/raleway-v37-latin-600.woff') format('woff');
}

/* Domine */
@font-face {
    font-family: 'Domine'; font-style: normal; font-weight: 600;
    src: url('../fonts/domine-v25-latin-600.woff2') format('woff2'),
         url('../fonts/domine-v25-latin-600.woff') format('woff');
}

/* Variablen & Body */
:root {
    --color-white: #ffffff;
    --color-black: #000000;    
    --color-orange: #ed6b06; 
    --color-gray: #e6e6e6;
}

body, html {
    overflow-x: hidden; 
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--color-black);
}


/* =========================================
   TYPOGRAFIE & HILFSKLASSEN
   ========================================= */

h1, .h1-style {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 39px;
    letter-spacing: 0.125em;
    color: var(--color-black);
    text-transform: uppercase;
}

h2, .h2-style {
    font-family: 'Domine', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.125em;
    color: var(--color-orange);
    text-transform: uppercase;
}

p, .body-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--color-black);
}

a {
    color: var(--color-black);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-orange);
   
}

.text-orange { color: var(--color-orange); }
.font-domine { font-family: 'Domine', serif; }
.font-raleway { font-family: 'Raleway', sans-serif; }
.ls-1 { letter-spacing: 0.05em; }
.fi-bold:before { font-weight:bold; }

.scramble-mail {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-style: italic;
}
.scramble-mail:hover {
   
}


/* =========================================
   HEADER
   ========================================= */

#header {
    overflow: visible;
    position: relative;
    z-index: 500;
}

.bg-light-gray {
    background-color: var(--color-gray) !important;
}

.navbar {
    min-height: 80px;
}

.navbar-brand {
    position: absolute;
    top: 0; 
    left: 12px; 
    z-index: 100;
    background-color: var(--color-white);
    border-bottom-right-radius: 100px; 
    padding: 10px 50px 30px 15px;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.05);
}

.navbar-brand::before {
    content: "";
    display: block;
    position: absolute;
    top: 0; bottom: 0;
    right: 100%; 
    width: 100vw; 
    background-color: var(--color-white);
    margin-right: -1px;
}

.navbar-brand>img {
    display: block;
    height: auto;
    max-width: 280px; 
    max-height: 147px;
}

.btn-burger-menu {
    width: 72px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.burger-menu {
    display: block;
    position: relative;
    width: 100%;
    height: 5px;
	margin-top:14px;
    background-color: var(--color-orange);
    border-radius: 10px;
    border: none !important;
    transition: all .3s cubic-bezier(.34, 1.61, .7, 1);
}

.burger-menu::before,
.burger-menu::after {
    content: "";
    position: absolute;
    right: 0;
    height: 5px;
    background-color: var(--color-orange);
    border-radius: 10px;
    border: none !important;
    transition: all .3s cubic-bezier(.34, 1.61, .7, 1);
}

.burger-menu::before {
    width: 60%;
    top:-10px;
}

.burger-menu::after {
    width: 100%;
    top: 12px;
}


.burger-menu-close {
    position: relative;
    top: 16px;
    left: 20px;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

/* =========================================
   FULLSCREEN OVERLAY MENU
   ========================================= */

#fullMenuOver {
    background-color: var(--color-orange);
    overflow-y: auto;
    margin-top:80px;
	opacity: 0.95;
}

.menu-bg-swirls {
    position: absolute;
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    
    background-image: url('../images/Navi_Welle.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    
    opacity: 0.3; /* Optional: Helligkeit anpassen */
    pointer-events: none;
    z-index: 0;
}

.main-nav-list li {
    margin-bottom: 30px;
    position: relative;
}

.main-nav-list li a {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0.125em;
    color: var(--color-white);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    padding-left: 0;
    transition: all 0.3s ease;
}

.main-nav-list li:hover a {
   transform: translateX(50px);
   font-weight: 500;
}

.main-nav-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px; 
    height: 36px;
    transform: translateY(-50%) scale(0); 
    opacity: 0;
    background-image: url('../images/icons-gluehbirne-96.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.main-nav-list li:hover::before {
    transform: translateY(-50%) scale(1); 
    opacity: 1;
}

.nav-special {
    font-family: 'Domine', serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: 0.125em;
    color: var(--color-white);
    text-transform: uppercase;
    margin-top:16px;
}

.contact-text {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

 .border-end-white-lg {
        border-right: 2px solid white;
        padding-right: 0 !important;
        margin-bottom: 40px;
    }

/* =========================================
   HERO & CONTENT SECTIONS
   ========================================= */

.btn-hero-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700; 
    font-size: 14px;
    line-height: 1; 
    letter-spacing: 0.175em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 20px 15px 35px;
    border-radius: 50px 0 0 50px; 
    background-color: var(--color-orange);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: -5px 5px 15px rgba(0,0,0,0.15);
}
.btn-hero-contact i {
    margin-right: 12px;
    font-size: 1.2em;
}
.btn-hero-contact:hover {
    background-color: var(--color-white);
    color: var(--color-orange);
    padding-right: 35px;
}

.bg-decoration-swirls {
    position: absolute;
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    pointer-events: none; 
    z-index: 0;
}

.bg-decoration-swirls {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    pointer-events: none; 
    z-index: 0;

   
    background-image: url('../images/Content_Welle.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

   
    opacity: 0.5; 
}

.project-tile {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 100%; 
    overflow: hidden;
    text-decoration: none;
}
.project-tile img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-tile:hover img {
    transform: scale(1.05);
}
.project-info {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 20px;
    z-index: 10;
}
.project-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 19px; 
    line-height: 25px;
    letter-spacing: 0.05em;
    color: var(--color-white);
    text-transform: uppercase;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
    display: block;
}
.project-tile::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--color-orange);
    opacity: 0; 
    z-index: 5;
    transition: opacity 0.3s ease;
}
.project-tile:hover::before {
    opacity: 0.85;
}

.more-projects-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.more-projects-link i {
    font-size: 40px;
    line-height: 1;
    font-weight: 300;
}
.more-projects-link:hover {
    color: var(--color-orange);
}

.content-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--color-orange);
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    display: block;
}

.list-orange-bullets {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.list-orange-bullets li {
    position: relative;
    padding-left: 15px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-black);
}
.list-orange-bullets li::before {
    content: "•";
    color: var(--color-orange);
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.team-member-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.team-member-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 2px;
    letter-spacing: 0.05em;
}
.team-member-role {
    font-family: 'Raleway', sans-serif;
    font-weight: 400; 
    font-size: 13px;
    color: var(--color-black);
    margin-bottom: 5px;
}
.team-contact-info {
    font-family: 'Raleway', sans-serif;
    font-weight: 400; 
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-black);
}
.team-contact-info .scramble-mail {
    font-style: italic;
    color: var(--color-black);
    text-decoration: none;
}



/* =========================================
   FOOTER
   ========================================= */

#footer.bg-light-gray {
    color: var(--color-black);
}

.footer-company-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 16px; 
    line-height: 24px;
    color: var(--color-black);
    text-transform: uppercase;
}
.footer-address, 
.footer-address a {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-black);
    text-decoration: none;
    font-style: normal;
}
.footer-address a:hover {
    color: var(--color-orange) !important;
}

.footer-nav a {
    position: relative;
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-black);
    text-decoration: none;
    margin-left: 25px;
    margin-bottom: 5px;
}
.footer-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    width: 20px;
    height: 20px;
    background-image: url('../images/icons-gluehbirne-black-96.png');
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.footer-nav a:hover {
    color: var(--color-orange);
    padding-left: 28px; 
}
.footer-nav a:hover::before {
    transform: translateY(-50%) scale(1);
    opacity: 1;
    left: 0; 
}


/* =========================================
   RESPONSIVE & MOBILE FIXES
   ========================================= */

@media (max-width: 991px) {
    
    /* Header Logo */
    .navbar-brand > img {
        max-width: 180px; 
    }
    .navbar-brand {
        padding-right: 40px; 
        padding-bottom: 25px; 
        border-bottom-right-radius: 80px; 
    }

    /* Fullscreen Menu */
    #fullMenuOver .container {
        padding: 70px 25px 50px 25px !important;
        height: 100%;
        overflow-y: auto; 
    }
    #fullMenuOver .row {
        align-items: flex-start !important; 
        margin: 0;
    }
    .main-nav-list li {
        margin-bottom: 15px; 
    }
    .main-nav-list li a {
        font-size: 22px; 
        line-height: 1.3;
        transform: none !important; 
    }
    .main-nav-list li::before {
        display: none !important; 
    }
    .border-end-white-lg {
        border-right: none !important; 
        padding-right: 0 !important;
        margin-bottom: 40px;
    }
    .ps-lg-5 {
        padding-left: 0 !important; 
        margin-top: 0 !important;
    }
    .contact-block {
        padding-left: 0; 
    }
    .nav-special {
        font-size: 24px; 
        margin-bottom: 20px !important;
    }
    .contact-text {
        font-size: 15px; 
    }
    #fullMenuOver > a.position-absolute {
        top: 15px !important;
        right: 15px !important;
    }

    /* Footer */
    .footer-nav {
        justify-content: center !important;
        margin-top: 20px;
    }
    .footer-nav a {
        margin: 0 10px;
        font-size: 14px; 
    }
    .footer-nav a:hover {
        padding-left: 0;
    }
    .footer-nav a:hover::before {
        display: none;
    }
}