/* Default Styling (For larger screens, desktop and tablet) */
html {
    scroll-behavior: smooth;
}

body {
    background-image: url('bacll 2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    font-family: 'Karantina', cursive;
    height: 100vh;
    font-weight: 400;
     /* Smooth transition when resizing */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    z-index: 1000;
    font-size: 4rem;
    height: 100px;
    display: flex;
    align-items: center;
}

.header span {
    font-weight: 100;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 300px;
}

.content {
    font-size: 5rem;
    line-height: 0.9;
    font-weight: 400;
}

.content span {
    font-weight: 700;
    font-size: 6rem;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 270px;
}

.contact button {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 1.2rem;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact button:hover {
    background: white;
    color: black;
}

.about-us {
    background: black;
    color: white;
    padding: 50px;
    width: 50rem;
    text-align: left;
    margin-top: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 100;
}

h1 {
    font-weight: 200;
}

.about-us h1 span {
    color: #7D74FF;
    font-weight: 300;
}

.input {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.input input,
.input textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid white;
    background: white;
    color: gray;
}

.about-us button {
    display: block;
    background: #4337F0;
    color: white;
    padding: 10px 40px;
    font-size: 1.3rem;
    border: none;
    cursor: pointer;
    margin: 20px auto 0;
    transition: background 0.3s ease;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

.about-us button:hover {
    background: darkblue;
}

.input input::placeholder,
.input textarea::placeholder {
    color: gray;
    font-family: 'Inter', sans-serif;
}

.input textarea {
    height: 120px;
    resize: none;
}

/* Remove underline from the email link */
.about-us a {
    text-decoration: none;
    color: #7D74FF;
}

/* Responsive Design */
@media (max-width: 1200px) {
    /* Medium Screens */
    .header {
        padding: 15px 30px;
        font-size: 3.5rem;
    }

    .content {
        font-size: 4.5rem;
    }

    .content span {
        font-size: 5.5rem;
    }

    .contact button {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .about-us {
        padding: 40px;
        width: 45rem;
    }

    .about-us button {
        font-size: 1.2rem;
        padding: 8px 30px;
    }
}

@media (max-width: 992px) {
    /* Tablets and Smaller Screens */
    .header {
        padding: 10px 20px;
        font-size: 3rem;
    }

    .content {
        font-size: 4rem;
    }

    .content span {
        font-size: 5rem;
    }

    .contact button {
        font-size: 0.9rem;
        padding: 7px 12px;
    }

    .about-us {
        padding: 30px;
        width: 40rem;
    }

    .about-us button {
        font-size: 1.1rem;
        padding: 8px 25px;
    }

    .input {
        width: 97%;
    }
}

@media (max-width: 768px) {
    /* Small Screens (Mobile Landscape) */
    .header {
        padding: 10px 15px;
        font-size: 2.5rem;
    }

    .content {
        font-size: 3.5rem;
    }

    .content span {
        font-size: 4.5rem;
    }

    .contact button {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .about-us {
        padding: 20px;
        width: 90%;
    }

    .about-us a {
        font-size: 1.5rem;
    }

    .about-us button {
        font-size: 1rem;
        padding: 6px 20px;
    }

    .input {
        gap: 12px;
        width: 95%;
    }

    .input input,
    .input textarea {
        padding: 8px;
    }
}

@media (max-width: 576px) {
    /* Extra Small Screens (Mobile Portrait) */

    .header {
        padding: 10px 10px;
        font-size: 2rem;
    }

    .content {
        font-size: 3rem;
    }

    .content span {
        font-size: 4rem;
    }

    .contact button {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .about-us {
        padding: 15px;
        /* width: 100%; */
    }

    .about-us a {
        font-size: 1.2rem;
    }

    .about-us button {
        font-size: 1rem;
        padding: 6px 15px;
    }

    .input {
        gap: 10px;
    }

    .input input,
    .input textarea {
        font-size: 0.9rem;
        padding: 6px;
    }
}