@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: Inter Tight, sans-serif;
}
p {
    margin: 0;
}

/* TITLES */
h3 {
    font-size: 4rem;
    font-weight: bolder;
    letter-spacing: -3px;
    line-height: 62px;
    margin: 0;
}
h4 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.25;
}
#first_title {
    color: #e2ddceb3;
    font-size: 6rem;
    font-weight: 700;
    line-height: 80%;
    display: block;
    position: relative;
    bottom: -100px;
    left: 47px;
}
#sub_title {
    position: absolute;
    top: 10%;
    left: 5%;
}
#prestation_title {
    text-align: center;
}
#sub_prestation_title {
    text-align: center;
    font-size: 2rem;
    font-weight: 100;
}

/* HEADER: VIDEO SECTION */
.video_div {
    width: 100%;
    height: 600px;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}
.video {
    object-fit: cover;
    z-index: -100;
    width: 100%;
    height: 100%;
    position: absolute;
}
.pause-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1;
    opacity: 0.5;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.pause-button:hover {
    opacity: 1;
}

/* VIDEO EXAMPLES */
.section_examples {
    height: 730px;
    position: relative;
    background-image: url('../assets/images/cross.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#planet_img {
    height: 10rem;
    position: absolute;
    top: 256px;
    left: 59px;
    transition: top 0.3s ease-out;
}
#macumba_img {
    height: 20rem;
    position: absolute;
    top: 32%;
    left: 30%;
    transition: top 0.3s ease-out;
}
#polaroid_img {
    height: 35rem;
    position: absolute;
    top: 15%;
    right: 65px;
    transition: top 0.5s ease-out;
}

/* VIDEO PRESTATION */
.section_prestation {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    gap: 2em;
    z-index: 2;
}
.tabs_div {
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 100%;
    max-width: 80rem;
}
.tabs_link_div {
    display: flex;
    justify-content: space-around;
}
.tabs_links {
    font-weight: bold;
    width: 25%;
    cursor: pointer;
    padding: 6px 20px;
    position: relative;
}
.tabs_links:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: black;
    transition: width 0.5s ease;
}
.active_tab_link {
    cursor: default;
}
.active_tab_link:after {
    width: 100%;
    font-weight: bolder;
}
.tab_content_div {
    width: 100%;
    position: relative;
}
.tab_content {
    width: 100%;
    display: none;
}
.active_tab_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.tab_content_animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateX(200%);
    transition: transform 1s ease;
}
.tab_content_image {
    width: 50%;
    object-fit: cover;
}
.tab_content_text {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 1rem 2rem;
}
.tabs_bullet_points {
    margin-block-start: 0.1em;
    padding-inline-start: 20px;
}
.tabs_bullet_point {
    list-style-type: disc;
    margin-bottom: 20px;
    font-weight: 500;
}
.mobile_tab_content_title {
    display: none;
}

/* VIDEO CONTACT */
.section_contact {
    z-index: 1;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    margin-top: 80px;
}
#contact_title_div {
    width: 100%;
    text-align: center;
}
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    max-width: 700px;
}
.input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #767676;
    font-size: 1rem;
}
.input::-webkit-input-placeholder {
    font-family: Inter Tight, sans-serif;
}
.input::-ms-input-placeholder {
    font-family: Inter Tight, sans-serif;
}
.input::-moz-placeholder {
    font-family: Inter Tight, sans-serif;
}
.input::-moz-placeholder {
    font-family: Inter Tight, sans-serif;
}
.message_text {
    min-height: 100px;
}
.submit_btn_div {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: end;
}
.submit_btn {
    width: fit-content;
    padding: 8px;
    margin-right: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
    border-width: 1px;
    cursor: pointer;
    background-color: #e2dfdd;
    transition: background-color 0.3s;
}
.submit_btn:hover {
    background-color: #cbc8c6;
    transition: background-color 0.3s;
}
#send_icon {
    width: 12px;
    height: 12px;
}

/* VIDEO DESCRIPTION */
.section_description {
    margin: 80px auto;
    width: 80%;
    font-size: 3rem;
    font-weight: 200;
}

/* FOOTER */
.footer {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
#cornely-threads-img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    position: absolute;
    transform:  scale3d(1, 1, 1);
}
.social_media_div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 1;
}
.social_media_border {
    width: 300px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: rgba(226, 223, 221, .7);
    border-radius: 20px;
}
#instagram_icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    background-color: white;
    padding: 4px;
}
#instagram_icon:hover {
    background-color: lightGrey;
}
#laxdev_link {
    position: absolute;
    right: 15%;
    bottom: 10px;
    color: white;
    font-size: 1.4rem;
    font-family: 'Luckiest Guy', cursive;
    cursor: pointer;
    z-index: 1;
}
.send-icon {
    position: absolute;
    right: 13%;
    bottom: 15px;
    width: 20px;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
#laxdev_link:hover + .send-icon {
    opacity: 1;
    transform: translateX(20%);
}

@keyframes letterAnimation {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    20%, 80% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}
.animated-letter {
    display: inline-block;
    opacity: 0;
    animation: letterAnimation 3s infinite;
    pointer-events: none; /* This ensures the animation doesn't interfere with clicking */
}
