body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.content {
    min-height: calc(100vh - 120px - 80px); /* viewport - header - footer */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-form {
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
    background: rgba(255, 255, 255, 0.9);
}

.contact-form.active {
    transform: scale(1);
}

.logo-text {
    font-family: 'Bebas Neue', cursive;
    font-weight: 800;
    letter-spacing: 1px;
}

.coming-soon-text {
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.subheading-text {
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-text {
    font-weight: 300;
}

.header-text-color {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    header > div.flex.items-center.space-x-6 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    header > div.flex.items-center.space-x-6 > div {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.875rem; /* smaller font size */
    }
}

.text-orange {
    color: #fcb712;
}

#youtube-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.youtube-iframe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover !important;
    pointer-events: none;
    z-index: -2;
}

/* Full size cover image background placeholder */
#background-placeholder {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../images/fallback_drk_metal_art_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -3;
}

@media (max-width: 768px) {
    #background-placeholder {
        background-position: right center;
        background-image: url('../images/fallback_drk_metal_art_mobile_bg.webp');
    }
}

/* Confirmation message container */
#confirmationMessage {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#confirmationMessage.show {
    opacity: 1;
}

/* Checkmark animation */
.checkmark {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    animation-delay: 0.2s;
}

.checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    animation-delay: 0.8s;
}

@keyframes stroke {
    to {
        stroke-dashoffset: 0;
    }
}

.drop-shadow-text {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
