/* General Styling for UNPACKED Section */
.unpacked-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px;
    height: 100vh;
    box-sizing: border-box;
}

.text-content {
    text-align: center;
    max-width: 600px;
    margin-bottom: 60px;
}

.unpacked-title {
    font-family: 'Barrio', sans-serif;
    font-size: 100px;
    font-weight: 400;
    color: #000000;
    margin: 0;
}

.unpacked-subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #555;
  margin-top: 0;
  margin-bottom: 10px;
}

.coming-soon-button {
    background-color: #e0e0e0;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    cursor: not-allowed;
    color:#555;
}

.unpacked-image {
  position: absolute;
left: 70%;
top: 45%;
width: 90%;
max-width: 500px;
}

.suitcase-icons-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .unpacked-title {
        font-size: 80px;
        line-height: 90px;
    }

    .text-content {
        max-width: 80%;
    }

    .unpacked-image {
        width: 50%;
        right: 2%;
        bottom: 5%;
    }
}

@media (max-width: 768px) {
    .unpacked-content {
        flex-direction: column;
        align-items: center;
    }

    .unpacked-title {
        font-size: 60px;
        line-height: 70px;
    }

    .unpacked-subtitle {
        font-size: 1.2rem;
    }

    .unpacked-image {
        position: static;
        width: 100%;
        max-width: 400px;
    }
}
