/* General Reset */
@font-face {
    font-family: "Suisse Intl";
    src: url("../assets/fonts/SuisseIntl-Light.woff2") format("woff2"),
        url("../assets/fonts/SuisseIntl-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Suisse Intl";
    src: url("../assets/fonts/SuisseIntl-Medium.woff2") format("woff2"),
        url("../assets/fonts/SuisseIntl-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Suisse Intl";
    src: url("../assets/fonts/SuisseIntl.woff2") format("woff2"),
        url("../assets/fonts/SuisseIntl.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Suisse Intl";
    src: url("../assets/fonts/SuisseIntl-SemiBold.woff2") format("woff2"),
        url("../assets/fonts/SuisseIntl-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Suisse Intl";
    src: url("../assets/fonts/SuisseIntl-Bold.woff2") format("woff2"),
        url("../assets/fonts/SuisseIntl-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Gallery Section */
.gallery-sec {
    padding: 100px 0;
}
.gallery-sec-tabs {
    display: flex;
    justify-content: center;
}
.tabs {
    display: flex;
    color: rgb(0, 0, 0);

    font-size: 2vw;
    line-height: 40px;
    padding: 0px 50px 20px 50px;
    text-transform: uppercase;
    font-weight: 400;
}
.tabs span {
    font-weight: 700;
    white-space: nowrap;
}

.tab {
    padding: 0px 50px 20px 50px;
    position: relative;
    cursor: pointer;
    flex: 1;
    text-align: center;
    transition: border-width 0.3s, border-bottom-color 0.3s;
    border-bottom: 2px solid transparent;
}
.tab::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 12px;
    width: 50%;
    background-color: transparent;
    transform: translateX(-50%);
    transition: background-color 0.3s ease, height 0.3s ease, width 0.3s ease;
    z-index: 1;
}

.tab:hover::after,
.tab.active::after {
    background-color: var(--color-gold);
}

.tab-content {
    display: none;
    padding-top: 50px;
}
.tab-content.active {
    display: block;
    /* grid-template-columns: repeat(3, 1fr);
    gap: 40px; */
}
.tab-content a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.gallery-item {
    margin: 10px;
    display: inline-block;
}

/* Media Query */

/* Desktop Devices */

/* For 1280px width */
@media (min-width: 1280px) and (max-width: 1359px) {
    /* Gallery Section */
    .tabs {
        width: 80%;
    }
}

/* Tab Devices */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Gallery Section */
    .gallery-sec {
        padding: 50px 0 80px 0;
    }
    .tabs {
        width: 100%;
        font-size: 25px;
        line-height: 30px;
    }
    .tab-content {
        display: none;
        padding-top: 30px;
    }
    .tab-content.active {
        gap: 25px;
    }
    .tab-content img {
        width: 100%;
        /* height: 300px; */
        border-radius: 8px;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    /* Gallery Section */
    .gallery-sec {
        padding: 40px 0 60px 0;
    }
    .tabs {
        flex-wrap: wrap;
        width: 100%;
        font-size: 20px;
        line-height: 25px;
        padding: 0;
    }
    .tab-content {
        display: none;
        padding-top: 30px;
    }
    .tab-content.active {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .tab-content img {
        width: 100%;
        /* height: 200px; */
        border-radius: 8px;
    }
}
