@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&family=Syne:wght@600;700;800;900&display=swap');

:root {
    --pr-teal: #2E8C88;
    --pr-teal-light: #3ab0ab;
    --pr-teal-dark: #1f6360;
    --pr-teal-glow: rgba(46, 140, 136, 0.35);
    
    --pr-dark: #0f1012;
    --pr-dark-card: #18191d;
    --pr-dark-elevated: #22242a;
    --pr-dark-border: #2c2f36;
    
    --pr-gray-dark: #2B2B2B;
    --pr-gray-med: #6B6B6B;
    --pr-gray-concrete: #9A9A9A;
    --pr-gray-light: #d1d5db;
    
    --pr-white: #FFFFFF;
    --pr-gold: #eab308;
    --pr-gold-dark: #3b2f15;
    --pr-red: #ef4444;
    --pr-green: #10b981;
    
    --font-heading: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-sport: 'Bebas Neue', 'Syne', sans-serif;
}

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

body {
    background-color: var(--pr-dark);
    color: var(--pr-white);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font-family: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--pr-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--pr-gray-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--pr-teal);
}

/* Typography Utility & Responsive Scaling */
.font-sport {
    font-family: var(--font-sport);
    letter-spacing: 0.04em;
}

.font-heading {
    font-family: var(--font-heading);
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 6.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    word-break: break-word;
}

.page-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 2.6rem);
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    word-break: break-word;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 4vw, 2.1rem);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    word-break: break-word;
}

.card-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 800;
    line-height: 1.25;
    word-break: break-word;
}

/* Scroll Reveal Micro-Animations */
.reveal-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.revealed {
    opacity: 1;
    transform: translateY(0);
}

.text-teal {
    color: var(--pr-teal);
}

.text-gray {
    color: var(--pr-gray-concrete);
}

.text-muted {
    color: var(--pr-gray-med);
}

/* Buttons */
.btn-primary {
    background: var(--pr-teal);
    color: var(--pr-white);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--pr-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 14px var(--pr-teal-glow);
}

.btn-primary:hover {
    background: var(--pr-teal-light);
    box-shadow: 0 6px 20px var(--pr-teal-glow);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--pr-dark-elevated);
    color: var(--pr-white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--pr-dark-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: var(--pr-dark-border);
    border-color: var(--pr-gray-concrete);
}

.btn-outline-teal {
    background: transparent;
    color: var(--pr-teal);
    border: 1.5px solid var(--pr-teal);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline-teal:hover {
    background: var(--pr-teal);
    color: var(--pr-white);
    box-shadow: 0 4px 14px var(--pr-teal-glow);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-teal {
    background: rgba(46, 140, 136, 0.2);
    color: #4ade80;
    border: 1px solid var(--pr-teal);
}

.badge-gold {
    background: rgba(234, 179, 8, 0.15);
    color: #fde047;
    border: 1px solid rgba(234, 179, 8, 0.4);
}

.badge-gray {
    background: var(--pr-dark-elevated);
    color: var(--pr-gray-light);
    border: 1px solid var(--pr-dark-border);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.badge-success {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

/* Form Controls */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pr-gray-concrete);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: var(--pr-dark);
    border: 1px solid var(--pr-dark-border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--pr-white);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    border-color: var(--pr-teal);
    box-shadow: 0 0 0 3px var(--pr-teal-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
}

.alert-error, .alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
}

.alert-info {
    background: rgba(46, 140, 136, 0.15);
    border: 1px solid var(--pr-teal);
    color: #5eead4;
}

/* Glassmorphism / Industrial Cards */
.card-dark {
    background: var(--pr-dark-card);
    border: 1px solid var(--pr-dark-border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card-dark-hover {
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.card-dark-hover:hover {
    transform: translateY(-3px);
    border-color: var(--pr-teal);
}

/* Custom SweetAlert2 Toast Styling */
.swal2-popup.pr-toast-popup {
    background: #18191d !important;
    border: 1px solid #2e323b !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75) !important;
    padding: 0.85rem 1.25rem !important;
    font-family: var(--font-body) !important;
}

.swal2-popup.pr-toast-popup.swal2-icon-success {
    border-left: 4px solid #10b981 !important;
}

.swal2-popup.pr-toast-popup.swal2-icon-error {
    border-left: 4px solid #ef4444 !important;
}

.swal2-popup.pr-toast-popup.swal2-icon-info {
    border-left: 4px solid var(--pr-teal) !important;
}

.swal2-popup.pr-toast-popup .swal2-title {
    color: #ffffff !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.swal2-popup.pr-toast-popup .swal2-timer-progress-bar {
    background: var(--pr-teal) !important;
    height: 3px !important;
}

