body, html
{
    margin: 0;
    padding: 0;
    background-color: #2d2929;
    color: white;
    font-family: 'Inknut Antiqua', serif;
    background-position: center;
    background-size: cover;
    background-image: url(../Images/blender\ background2.png);
    height: 100vh;
    overflow: hidden;
}

main, .intro-screen, .contact-page {
  position: relative;
  z-index: 2;
}

canvas
{
  position: fixed;
  top: 0;
  left: 0;
  z-index:1;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none;
}

a
{
    text-decoration: none;
}

button
{
    background: #e2dce7;
    cursor: pointer;
    font-family: 'Inknut Antiqua', serif;
    font-size: 1.5rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: all 0.2s ease-in-out;
    padding: 0px 15px 0 15px;
    line-height: 2.1;
}

button:hover 
{
  transform: translateY(-4px);
}

.intro-screen
{
    position: fixed;
    inset: 0;
    background: #E3D7ED;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: FadeOut 1s ease 4s forwards;
    font-size: 1.5rem;
}

.intro-screen h1 
{
    opacity: 0;
    transform: translateY(30px);
    animation: FadeInUp1 1s ease-out forwards;
}

.intro-screen #welcome
{
    opacity: 0;
    transform: translateY(30px);
    animation: FadeInUp1 1s ease-out 1s forwards;
}

.intro-screen #yippee
{
    opacity: 0;
    transform: translateY(30px);
    animation: FadeInUp1 1s ease-out 2s forwards;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}


@keyframes FadeInUp1
{
    to    
    {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up
{
    opacity: 0;
    transform: translateY(20px);
    animation: FadeInUp1 0.5s ease forwards;
}

@keyframes FadeOut 
{
    to 
    {
        opacity: 0;
    }
}

.fade-out
{
    animation: FadeOut 0.5s ease forwards;
}

main
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.introduction-text
{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 20px;
}

.introduction-text h1
{
    font-size: 2.5rem;
    margin: 0;
    font-weight: 400 !important;   
    line-height: 1.2;

}

.introduction-text h2
{
    font-size: 1.2rem;
    font-weight: 400 !important;
    line-height: 1.7;
}

.introduction-text-buttons
{
    display: flex;
    gap: 10px;
}

.divider
{
    height: 400px;
    width: 5px;
    background-color: white;
    margin: 50px;
}

.swiper
{
    position: relative;
    width: 400px;
    max-width: 1000px;
    height: 400px;
    margin: 0 !important;
}

.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
}


.swiper-slide
{
    font-size: 2rem;
    background: #514B4B;
}

.swiper-slide img 
{
    width: 100%;
    height: 70%;
    object-fit: cover;

}

.swiper-slide button 
{
    width: 330px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    background: #e2dce7;

    color: black;
    font-family: 'Inria Sans', sans-serif;
    font-weight: bold;
    transform: translate(-50%, 0);
}

.swiper-slide button:hover
{
    transform: translate(-50%, -4px);

}


.swiper-pagination-bullet-active
{
    background: #121212 !important;
}

.swiper-button-prev
{
    color: #121212 !important;
}

.swiper-button-next
{
    color: #121212 !important;
}

.contact-page
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    line-height: 1.4;
}

.contact-page button
{
    font-size: 1rem;
    width: 100%;    
    background: #e2dce7;
    border-radius: 0;
    line-height: 2.2;

}

.contact-wrapper
{
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
}

.contact-wrapper p
{
    margin: 0;
}

.contact-wrapper h2
{
    margin-top: 0;
}

.contact-form
{
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #514B4B;
    padding: 30px;
}

.contact-container
{
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea 
{
    margin-top: 0.3rem;
    padding: 0.8rem;
    border: 1px solid #ccc;
    resize: vertical;
    line-height: 1.2; 
    font-family: 'Inria Sans', sans-serif;    
}

.contact-form textarea
{
    box-sizing: border-box;
    width: 100%;
    height: 100px;
}


.name-and-email
{
    display: flex;
    gap: 10px;
    
}

.contact-information
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.info-box
{
    background: #e2dce7;
    border: none;
    display: flex;
    align-items: center;
    color:#121212;
    padding: 20px;
    width: 250px;
}
.info-box p, h3
{
    margin: 0;
    font-family: 'Inria Sans', sans-serif;
}

.info-box p
{
    opacity: 0.7;
}

.info-box a
{
    font-family: 'Inria Sans', sans-serif;
    color: inherit;
    opacity: 0.7;
}

.icon 
{
    font-size: 2rem;
    margin-right: 1rem;
}

.info-box-text
{
    display: flex;
    flex-direction: column;
}