@import url("fonts.css");

@keyframes pulse {
    0% {
    transform: translateX(0%);
    }

    50% {
    transform: translateX(25%);
    }

    100% {
    transform: translateX(0%);
    }
}

html,
body {
    background: white;
}

html {
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

#aa_logo {
    position: fixed;
    border: none;
}

#aa_logo.center {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* counts on presentation_transform to be deleted */
#aa_logo.corner {
    top: 5%;
    height: 10%;
    left: 5%;
    width: 10%;
}

.indicator {
    display: none;
    position: fixed;
    bottom: 45%;
    height: 10%;
    left: 45%;
    width: 10%;
}

#slide_text {
    font-family: Quasimoda;
    container-type: inline-size;
    position: fixed;
    color: #808080;
    white-space: pre-wrap;
    line-height: normal !important;
    /* center vertically */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.wide_screen #slide_text {
    top: 5%;
    bottom: 5%;
    right: 5%;
    left: 66%;
    text-align: right;
    font-size: min(5cqw, 10cqh);
}

body.tall_screen #slide_text {
    top: 66%;
    bottom: 5%;
    left: 5%;
    right: 5%;
    text-align: center;
    font-size: min(6cqh, 10cqw);
}

#debug_messages {
    position: fixed;
    bottom: 5%;
    left: 5%;
    width: 300px;
    max-height: 200px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.8);
    color: #00ff00;
    font-family: monospace;
    font-size: 0.8em;
    padding: 10px;
    border-radius: 5px;
    white-space: pre;
    visibility: hidden;
    /* align text on bottom */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#continue_bt {
    animation: pulse 1.4s linear infinite normal;
}

#presentation-svg-object {
    /* keep hidden until needed */
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

#contact-button {
    position: fixed;
    top: 20px;
    right: 20px;
}

#read-more-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

.big_button {
    position: fixed;
    z-index: 1000;
    padding: 12px 24px;
    background: #ff8c00;
    color: white;
    border: 2px solid #ff8c00;
    border-radius: 30px;
    font-family: Quasimoda, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.big_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.big_button:hover::before {
    left: 100%;
}

.big_button:hover {
    background: #e67e00;
    border-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

.big_button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.big_button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.4);
}

.big_button .svgicon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.big_button:hover .svgicon {
    transform: rotate(15deg) scale(1.1);
}

#progress_gauge {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 1000;
}

#progress_fill {
    height: 100%;
    background-color: #808080;
    width: 0%;
}