/*
Theme Name: YesInview
Theme URI: https://yesinview.com
Author: YesInview Team
Author URI: https://yesinview.com
Description: A custom theme for YesInview project.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yesinview
Tags: custom, modern, responsive

This theme was created for the YesInview project.
*/
@import "tailwindcss";

@theme {
    --color-brand: #4D08AE;
}

/* Force display important for carousel */
.force-display-important {
    display: none !important;
}

@media (min-width: 640px) {
    .force-display-important {
        display: flex !important;
    }
}

/* Grid layout for carousel items */
.sm\:grid .carousel-item {
    width: auto !important;
}

/* Responsive grid layout for portfolio items */
@media (min-width: 640px) {
    .sm\:grid .carousel-item {
        width: auto !important;
    }
}

body {
    /* min-height: 100vh; */
    font-family: 'Montserrat', 'Pretendard', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* define colors */
:root {
    --primary-color: #4D08AE;
}

.screen-reader-text {
    display: none;
}

.font-pretendard {
    font-family: "Pretendard";
}

.site-header {
    background-color: var(--primary-color);
    padding: 1.5rem;
    align-items: center;
}

/** HEADER */
#site-navigation {
    color: white;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

#primary-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;

    a {
        font-weight: 500;
        font-size: 0.75rem;
        color: #fff;
    }
}

/** content */
.site-content, .site-main {
    max-width: 1440px;
    margin: 0 auto;
}

/** FOOTER */
#footer {
    margin-top: auto;
    background-color: var(--primary-color);
    color: white;
    @apply px-[3.125rem] py-[5rem] sm:px-[23px] sm:py-[50px];

    .link-icon {
        background-color: #00000033;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        @apply rounded-full;
    }

    section {
        @apply flex flex-col sm:flex-row sm:gap-5;

        &>div {
            padding: 10px 0;
            flex: 1;
            @apply border-t-[#6318CC] border-t-[1px] flex flex-row;
        }

        .label {
            width: 130px;
            color: #9A63E6;
            font-weight: 500;
            font-size: 0.875rem;
        }
    }

}

.owl-carousel {

    .carousel-item.post-item{
        padding: 40px;
    }
}

@import './css/front-page.css';
@import './css/content.css';
@import './css/about.css';
@import './css/carousel.css';
@import './css/portfolio-item.css';
@import './css/owl.carousel.min.css';
@import './css/owl.theme.default.min.css';
