@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/GothamSSm-Book_Web.woff2') format('woff2'),
         url('../fonts/gotham/GothamSSm-Book_Web.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/GothamSSm-Bold_Web.woff2') format('woff2'),
         url('../fonts/gotham/GothamSSm-Bold_Web.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/GothamSSm-Light_Web.woff2') format('woff2'),
         url('../fonts/gotham/GothamSSm-Light_Web.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/GothamSSm-Medium_Web.woff2') format('woff2'),
         url('../fonts/gotham/GothamSSm-Medium_Web.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/GothamSSm-Black_Web.woff2') format('woff2'),
         url('../fonts/gotham/GothamSSm-Black_Web.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Gotham', Arial, sans-serif;
}
.container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
}
.top-section {
    display: flex;
    height: 50%;
    width: 100%;
}
.icon-wrapper {
    width: 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25vh;
}
.headline-wrapper {
    width: 66.66%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5vw;
}
.headline-1 {
    font-size: 8vh;
    font-weight: bold;
    margin-bottom: 2vh;
    white-space: nowrap;
    width: fit-content;
}
.headline-2 {
    font-size: 5vh;
    white-space: nowrap;
    width: fit-content;
}
.bottom-section {
    height: 50%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5vw;
    text-align: left;
    font-size: 4vh;
}
.bottom-section p {
    min-width: 83vw;
}

/* FontAwesome Duotone Fixes */
.fa-duotone {
    --fa-primary-opacity: 1.0;
    --fa-secondary-opacity: 0.4;
}
.fa-duotone .fa-primary,
.fa-duotone i::before { 
    color: inherit; 
    opacity: var(--fa-primary-opacity);
}
.fa-duotone .fa-secondary,
.fa-duotone i::after { 
    color: inherit; 
    opacity: var(--fa-secondary-opacity);
}
.fa-duotone [class*="fa-primary"] { fill: currentColor; }
.fa-duotone [class*="fa-secondary"] { fill: currentColor; }

/* Traffic Light */
.traffic-light {
    position: fixed;
    right: 20px;
    top: 20px;
    width: 60px;
    background: #333;
    padding: 15px 10px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 90;
}
.light {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
}
.light.red.active { background: #ff0000; box-shadow: 0 0 20px #ff0000; }
.light.orange.active { background: #ffaa00; box-shadow: 0 0 20px #ffaa00; }
.light.green.active { background: #00ff00; box-shadow: 0 0 20px #00ff00; }

/* Styles für leeren Info-Teil */
.info-empty .top-section {
    height: 100%;
    justify-content: center;
    align-items: center;
}
.info-empty .icon-wrapper {
    width: auto;
    font-size: 20vw;
    padding-right: 5vw;
}
.info-empty .headline-wrapper {
    width: auto;
    padding-left: 0;
    max-width: 65vw;
}
.info-empty .headline-1 {
    font-size: 10vw;
    margin-bottom: 0;
    white-space: nowrap;
    width: fit-content;
}
.info-empty .headline-2 {
    font-size: 5vw;
    white-space: nowrap;
    width: fit-content;
}
.info-empty .bottom-section {
    display: none;
}

/* Random Sentence (Standard/Beleidigungen) */
.random-sentence {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 5vh;
    padding: 10vw;
    text-align: center;
}
.random-sentence i {
    font-size: 15vh;
    margin-bottom: 5vh;
}

/* Countdown Timer */
.countdown-timer {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    cursor: pointer;
}
.countdown-svg {
    transform: rotate(-90deg);
    width: 80px;
    height: 80px;
}
.countdown-svg circle {
    fill: none;
    stroke-width: 6;
}
.countdown-bg {
    stroke: rgba(255, 255, 255, 0.2);
}
.countdown-bar {
    stroke: currentColor;
    stroke-dasharray: 226.2;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s linear;
}
.countdown-number {
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    color: currentColor;
}
