/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Iron Fist';
    src: url('./fonts/iron-fist.woff2') format('woff2');
}

@font-face {
    font-family: 'Klik';
    src: url('./fonts/klik.woff2') format('woff2');
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    background-color: #f2f2f2;
}

main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: min(4vh, 2rem);
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: min(4vh, 2rem);
    position: relative;
}

.svg-container {
    width: 100%;
    max-width: 1200px;
    height: auto;
    max-height: 28vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0; /* Remove margin */
    cursor: pointer;
}


.svg-container svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.text-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: min(3vh, 1.5rem);
    flex: 1; /* Take up remaining space */
    justify-content: center; /* Center content vertically */
    margin: auto 0; /* Center between logo and bottom */
}

.main-message {
    color: #29554a;
    font-family: 'Iron Fist', sans-serif;
    font-size: calc(16px + min(2vw, 2vh));
    line-height: 1.4;
    max-width: 90%;
    text-align: center;
}

.contact-info {
    margin-top: min(3vh, 1.5rem);
    padding-top: min(2vh, 1rem);
    border-top: 1px solid #29554a;
    font-family: 'Klik', sans-serif;
    color: #29554a;
    font-size: calc(10px + min(1.2vw, 1.2vh));
    text-align: center;
    width: 90%;
}

/* Easter egg styles */
.easter-egg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #15564A;
    color: #f2f2f2;
    padding: 2rem;
    border-radius: 8px;
    font-family: 'Klik', sans-serif;
    font-size: calc(24px + min(3vw, 3vh));
    line-height: 1.4;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in;
    opacity: 1;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.easter-egg.fade-out {
    animation: fadeOut 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}