p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-size: 1.17vw;
    font-weight: 400;
}

h1 {
    font-size: 2.3vw;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    text-align: center;
}

h2 {
    font-size: 1.76vw;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    text-align: right;
}

h3 {
    font-size: 1.4vw;
    letter-spacing: 0.05em;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.hero-container {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    filter: blur(8px);
    -webkit-filter: blur(8px);
    position: absolute;
    z-index: -1;
    height: 100%; 
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.hero-text { 
    background-color: var(--index-bg-text-bg-color);
    color: var(--main-text-light-color);
    font-weight: bold;
    border: 3px solid var(--index-bg-text-border);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
}

.main-container {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    background-color: var(--index-bg-text-bg-color);
}

.description-container{
    display: flex;
    height: 100vh;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-color: var(--main-background-color);
    border-bottom-left-radius: 13px; /* Curves the bottom-left corner */
    border-bottom-right-radius: 13px;
}

.description-image {
    filter: blur(8px);
    -webkit-filter: blur(8px);
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.description-text {
    background-color: var(--index-bg-text-bg-color);
    color: var(--main-text-light-color);
    font-weight: bold;
    width: 40%;
    height: 100%;
    top: 50%;
    right: 0;
    transform: translate(75%, 0%);
    z-index: 2;
    margin: 0;
    padding: 20px;
    text-align: right;
    overflow-y: auto;
}

.description-text h2 {
    font-size: clamp(1rem, 2vw, 2rem);
}

.description-text p {
    font-size: clamp(0.8rem, 1vw, 1rem);
}

/* pagination */
.page-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: right;
    color: var(--main-text-light-color);
}

.pagination ul {
    margin: 1vw;
}

.pagination ul li {
    display: inline-block;
    width: 2.5vw;
    height: 2.5vw;
    margin: 0 0.3vw;
    padding: 0.5vw 0.5vw;
    border-radius: 50%;
    text-align: center;
    font-size: 1.2vw;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid var(--main-text-light-color);
    background-position: 0 -4.5vw;
    transition: background-position 0.5s;
}

.pagination ul li.active {
    color: var(--main-text-light-color);
    background-image: linear-gradient(var(--pagination-gradient-color1), var(--pagination-gradient-color2));
    background-repeat: no-repeat;
    background-position: 0 0;
}

.btn1, .btn2 {
    display: inline-flex;
    align-items: center;
    font-size: 1.2vw;
    font-weight: 500;
    color: var(--main-text-light-color);
    background-color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
}

.btn1 i {
    margin-right: 0.5vw;
    font-size: 1.2vw;
}

.btn2 i {
    margin-left: 0.5vw;
    font-size: 1.2vw;
}

/* gallery button */

.gallery-btn {
    padding-top: 2rem;
}

.gallery-btn a {
    text-decoration: none;
    color: var(--main-text-light-color);
    font-size: 1.4vw;
    font-weight: bold;
}

.gallery-btn a:hover {
    color: rgba(161, 161, 170, 0.9);
}
    

.features-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: var(--main-background-color);
    gap: 2rem;
    padding: 2rem;
    padding-top: 6vh;
}

.feature {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.feature-image {
    height: 350px;
    width: 100%;
    background-size: cover;
    border-radius: 10px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.feature-title {
    background-color: var(--index-bg-text-bg-color);
    color: var(--main-text-light-color);
    font-size: 2rem;
    letter-spacing: 0.2em;
    font-weight: bold;
    border: 3px solid var(--index-bg-text-border);
    position: absolute;
    top: 20vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
}

.feature-text {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex: 1;
    padding: 1rem;
    z-index: 2;
}

.feature-desc {
    padding: 2vw;
    width: 60%;
    font-size: 1rem;
    text-align: center;
}

.feature-desc p{
    text-align: left;
}

.feature-list {
    width: 40%;
    padding: 2vw;
}

.feature-list ul{
    font-size: 1.2vw;
    margin-bottom: 1rem;
    text-align: left;
}

.feature-list li{
    padding: 0.4rem;
    font-size: 1.2vw;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    letter-spacing: 0.03em;
    list-style-position: outside;
    list-style-type: decimal;
}   
  
#line{
    font-size: 1rem;
    font-weight: bold;
}

@media (max-width: 900px) {
    .description-text h2{
        font-size: 1rem;
    }
    
    .description-text p{
        font-size: 0.7rem;
    }

    .description-text  h4{
        font-size: 0.9rem;
    }
    
    .feature-list li{
        padding: 0.25rem
    }
}

