@charset "utf-8";

/* ==========================================================================
   #Instagram Section
   ========================================================================== */

#instagram {
    width: 100%;
    background-color: #fff;
    padding-bottom: 80px;
}

#instagram .instagram__container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 60px 0;
}

/* Section Title */
#instagram .sec__ttl {
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px !important;
}

#instagram .sec__ttl img {
    width: auto;
    height: 40px;
    max-width: 100%;
}

/* Row Layout */
#instagram .instagram__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 40px;
    border-top: 10px solid #BB9B52;
    border-bottom: 10px solid #BB9B52;
    padding: 25px 0;
    position: relative;
}

#instagram .instagram__row::before {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #BB9B52;
}

#instagram .instagram__row::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #BB9B52;
}

#instagram .instagram__row:last-child {
    margin-bottom: 0;
}

/* Profile Column (Left) */
#instagram .instagram__profile {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    box-sizing: border-box;
}

#instagram .instagram__profile .logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #BB9B52;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #fff;
    overflow: hidden;
}

#instagram .instagram__profile .logo-circle img {
    width: 70%;
    height: auto;
    object-fit: contain;
}

#instagram .instagram__profile .instagram__btn {
    display: block;
    width: 120px;
    height: auto;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#instagram .instagram__profile .instagram__btn:hover {
    transform: translateY(2px);
    opacity: 0.9;
}

#instagram .instagram__profile .instagram__btn:hover .flex {
    background-color: #d4ae5e;
}

#instagram .instagram__profile .instagram__btn .flex {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BB9B52;
    height: 30px;
    width: 100%;
    transition: background-color 0.3s ease;
}

#instagram .instagram__profile .instagram__btn .flex p {
    margin: 0;
    letter-spacing: 0.1em;
    font-size: 11px;
    color: #fff;
    margin-right: 10px;
}

#instagram .instagram__profile .instagram__btn .flex::after {
    content: '';
    width: 20px;
    height: 1px;
    background-color: #fff;
}

/* Slider Column (Right) */
#instagram .instagram__slider {
    width: 78%;
    overflow: hidden;
}

#instagram .instagram__slider .swiper-slide {
    height: 0;
    padding-bottom: 23%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Responsive */
@media screen and (max-width: 768px) {
    #instagram {
        padding-bottom: 40px;
    }

    #instagram .instagram__row {
        flex-direction: column;
        padding: 20px 0;
        margin-bottom: 40px;
    }

    #instagram .instagram__profile {
        width: 100%;
        flex-direction: row;
        margin-bottom: 20px;
        padding-right: 0;
        justify-content: flex-start;
    }

    #instagram .instagram__profile .logo-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        margin-right: 20px;
    }

    #instagram .instagram__profile .instagram__btn {
        width: 120px;
    }

    #instagram .instagram__slider {
        width: 100%;
    }

    #instagram .instagram__slider .swiper-slide {
        padding-bottom: 63%;
    }
}