/*
Theme Name:     Suganra Child Theme
Theme URI:      https://suganra.com
Description:    Custom child theme for SUGANRA, built on GeneratePress with a modular template structure.
Author:         SUGANRA
Author URI:     https://suganra.com
Template:       generatepress
Version:        1.0.0
*/

/**
 * PROJECT DESIGN TOKENS
 * Logic: Using CSS variables for global control over typography and layout.
 */
:root {
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Nunito Sans', sans-serif;

    /* Layout */
    --max-width: 1920px;
    --side-padding: 5%;
    
    /* Colors (Placeholders for your brand) */
    --color-primary: #333333;
    --color-accent: #0073aa;
}

/* Base Layout Structure */
.sg-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
}

/* Typography Implementation */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

body {
    font-family: var(--font-body);
}