:root {
    --primary-bg: #FDFAF5;
    --primary-text: #2C3E50;
    --accent-gold: #B8860B;
    --accent-navy: #1A3C6E;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* New semantic colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Neutral shades */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--primary-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--accent-navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(253, 250, 245, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-navy);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-text);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-navy);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.language-selector-container {
    margin-left: 2rem;
}

#language-selector {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--accent-navy);
    background-color: transparent;
    color: var(--accent-navy);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

#language-selector:hover,
#language-selector:focus {
    background-color: rgba(26, 60, 110, 0.05);
    border-color: var(--accent-gold);
}

/* ========================================
   BUTTONS
======================================== */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    text-align: center;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-primary:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-navy);
    padding: 0.875rem 1.75rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent-navy);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    text-align: center;
}

.btn-outline:hover {
    background-color: var(--accent-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 60, 110, 0.3);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-outline:focus-visible {
    outline: 3px solid var(--accent-navy);
    outline-offset: 2px;
}

.btn-link {
    color: var(--accent-navy);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--accent-gold);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* ========================================
   SECTIONS
======================================== */
.section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--accent-navy);
}

.section p.subtitle {
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   LOGIN PORTAL SECTION
======================================== */
.portals {
    background-color: #F8F4E9;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portal-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 5px solid var(--accent-navy);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.portal-card.staff {
    border-top-color: var(--accent-gold);
}

.portal-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.portal-card p {
    margin-bottom: 2rem;
    color: var(--gray-600);
}

.staff-link-card {
    border-top: 5px solid var(--gray-300);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ========================================
   FORMS
======================================== */
.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-input:hover {
    border-color: var(--gray-300);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

.form-input:disabled {
    background-color: var(--gray-100);
    cursor: not-allowed;
    color: var(--gray-500);
}

.form-input.error {
    border-color: var(--error);
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-input.success {
    border-color: var(--success);
}

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

.form-error {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.375rem;
}

/* ========================================
   PROFILE & USER COMPONENTS
======================================== */
.user-name {
    color: var(--accent-gold);
}

.profile-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--gray-50);
    border-radius: 12px;
    flex-wrap: wrap;
}

.tier-badge {
    background: var(--accent-gold);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    align-self: center;
}

.points-display {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-navy);
}

.booking-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
}

.booking-list li {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-list li::before {
    content: "•";
    color: var(--accent-gold);
    font-weight: bold;
}

.booking-list li:last-child {
    border-bottom: none;
}

/* ========================================
   DASHBOARD TABS
======================================== */
.dashboard-tabs {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.dashboard-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-body);
    min-height: 44px;
}

.tab-btn:hover {
    color: var(--accent-gold);
}

.tab-btn:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: -2px;
}

.tab-btn.active {
    color: var(--accent-navy);
    border-bottom-color: var(--accent-navy);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   DATA TABLES
======================================== */
.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    -webkit-overflow-scrolling: touch;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.data-table th {
    background-color: var(--gray-50);
    color: var(--accent-navy);
    font-weight: 700;
    font-family: var(--font-heading);
    position: sticky;
    top: 0;
}

.data-table tbody tr:hover {
    background-color: var(--gray-50);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.completed {
    background-color: #dcfce7;
    color: #166534;
}

.status-badge.upcoming {
    background-color: #fef3c7;
    color: #92400e;
}

.status-badge.cancelled {
    background-color: #fee2e2;
    color: #991b1b;
}

/* ========================================
   CALENDAR & LEGEND
======================================== */
.calendar-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cal-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot.free {
    background-color: var(--success);
}

.dot.mine {
    background-color: var(--info);
}

.dot.busy {
    background-color: var(--warning);
}

.cal-grid {
    display: grid;
    gap: 1rem;
}

/* ========================================
   SCHEDULER V2
======================================== */
.scheduler-wrapper {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.scheduler-container {
    min-height: 200px;
}

.sched-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.sched-controls-left,
.sched-controls-right {
    display: flex;
    gap: 0.5rem;
}

.sched-btn {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    min-height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sched-btn:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.sched-btn:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

.sched-btn.primary {
    background: white;
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.sched-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-700);
}

.sched-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.scheduler-table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.sched-header-time {
    width: 70px;
    border-bottom: 1px solid var(--gray-200);
}

.sched-header-room {
    background: var(--gray-50);
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
}

.room-icon {
    margin-right: 5px;
    opacity: 0.7;
}

.sched-time-label {
    text-align: right;
    padding: 0.5rem 0.75rem 0 0;
    color: var(--gray-400);
    font-size: 0.8rem;
    vertical-align: top;
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-100);
    background: white;
}

.sched-cell {
    border: 1px solid var(--gray-200);
    border-top: none;
    border-left: none;
    height: 70px;
    vertical-align: top;
    padding: 4px;
    position: relative;
    background: var(--white);
    transition: background-color 0.2s ease;
}

.sched-cell.free-slot:hover {
    background-color: var(--gray-50);
    cursor: cell;
}

.sched-cell.has-event {
    padding: 2px;
}

/* Event Cards */
.sched-event {
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: white;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sched-event:hover {
    transform: scale(1.02);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.event-walkin {
    background-color: #f59e0b;
    border-left: 4px solid #d97706;
}

.event-mine {
    background-color: #10b981;
    border-left: 4px solid #059669;
}

.event-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

/* ========================================
   FOOTER
======================================== */
footer {
    background-color: var(--accent-navy);
    color: var(--white);
    padding: 3rem 1rem;
    text-align: center;
}

footer p {
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

footer p:last-child {
    margin-bottom: 0;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.justify-center {
    justify-content: center;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid var(--gray-200);
    border-radius: 50%;
    border-top-color: var(--accent-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-500);
}

.empty-state svg,
.empty-state img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    font-size: 1rem;
}

/* ========================================
   RESPONSIVE - TABLET (768px)
======================================== */
@media (max-width: 768px) {
    header {
        padding: 0.75rem 4%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.mobile-open {
        right: 0;
    }

    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .mobile-overlay.active {
        display: block;
    }

    .language-selector-container {
        margin-left: 0;
        margin-right: 1rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .portal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portal-card {
        padding: 2rem;
    }

    .dashboard-container {
        margin: 2rem auto;
        padding: 0 0.75rem;
    }

    .tab-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .sched-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .sched-title {
        order: -1;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (480px)
======================================== */
@media (max-width: 480px) {
    header {
        padding: 0.5rem 3%;
    }

    .logo {
        font-size: 1.4rem;
    }

    #language-selector {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .features-grid {
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .portal-card {
        padding: 1.5rem;
    }

    .portal-card h3 {
        font-size: 1.4rem;
    }

    .profile-details {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .dashboard-tabs {
        gap: 0;
    }

    .tab-btn {
        padding: 0.75rem;
        font-size: 0.8rem;
        flex: 1;
        min-width: auto;
    }

    .data-table th,
    .data-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .cal-legend {
        gap: 1rem;
        padding: 0.75rem;
    }

    .legend-item {
        font-size: 0.8rem;
    }

    .sched-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }

    .sched-title {
        font-size: 0.95rem;
    }

    .sched-cell {
        height: 60px;
    }

    .sched-event {
        padding: 6px 8px;
        font-size: 0.8rem;
    }

    footer {
        padding: 2rem 1rem;
    }
}

/* ========================================
   ACCESSIBILITY - REDUCED MOTION
======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   FOCUS VISIBLE (Keyboard Navigation)
======================================== */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {

    header,
    footer,
    .mobile-menu-toggle,
    .btn-primary,
    .btn-outline {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 2rem;
        background: none;
        color: black;
    }

    .hero-content h1 {
        color: black;
        text-shadow: none;
    }
}