* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    background: #000;
    font-family: 'Arial', sans-serif;
    color: #fff;
    overflow: hidden;
}

.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #fff;
    transition: width 0.3s ease-out;
}

.loading-text {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 1;
    transition: opacity 0.3s ease-out;
    z-index: 1000;
}

.percent {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 1;
    transition: opacity 0.3s ease-out;
    z-index: 1000;
}

/* Loader wrapper */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999;
    transition: opacity 0.4s ease-out;
}

.content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    z-index: 10;
}

.image-container {
    width: 100%;
    height: 100vh;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(img/01.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-content {
    text-align: center;
    max-width: 90%;
    position: relative;
    z-index: 15;
    padding: 30px;
    border-radius: 8px;
}

.text-content h1 {
    font-size: 400px;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0px;
}

.loader-fade-out {
    opacity: 0;
    pointer-events: none;
}

.content-fade-in {
    opacity: 1;
    transform: translateY(0);
}

@font-face {
    font-family: 'Camden';
    src: url('fonts/Camden.woff2') format('woff2'),
        url('fonts/Camden.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Camden', sans-serif;
}

.a1 {
    font-size: 30px;
    font-family: "Montserrat";
    font-weight: 200;
}

.text-content p.baram-title {
    font-size: 400px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
}

@media screen and (max-width: 1600px) {
    .text-content p.baram-title {
        font-size: 300px;
    }
}

@media screen and (max-width: 1200px) {
    .text-content p.baram-title {
        font-size: 220px;
    }
}

@media screen and (max-width: 992px) {
    .text-content p.baram-title {
        font-size: 180px;
    }

    .a1 {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .text-content p.baram-title {
        font-size: 120px;
    }

    .a1 {
        font-size: 20px;
    }
}

@media screen and (max-width: 576px) {
    .text-content p.baram-title {
        font-size: 80px;
    }

    .a1 {
        font-size: 18px;
    }

    .text-content {
        padding: 20px;
    }
}

@media screen and (max-width: 375px) {
    .text-content p.baram-title {
        font-size: 60px;
    }

    .a1 {
        font-size: 16px;
    }
}

.text-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
