/*
Theme Name: A19Studio Portfolio Theme
Description: A clean, minimalist portfolio theme inspired by a19studio.com with grid-based project showcase
Version: 1.0
Author: Custom Theme
*/

/* Flaticon font-face */
@font-face {
    font-family: 'Flaticon';
    src: url('./assets/css/fonts/flaticons-custom/flaticon.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'svn-avo';
    src: url('./assets/css/fonts/svn-avo/SVN-Avo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'svn-avo';
    src: url('./assets/css/fonts/svn-avo/SVN-Avo-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'svn-avo';
    src: url('./assets/css/fonts/svn-avo/SVN-Avo-italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'svn-avo';
    src: url('./assets/css/fonts/svn-avo/SVN-Avo-bold-italic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

/* Example usage */
.flaticon {
    font-family: 'Flaticon';
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'svn-avo', sans-serif;
    line-height: 1.6;
}

/* Main Content */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

