/* ============================================
   FULTON COMMONS - CONSOLIDATED STYLESHEET
   Mobile-First Design - Clean Version (No Shadows/Gradients)
   Updated with Mobile Header Improvements (Logo + Button Centering)
   Updated Hero Section for Mobile Design
   FIXED: Hamburger menu visibility and functionality
   ============================================ */

/* ============================================
   RESET & BASE STYLES (Mobile First)
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: whitesmoke;
    font-family: "Lato", Helvetica, Arial, "Lucida Grande", sans-serif;
    color: #2f4f4f;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    opacity: 0.8;
}

/* ============================================
   TYPOGRAPHY (Mobile First)
   ============================================ */

h1 {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0 0 1rem 0;
    text-align: center;
    line-height: 1.2;
}

h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 0 0.8rem 0;
}

h4 {
    font-size: 0.9rem;
    font-weight: 200;
    margin: 0 0 0.5rem 0;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

h6 {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
}

/* ============================================
   NAVIGATION - MOBILE FIRST
   ============================================ */

/* Base mobile nav - for internal pages (cream, relative) */
.topnav-sticky {
    background-color: #f8f4e9;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    min-height: 70px;
    overflow: visible;
}

/* Homepage mobile nav - transparent, absolute overlay on hero */
.homepage .topnav-sticky {
    background-color: transparent;
    position: absolute;
    align-items: flex-start;
    padding: 1.5rem 1.5rem;
}

/* Logo on left side - visible on mobile */
.leftside {
    display: flex;
    align-items: center;
    z-index: 1001;
    flex-shrink: 0;
}

.leftside a {
    display: flex;
    align-items: center;
}

/* Mobile: default logo size for internal pages */
.leftside img {
    height: 50px;
    width: auto;
    max-width: none;
}

/* Homepage mobile: larger logo */
.homepage .leftside img {
    height: 80px;
}

/* Hide the "Fulton Commons" text next to logo on mobile */
.leftside .logo-text {
    display: none;
}

/* Navigation links - hidden on mobile by default */
.rightside {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f8c1a8;
    flex-direction: column;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.rightside a {
    display: block;
    color: #2f4f4f !important;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(47, 79, 79, 0.1);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.rightside a:hover,
.rightside a.active2 {
    background-color: #eecbbc;
    color: #31696e !important;
    padding-left: 2rem;
    opacity: 1 !important;
}

/* Tour Button - Mobile (hidden on mobile) */
.tour-button {
    display: none !important;
}

/* Hamburger icon - ALWAYS visible on mobile */
.icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: bold;
    color: #2f4f4f;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 0;
    flex-shrink: 0;
    min-width: 48px;
    min-height: 48px;
}

/* Homepage: white hamburger icon */
.homepage .icon {
    color: #ffffff;
    margin-top: 0.5rem;
}

.icon span {
    line-height: 1;
    font-weight: normal;
    transform: scaleX(1.2);
    display: inline-block;
}

.icon:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.homepage .icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* When menu is open */
.topnav-sticky.responsive .rightside {
    display: flex !important;
}

/* ============================================
   HERO SECTION - FULL SCREEN
   ============================================ */

.hero-fullscreen {
    width: 100%;
    height: 100vh;
    min-height: 550px;
    /* Mobile hero image */
    background-image: url('fulton-commons-coworking-shared-kitchen-pittsburgh-mobile-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2rem 1.5rem 3rem 1.5rem;
}

.hero-overlay {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-text {
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.hero-text h1 {
    color: white;
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 0.4rem 0;
    text-align: left;
    letter-spacing: 0.2em;
    line-height: 1;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.hero-subtitle {
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    text-align: left;
    line-height: 1.05;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
}

/* Hero CTA Button - Mobile */
.hero-cta-button {
    display: inline-block;
    background-color: #f8c1a8;
    color: #ffffff !important;
    padding: 1.1rem 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    align-self: flex-start;
}

.hero-cta-button:hover {
    background-color: #eecbbc;
    opacity: 1;
}

/* Hero Description Section - Below Image */
.hero-description {
    background-color: #ffffff !important;
    padding: 4.5rem 2rem;
}

.description-content {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}

.description-content p {
    font-family: Georgia, "Times New Roman", serif;
    font-style: normal;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a3a3a;
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

/* ============================================
   CTA BUTTON SECTION
   ============================================ */

.cta-section {
    text-align: center;
    padding: 2rem 1rem 0.5rem 1rem;
    background-color: whitesmoke;
}

.cta-button-large {
    display: inline-block;
    background-color: #2f4f4f;
    color: #ffffff !important;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.cta-button-large:hover {
    background-color: #1a2d2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

/* ============================================
   FEATURES GRID (Workplace & Kitchen)
   ============================================ */

.features-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.features-grid-item {
    width: 100%;
}

.features-grid-item.image-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.features-grid-item.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-grid-item.text-item {
    background-color: #faf8f3;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-item-content {
    max-width: 400px;
}

.text-item-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #1a3a3a;
    line-height: 1.15;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.text-item-content .subhead {
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #1a3a3a;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
}

.text-item-content .body-text {
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.features-button {
    display: block;
    width: fit-content;
    background-color: transparent;
    color: #1a3a3a !important;
    padding: 0.9rem 2rem;
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    border: 1px solid #1a3a3a;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.features-button:last-of-type {
    margin-bottom: 0;
}

.features-button:hover {
    background-color: #1a3a3a;
    color: #ffffff !important;
    opacity: 1;
}

/* Mobile: Reorder grid items - image, text, image, text */
.features-grid-item:nth-child(1) { order: 1; } /* coworking image */
.features-grid-item:nth-child(2) { order: 2; } /* workplace text */
.features-grid-item:nth-child(3) { order: 4; } /* kitchen text */
.features-grid-item:nth-child(4) { order: 3; } /* kitchen image */

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */

.flex-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 90%;
    margin: 2rem auto;
    align-items: center;
}

.flexitem-2,
.flexitem-3,
.flexitem-4,
.flexitem-5,
.flexitem-6,
.flexitem-8,
.flexitem-10 {
    width: 100%;
    padding: 1rem;
}

.flexitem-2 img,
.flexitem-3 img,
.flexitem-4 img {
    margin: 1rem auto;
}

/* ============================================
   BLOG CONTAINER
   ============================================ */

.blog-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 90%;
    margin: 2rem auto;
    font-size: 0.95rem;
}

/* ============================================
   LISTS
   ============================================ */

ul {
    margin: 0 0 1.5rem 1.5rem;
    padding: 0;
    list-style-position: outside;
}

li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

ul li::marker {
    content: "•";
    color: #2f4f4f;
}

.smalltext {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    width: 100%;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    background-color: #f8f8f8;
    border-top: none;
    margin-top: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    text-align: left;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-fulton,
.footer-logo-commons {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: #2f4f4f;
    font-size: 2rem;
    margin: 0;
    padding: 0;
}

.footer-logo-commons {
    margin-top: -0.15rem;
}

.footer-heading {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #6b8e8f !important;
    margin-bottom: 0.6rem !important;
    text-transform: uppercase;
}

.footer-subheading {
    margin-top: 1rem !important;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: #6b8e8f;
}

.footer-column a {
    color: #6b8e8f;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #2f4f4f;
    opacity: 1;
}

.footer-hours-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-cta-button {
    display: inline-block;
    background-color: transparent;
    color: #6b8e8f !important;
    padding: 0.7rem 1.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    border: 2px solid #6b8e8f;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 1rem;
    text-align: center;
    align-self: flex-start;
}

.footer-cta-button:hover {
    background-color: #6b8e8f;
    color: #ffffff !important;
    opacity: 1;
}

.footer-social-column .footer-heading {
    margin-bottom: 0.6rem !important;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.footer-social-links p {
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.footer-social-links a {
    color: #6b8e8f;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    color: #2f4f4f;
    opacity: 1;
}

.footer-bottom {
    margin-top: 0;
    padding-top: 1.5rem;
    border-top: 1px solid #d0d0d0;
    text-align: left;
}

.footer-bottom p {
    font-size: 0.6rem;
    color: #a8a8a8;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidedesk {
    display: inline;
}

.hidemobile {
    display: none;
}

center {
    text-align: center;
}

/* Clickable card styling */
.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.card-link h2 {
    margin-bottom: 1rem;
}

.card-link p {
    margin-bottom: 1rem;
}

/* ============================================
   MOBILE HERO TEXT LEGIBILITY ENHANCEMENT
   Applied only to mobile devices (under 600px)
   Note: No longer needed with new design
   ============================================ */

/* ============================================
   TABLET BREAKPOINT (min-width: 600px)
   ============================================ */

@media (min-width: 600px) {
    body {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    /* Hero adjustments for tablet - switch to desktop image */
    .hero-fullscreen {
        min-height: 600px;
        background-image: url('library1-desk.jpg');
        align-items: flex-start;
        justify-content: flex-end;
        padding: 0;
    }

    .hero-overlay {
        max-width: none;
        width: 100%;
        padding: 3rem;
    }

    .hero-text {
        max-width: 1200px;
        margin: 0 0 0 0;
        text-align: left;
    }

    .hero-text h1 {
        font-family: "Lato", Helvetica, Arial, sans-serif;
        font-size: 3.5rem;
        font-weight: 400;
        text-align: left;
        letter-spacing: 1px;
        text-transform: none;
        margin: 0 0 1rem 0;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    }

    .hero-subtitle {
        font-family: "Lato", Helvetica, Arial, sans-serif;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 300;
        text-align: left;
        line-height: 1.5;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        letter-spacing: 0;
    }

    /* Hide mobile hero button on tablet+ */
    .hero-cta-button {
        display: none;
    }

    .description-content {
        text-align: center;
        max-width: 700px;
    }

    .description-content p {
        font-size: 1.6rem;
        line-height: 1.5;
        letter-spacing: -0.02em;
    }

    /* CTA Button - Tablet */
    .cta-section {
        padding: 3rem 2rem;
    }
    
    .cta-button-large {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }

    .flex-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .flexitem-2 {
        flex: 1 1 45%;
        max-width: 48%;
    }

    .flexitem-3 {
        flex: 1 1 30%;
        max-width: 32%;
    }

    .flexitem-4 {
        flex: 1 1 22%;
        max-width: 23%;
    }

    /* Footer - Tablet */
    .footer-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-social-column {
        grid-column: 1 / -1;
    }

    /* Navigation - Tablet: restore original styles */
    .topnav-sticky {
        align-items: center;
        padding: 0.75rem 1rem;
        min-height: 70px;
    }

    .leftside img {
        height: 50px;
    }

    .icon {
        margin-top: 0;
    }
}

/* ============================================
   DESKTOP BREAKPOINT (min-width: 800px)
   ============================================ */

@media (min-width: 800px) {
    body {
        font-size: 1.3rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    /* Hero adjustments for desktop - text in bottom left corner */
    .hero-fullscreen {
        min-height: 700px;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .hero-overlay {
        padding: 4rem;
    }

    .hero-text h1 {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
        line-height: 1.5;
    }

    .hero-description {
        padding: 10rem 2rem;
    }

    .description-content {
        max-width: 920px;
    }

    .description-content p {
        font-size: 1.75rem;
        line-height: 1.5;
        letter-spacing: -0.02em;
    }

    /* Features Grid - Desktop 2x2 layout */
    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 100vh 100vh;
    }

    .features-grid-item:nth-child(1) { order: unset; grid-column: 1; grid-row: 1; } /* coworking image - top left */
    .features-grid-item:nth-child(2) { order: unset; grid-column: 2; grid-row: 1; } /* workplace text - top right */
    .features-grid-item:nth-child(3) { order: unset; grid-column: 1; grid-row: 2; } /* kitchen text - bottom left */
    .features-grid-item:nth-child(4) { order: unset; grid-column: 2; grid-row: 2; } /* kitchen image - bottom right */

    .features-grid-item.image-item {
        aspect-ratio: unset;
        min-height: unset;
        height: 100%;
    }

    .features-grid-item.image-item img {
        height: 100%;
        object-fit: cover;
    }

    .features-grid-item.text-item {
        padding: 4rem 3rem;
        height: 100%;
    }

    .text-item-content {
        max-width: 380px;
    }

    .text-item-content h2 {
        font-size: 2.8rem;
    }

    .text-item-content .subhead {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .text-item-content .body-text {
        font-size: 1rem;
    }

    .features-button {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 1rem;
    }

    .features-button:last-of-type {
        margin-right: 0;
    }

    /* Desktop Navigation - restore original */
    .topnav-sticky {
        height: 80px;
        padding: 0 2rem;
        align-items: center;
        background-color: #f8f4e9;
        position: relative;
    }

    /* Homepage desktop nav - same cream background as internal pages */
    .homepage .topnav-sticky {
        background-color: #f8f4e9;
        position: relative;
        align-items: center;
        padding: 0 2rem;
        height: 80px;
    }

    .leftside img {
        height: 70px;
    }

    /* Homepage desktop - same logo size as internal pages */
    .homepage .leftside img {
        height: 70px;
    }

    /* Show navigation links inline on desktop */
    .rightside {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        width: auto;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
    }

    .rightside a {
        padding: 0.8rem 1.2rem;
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 1px;
        border-bottom: none;
        white-space: nowrap;
        color: #2f4f4f !important;
    }

    .rightside a:hover,
    .rightside a.active2 {
        background-color: #eecbbc;
        padding-left: 1.2rem;
    }

    /* Tour Button - Desktop */
    .tour-button {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background-color: #2f4f4f;
        color: #ffffff !important;
        padding: 0.7rem 1.5rem;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        border-radius: 4px;
        white-space: nowrap;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin-left: 1rem;
        margin-right: 0;
    }

    .tour-button:hover {
        background-color: #1a2d2d;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        opacity: 1;
    }

    /* Hide hamburger on desktop */
    .icon {
        display: none !important;
    }

    /* Container adjustments */
    .flex-container {
        width: 85%;
        gap: 2.5rem;
    }

    .blog-container {
        width: 70%;
        font-size: 1rem;
    }

    /* Utility classes */
    .hidedesk {
        display: none;
    }

    .hidemobile {
        display: inline;
    }

    /* Footer - Desktop */
    footer {
        padding: 4rem 2rem 2rem 2rem;
    }
    
    .footer-logo-fulton,
    .footer-logo-commons {
        font-size: 3.5rem;
    }
    
    .footer-main {
        display: grid;
        grid-template-columns: auto repeat(4, minmax(150px, 0.85fr));
        gap: 6rem;
        margin-bottom: 3rem;
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-logo-column {
        grid-column: 1 / 2;
        max-width: 220px;
    }
    
    .footer-column:nth-child(2) {
        grid-column: 2 / 3;
    }
    
    .footer-column:nth-child(3) {
        grid-column: 3 / 4;
    }
    
    .footer-hours-column {
        grid-column: 4 / 5;
        align-items: flex-start;
    }
    
    .footer-cta-button {
        align-self: flex-start;
    }
    
    .footer-social-column {
        grid-column: 5 / 6;
    }
    
    .footer-social-links {
        align-items: flex-start;
    }
    
    .footer-bottom {
        border-top: 1px solid #d0d0d0;
        padding-top: 2rem;
        margin-top: 0;
        text-align: left;
    }
}

/* ============================================
   LARGE DESKTOP BREAKPOINT (min-width: 1200px)
   ============================================ */

@media (min-width: 1200px) {
    .flex-container {
        max-width: 1200px;
    }

    .rightside a {
        font-size: 0.75rem;
        padding: 0.8rem 1.5rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .topnav-sticky,
    .icon,
    footer {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}