/*
Theme Name: ATIL Soft Custom Theme
Theme URI: https://atilsoft.com.tr/
Author: Antigravity AI
Author URI: https://atilsoft.com.tr/
Description: Custom WordPress theme designed for ATIL Soft Web Redesign, utilizing Tailwind CSS for beautiful corporate and SaaS presentations. Fully customizable from the WordPress customizer.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: atilsoft-theme
*/

/* Reset and basic accessibility styling */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Custom transitions and utility shadows */
.shadow-ambient {
    box-shadow: 0px 4px 20px rgba(15, 23, 42, 0.05);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 300px;
    }
    .bento-item-large {
        grid-column: span 8;
        grid-row: span 2;
    }
    .bento-item-medium {
        grid-column: span 4;
        grid-row: span 2;
    }
    .bento-item-small {
        grid-column: span 4;
        grid-row: span 1;
    }
    .bento-item-wide {
        grid-column: span 8;
        grid-row: span 1;
    }
}

/* WordPress Admin Bar Compatibility */
.admin-bar header {
    top: 32px !important;
}
@media screen and (max-width: 782px) {
    .admin-bar header {
        top: 46px !important;
    }
}
