@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*font-family: "Montserrat", serif;
font-family: "ABeeZee", serif;
*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body {
    margin:0px;
    height: 100%;
}
body {
    overflow-y: auto;
    background: linear-gradient(45deg, #f2030b, #ad2702, #4c1101, #dd0227);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
h1 {
    font-family: "Montserrat", serif;
    font-weight:400;
}
#red {
    color:#ff6666;
}
h2 {
    font-family: "Montserrat", serif;
    font-weight: 700;
}
h3 {
    font-family: "ABeeZee", serif;
    font-weight: 400;
    font-style: italic;
}
p {
    font-family: "ABeeZee", serif;
}

.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
    animation: fadeOutSplash 3s forwards;
    animation-delay: 2s;
}

.splash-text {
    text-align: center;
    animation: flyIn 3s forwards;
}

.splash-text h1 {
    color: #fff;
    margin: 0;
    font-size: 2rem;
}

@keyframes flyIn {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(20);
        opacity: 0;
    }
}

@keyframes fadeOutSplash {
    0% {
        background: rgba(0, 0, 0, 1);
    }

    100% {
        background: rgba(0, 0, 0, 0);
    }
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    background: #f0f0f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    animation: fadeInHeader 1s forwards;
    animation-delay: 2s;
}
@keyframes fadeInHeader {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.logo {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}
#typewriter-text {
    font-size: 1.5em;
    color: #000;
    font-family: "Montserrat", serif;
    font-weight: 600;
}
.social-buttons {
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.social-buttons.visible {
    opacity: 1;
    transform: translateX(0);
}
.social-btn img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
}
.card-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.card {
    background: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.contact.card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.contact.card .button {
    display: block;
    margin: 1vh auto;
}
.spacer {
    height: 40px;
}
.main {
    text-align: center;
}
.content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: nowrap;
    align-items: stretch;
}
.video-container {
    position: relative;
    flex: 1 1 500px;
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive iframe */
.video-container iframe {
    width: 100%;
    height: 315px;
    border: none;
}
.decription {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.button {
    font-size: 1em;
    display: block;
    border: 0;
    width: 30vw;
    margin-top: auto;
    float: middle;
    padding: 0.7em;
    cursor: pointer;
    text-align: center;
    transition-duration: 0.1s;
    transition-timing-function: linear;
    text-decoration: none;
    font-family: "ABeeZee", serif;
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out, opacity 0.1s linear;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}
.button:hover,
.button:focus {
    opacity: 0.8;
}
.btcolor {
    background-color: red;
    color: #fff;
}
.btcolor:hover,
.btcolor:focus {
    background: #ff6666;
    color: #f0f0f0;
}
.round {
    border-radius: 0.6em;
}
@media (max-width: 960px) {
    .content-wrapper {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }
    .video-container,
    .decription {
        flex: none;
        width: 100%;
    }
    .decription {
        text-align: center;
    }
    .button {
        margin: 1vh auto;
        width: 90%;
    }
    .card-wrapper {
        margin-top: 15vw;
    }
}
@media (max-width: 500px) {
    #typewriter-text {
        font-size: 1em;
    }
}