/**
 * global.css
 * Requires: —
 * Used by: head.php, index.php
 */
/* ==========================================================================
   GLOBAL STYLE SETTINGS (Variables, Core Resets, Global Typography Rules)
   ========================================================================== */

/* Theme Variables Configuration */
:root {
    --font-inter: 'Inter', sans-serif;
    --font-primary: 'Inter', sans-serif;
    
    /* Main Theme Colors */
    --bg-main: #01272C;
    --bg-dark: #091413;
    --text-main: #FFFFFF;
    --accent-pink: #B62779;
}

/* Reset Constraints */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: var(--font-inter);
}

body {
    background: linear-gradient(107.79deg, #01272C 0.52%, #091413 99.48%);
    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6,
p, a, li, label, button, input, textarea, select,
table, th, td {
    font-family: inherit;
}

/* Privacy policy — SweetAlert modal (white popup, black text, single scroll) */
.privacy-swal-popup {
    background: #fff !important;
    color: #091413 !important;
    border: 1px solid #e2e8e6;
}

.privacy-swal-title {
    color: #091413 !important;
}

.privacy-swal-html {
    text-align: left !important;
    max-height: 55vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 6px !important;
    color: #091413 !important;
}

.privacy-modal-body {
    font-size: 13px;
    line-height: 1.55;
    color: #091413;
}

.privacy-modal-body h3 {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 700;
    margin: 16px 0 6px;
    color: #091413;
}

.privacy-modal-body p,
.privacy-modal-body strong {
    margin-bottom: 10px;
    color: #091413;
}

.footer-inline-link {
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
}

.footer-inline-link:hover {
    color: var(--accent-pink);
}

/* SweetAlert2 modals */
.swal2-popup,
.swal2-title,
.swal2-html-container,
.swal2-confirm,
.swal2-cancel {
    font-family: var(--font-inter) !important;
}

/* Global Grid Container Definitions */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* Standard Link Animation Layer */
.slide-link {
    font-family: var(--font-inter);
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.slide-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-pink);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.slide-link:hover {
    color: var(--text-main);
}

.slide-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}