@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Platypi:ital,wght@0,300..800;1,300..800&display=swap');

html, body {
    font-family: "Platypi", serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.service_container {
    background: url('../images/yellow-door-room.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
}

.inner_container {
    display: flex;
    justify-content: flex-end;
    padding: 0 5%;
    width: 100%;
}

.main_ServiceContainer {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    /* background-color: rgba(255, 255, 255, 0.8); */
    border-radius: 16px;
    /* backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
}

.header_section {
    max-width: 100%;
}

.text-wrapper h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 20px;
    line-height: 1.1;
}

.we-design-and-craft {
    font-size: 1.25rem;
    color: #2C2C2C;
    opacity: 0.85;
    line-height: 1.6;
}

.btn_gtSt {
    margin-top: 20px;
}
.btn_gtSt button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #2C2C2C;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn_gtSt button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.inner_Container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.servc_ct {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 2px solid rgba(44, 44, 44, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.servc_ct:hover {
    padding-left: 20px;
    border-bottom-color: #2C2C2C;
}

.servc_ct:hover .text-wrapper-4 {
    transform: translate(5px, -5px);
    background: #ffe9a0;
    color: #E6C456;
}

.text-wrapper-3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2C2C2C;
    line-height: 1.2;
}

.text-wrapper-4 {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.text-wrapper-4 i {
    font-size: 1.2rem;
    color: #2C2C2C;
    transition: color 0.3s ease;
}

/* ---------- RESPONSIVE MEDIA QUERIES ---------- */

@media (max-width: 1024px) {
    .text-wrapper h2 {
        font-size: 3rem;
    }

    .text-wrapper-3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .inner_container {
        justify-content: center;
        padding: 0 1rem;
    }

    .main_ServiceContainer {
        padding: 1.5rem;
        gap: 1rem;
    }

    .text-wrapper h2 {
        font-size: 2.5rem;
    }

    .text-wrapper-3 {
        font-size: 1.5rem;
    }

    .servc_ct {
        padding: 12px 0;
    }

    .text-wrapper-4 {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .text-wrapper h2 {
        font-size: 2rem;
    }

    .we-design-and-craft {
        font-size: 1rem;
    }

    .text-wrapper-3 {
        font-size: 1.25rem;
    }

    .btn_gtSt button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .main_ServiceContainer {
        padding: 1rem;
        border-radius: 12px;
    }
}
