/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Kanit', sans-serif;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2vw;
}

/* Main Container Layout */
.container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1800px;
    gap: 3vw;
    align-items: center;
    margin: 0 auto;
}

/* Left Section: Image and Text */
.left-section {
    flex: 1.6;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
}

.image-container {
    width: 100%;
    border-radius: 0.8vw;
    overflow: hidden;
    box-shadow: 0 0.8vw 1.5vw rgba(0, 0, 0, 0.15);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.coming-soon-text {
    text-align: center;
    margin-top: 1vw;
}

.coming-soon-text h1 {
    font-size: clamp(2rem, 4.5vw, 7rem);
    font-weight: 700;
    margin-top: 1vw;
    letter-spacing: -1px;
    line-height: 1.2;
}

/* Right Section: Contacts */
.right-section {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.8vw, 40px);
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 30px);
}

.icon-box {
    width: clamp(40px, 4.5vw, 85px);
    height: clamp(40px, 4.5vw, 85px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: clamp(20px, 2.5vw, 42px);
    flex-shrink: 0;
}

.outline-radius {
    border-radius: clamp(8px, 1vw, 20px);
}

.contact-text {
    font-size: clamp(1rem, 2vw, 2.8rem);
    font-weight: 400;
    white-space: nowrap;
}

/* Specific item styles */
.bg-green-light {
    background-color: #25d366;
}

.bg-line {
    background-color: #00c300;
}

.bg-facebook {
    background-color: #1877f2;
}

.bg-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.bg-tiktok {
    background-color: #000000;
}

.bg-shopee {
    background-color: #ee4d2d;
}

/* Responsive Design for Mobile and Tablets */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        gap: 5vw;
        padding: 3vw 0;
    }

    .left-section {
        width: 100%;
        gap: 3vw;
        align-items: center;
        /* Center aligning content on tablets/phones */
    }

    .right-section {
        width: 100%;
        justify-content: center;
    }

    .contact-list {
        align-items: center;
    }

    .contact-item {
        width: 100%;
        max-width: 600px;
        justify-content: flex-start;
        padding-left: 10vw;
        padding-right: 10vw;
    }

    .contact-item {
        gap: clamp(15px, 3vw, 30px);
    }

    .icon-box {
        width: clamp(50px, 6vw, 75px);
        height: clamp(50px, 6vw, 75px);
        font-size: clamp(26px, 3vw, 38px);
    }

    .coming-soon-text h1 {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
    }

    .contact-text {
        font-size: clamp(1.2rem, 3.5vw, 2.2rem);
    }
}

@media (max-width: 480px) {
    body {
        padding: 4vw;
    }

    .contact-item {
        gap: 15px;
        justify-content: flex-start;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .icon-box {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .contact-text {
        font-size: clamp(1rem, 4.5vw, 1.5rem);
        white-space: nowrap;
    }

    .coming-soon-text h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        white-space: normal;
        line-height: 1.2;
    }
}