/* ===== FONT FACES ===== */
@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal;
}
@font-face {
    font-family: 'LeagueGothic';
    src: url('../fonts/LeagueGothic-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal;
}
@font-face {
    font-family: 'LeagueGothic SemiCondensed';
    src: url('../fonts/LeagueGothic_SemiCondensed-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal;
}
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Light.ttf') format('truetype');
    font-weight: 300;
}
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Medium.ttf') format('truetype');
    font-weight: 500;
}
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-SemiBold.ttf') format('truetype');
    font-weight: 600;
}
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Bold.ttf') format('truetype');
    font-weight: 700;
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Quicksand', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ===== ACCENT COLOR ===== */
:root {
    --accent: #E8490F;
    --accent-dark: #c33a0a;
}

/* ===== NAVIGATION ===== */
.nav-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0,0,0,0.85);
}
.nav-sticky {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    background: rgba(0,0,0,0.95);
    transform: translateY(-100%);
    transition: transform 0.3s;
}
.nav-sticky.visible { transform: translateY(0); }
.nav-logo img { height: 60px; }
.nav-sticky .nav-logo img { height: 45px; }
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}
.hamburger span {
    width: 30px; height: 3px;
    background: #fff;
    border-radius: 2px;
}
.nav-menu {
    display: none;
    list-style: none;
    gap: 25px;
}
.nav-menu li a {
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    text-transform: uppercase;
}
.nav-menu li a:hover { color: var(--accent); }
/* nav-top also shows menu on desktop */
.nav-top .nav-menu {
    display: none;
}
@media (min-width: 1100px) {
    .nav-menu { display: flex; }
    .hamburger { display: none; }
    .nav-top .nav-menu { display: flex; }
}
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; right: 0;
    background: rgba(0,0,0,0.95);
    padding: 20px 30px;
    gap: 15px;
}

/* ===== HERO ===== */
.ws-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.ws-hero video {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}
.ws-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}
.ws-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ws-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(6rem, 14vw, 14em);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 15px 15px 10px rgba(0,0,0,0.3);
    line-height: 1;
    animation: heroSlideDown 1s ease-out 0.2s both;
}
.ws-hero-subtitle {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5em);
    color: var(--accent);
    text-shadow: 15px 15px 10px rgba(0,0,0,0.3);
    line-height: 1.1;
    animation: heroFadeUp 1s ease-out 0.7s both;
}
@keyframes heroSlideDown {
    from { opacity: 0; transform: translateY(-40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== TAPE DIVIDER ===== */
.ws-tape {
    height: 100px;
    background: url('../img/website-subpage/warnband-website.png') repeat-x center/auto 100%;
    width: 100%;
    overflow: hidden;
    transition: background-position 0.15s linear;
}

/* ===== EXPERTE SECTION ===== */
.ws-experte {
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.ws-experte-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    min-height: 100vh;
    align-items: stretch;
}
.ws-experte-text {
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}
.ws-experte h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 10vw, 10em);
    font-weight: 400;
    color: var(--accent);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
}
.ws-experte p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.75;
    margin-bottom: 15px;
}
.ws-experte-image {
    overflow: hidden;
    position: relative;
}
.ws-experte-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===== BAUPLAN SECTION ===== */
.ws-bauplan {
    background: #000;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 80px;
    text-align: left;
}
.ws-bauplan h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 9vw, 9em);
    font-weight: 400;
    color: var(--accent);
    text-transform: uppercase;
    line-height: 1;
}

/* ===== SERVICE SECTIONS ===== */
.ws-service {
    background: #000;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    overflow: hidden;
}

/* UX section: Bild streckt sich über volle Höhe */
.ws-ux {
    padding-top: 0;
    padding-bottom: 0;
    align-items: stretch;
}
.ws-ux .ws-service-inner {
    align-items: stretch;
}
.ws-ux .ws-service-text {
    padding-top: 80px;
    padding-bottom: 80px;
}

.ws-service-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    align-items: center;
}
.ws-service-text {
    border-left: 3px solid #fff;
    padding-left: 40px;
    padding-right: 40px;
}
.ws-service h3 {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(4rem, 9vw, 9em);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}
.ws-service hr {
    border: none;
    border-top: 2px solid #fff;
    margin-bottom: 20px;
    width: 40%;
}
.ws-service h4 {
    font-family: 'LeagueGothic', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.5em);
    font-weight: 400;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 20px;
}
.ws-service p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.75;
    margin-bottom: 14px;
}
.ws-service p strong { font-weight: 700; }
.ws-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-shadow: 0 5px 8px rgba(0,0,0,0.82);
    margin-top: 10px;
}
.ws-btn:hover { background: var(--accent-dark); color: #fff; }

/* ===== SERVICE IMAGE COLUMNS ===== */
.ws-service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.ws-service-image img {
    max-width: 100%;
    max-height: 550px;
    object-fit: contain;
}

/* Konzeptionierung – brain rechts, sehr dunkel */
.ws-konzept .ws-service-image {
    justify-content: flex-end;
    overflow: hidden;
}
.ws-konzept .ws-service-image img {
    width: 90%;
    max-height: none;
    object-fit: contain;
    filter: brightness(0.35);
}

/* UX/Usability – Frau füllt volle Höhe */
.ws-ux .ws-service-image {
    overflow: hidden;
    align-self: stretch;
    min-height: 100%;
    padding: 0;
}
.ws-ux .ws-service-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    max-height: unset;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.65) contrast(1.1) saturate(0.7);
}

/* Webdesign – Farbklecks */
.ws-webdesign .ws-service-image img {
    width: 90%;
    max-height: none;
    object-fit: contain;
    filter: brightness(0.7);
}

/* Responsive – Geräte */
.ws-responsive .ws-service-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: brightness(0.75);
}

/* Barrierefreiheit – Rollstuhl, kräftige Farben */
.ws-barriere .ws-service-image img {
    width: 100%;
    max-height: none;
    object-fit: contain;
    filter: brightness(0.9) saturate(1.0);
}

/* ===== KONTAKT SECTION ===== */
.ws-contact {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    background: #000;
    overflow: hidden;
}
.ws-contact-bg {
    position: absolute;
    inset: 0;
    background: url('../img/website-subpage/kontakt-kontur.png') no-repeat center/contain;
    opacity: 0.28;
    z-index: 0;
    pointer-events: none;
}
.ws-contact-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}
.ws-contact-form-box {
    background: rgba(30,30,30,0.95);
    padding: 40px 40px 0 40px;
}
.ws-contact-form-box input,
.ws-contact-form-box textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(232,73,15,0.4);
    color: #fff;
    padding: 14px 16px;
    margin-bottom: 15px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    border-radius: 0;
    transition: border-color 0.3s;
    display: block;
}
.ws-contact-form-box input:focus,
.ws-contact-form-box textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.ws-contact-form-box input::placeholder,
.ws-contact-form-box textarea::placeholder {
    color: rgba(255,255,255,0.35);
}
.ws-contact-form-box textarea {
    resize: vertical;
    min-height: 120px;
}
.ws-contact-submit {
    width: 100%;
    display: block;
    background: var(--accent);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4em;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    margin-top: 15px;
}
.ws-contact-submit:hover { background: var(--accent-dark); }
.ws-contact-info-box {
    background: rgba(30,30,30,0.95);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.ws-contact-map iframe {
    width: 100%;
    height: 220px;
    border: none;
    filter: grayscale(0.3);
    display: block;
}
.ws-contact-address {
    padding: 25px 30px;
}
.ws-contact-address h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}
.ws-contact-address p {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #fff;
}
.ws-contact-address a { color: var(--accent); font-weight: 600; }
.ws-contact-address a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.ws-footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: #000;
}
.ws-footer-links { margin-bottom: 20px; }
.ws-footer-links a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    margin: 0 20px;
    color: #fff;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.ws-footer-links a:hover { color: var(--accent); }
.ws-footer-logo { margin: 20px 0; }
.ws-footer-logo img { height: 45px; }
.ws-footer-copy {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    opacity: 0.5;
    font-weight: 300;
}

/* ===== BACK TO TOP ===== */
#wsBackToTop {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 45px; height: 45px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    transition: all 0.3s;
}
#wsBackToTop:hover { background: var(--accent-dark); transform: translateY(-3px); }
#wsBackToTop.show { display: flex; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .ws-experte-inner,
    .ws-service-inner,
    .ws-contact-inner { grid-template-columns: 1fr; }
    .ws-experte { padding: 0; }
    .ws-experte-text { padding: 60px 20px; }
    .ws-experte-image { min-height: 300px; }
    .ws-experte-image img { height: 300px; }
    .ws-bauplan { padding: 80px 20px; text-align: left; justify-content: flex-start; }
    .ws-bauplan h2 { font-size: clamp(3rem, 10vw, 6em); }
    .ws-service { padding: 60px 20px; }
    .ws-ux { padding-top: 0; padding-bottom: 0; }
    .ws-service-text { padding-left: 20px; }
    .ws-service-image { min-height: 300px; margin-top: 40px; }
    .ws-ux .ws-service-image img { height: 300px; min-height: 300px; }
    .ws-ws-tape { height: 70px; }
    .ws-contact { padding: 60px 20px; }
    .nav-top, .nav-sticky { padding: 15px 20px; }
}
@media (max-width: 600px) {
    .ws-hero h1 { font-size: clamp(4rem, 18vw, 8em); }
    .ws-hero-subtitle { font-size: clamp(2rem, 8vw, 3.5em); }
    .ws-service h3 { font-size: clamp(3rem, 12vw, 6em); }
    .ws-experte h2 { font-size: clamp(3.5rem, 12vw, 6em); }
}

/* ===== AOS OVERRIDES ===== */
[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
