/*
Theme Name: BridgeFlair
Theme URI: https://bridgeflair.com/
Author: Your Name
Author URI: http://example.com
Description: Custom WordPress theme for BridgeFlair
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bridgeflair
*/

/* =========================================
   1. Font Definitions
   ========================================= */

/* --- Sora --- */
@font-face {
    font-family: 'Sora';
    src: url('fonts/custom/sora/Sora-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Sora';
    src: url('fonts/custom/sora/Sora-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Sora';
    src: url('fonts/custom/sora/Sora-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Sora';
    src: url('fonts/custom/sora/Sora-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Sora';
    src: url('fonts/custom/sora/Sora-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Sora';
    src: url('fonts/custom/sora/Sora-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Sora';
    src: url('fonts/custom/sora/Sora-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* =========================================
   2. Variables & Root
   ========================================= */
:root {
    --color-primary: #013760;
    --color-secondary-text: #49D4FF;
    --color-text-dark: #333333;
    --color-text-light: #ffffff;
    --color-background: #ffffff;
    
    --font-primary: 'Sora', sans-serif;
    --font-secondary: 'Sora', sans-serif;
}

/* =========================================
   3. Reset & Base Styles
   ========================================= */
html {
    box-sizing: border-box;
    font-size: 16px;
    overflow-y: scroll; /* Force vertical scrollbar to prevent layout shift */
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary-text);
}

/* Lists */
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Containers (Optional utility) */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Reset */
/* We remove the generic header styles to avoid conflicts with specific header classes */

/* Main */
main {
    padding: 40px 0;
}

