/* Custom styles for GeneratePress Child theme */

/* Custom Font Face Declarations */
/* 
 * To use a custom font:
 * 1. Place your font files in /assets/fonts/ directory
 * 2. Add @font-face declarations below
 * 3. Use the font-family name in your CSS
 * 
 * Example:
 * @font-face {
 *     font-family: 'MyCustomFont';
 *     src: url('../fonts/MyCustomFont-Regular.woff2') format('woff2'),
 *          url('../fonts/MyCustomFont-Regular.woff') format('woff');
 *     font-weight: normal;
 *     font-style: normal;
 *     font-display: swap;
 * }
 * 
 * @font-face {
 *     font-family: 'MyCustomFont';
 *     src: url('../fonts/MyCustomFont-Bold.woff2') format('woff2'),
 *          url('../fonts/MyCustomFont-Bold.woff') format('woff');
 *     font-weight: bold;
 *     font-style: normal;
 *     font-display: swap;
 * }
 */

@font-face {
    font-family: 'Sidneyland';
    src: url('../fonts/SidneylandV2-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
}

.front-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.portrait-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
}

.portrait-image {
    width: 208.5px !important;
    height: auto;
    display: block;
    max-width: none;
}

.front-page-text {
    font-family: 'Sidneyland', sans-serif;
    font-size: 28px;
    text-align: center;
    margin: 0;
}

/* Mobile styles */
@media (max-width: 768px) {
    .front-page-text {
        font-size: 17px;
    }
}

