/* ============================================
   REG ADVISOR PARTNERS - Global Stylesheet
   ============================================ */

/* 🎨 VARIABILI COLORI */
:root {
    /* Palette Principale */
    --primary-dark: #0D2B5E;
    --primary-medium: #1A4A9B;
    --primary-light: #2E6DD6;
    --primary-accent: #1A4A9B;
    
    /* Neutrali */
    --dark-text: #1A202C;
    --gray-text: #718096;
    --light-bg: #E2E8F0;
    --white: #FFFFFF;
    --border-color: #CBD5E0;
    
    /* Spacing */
    --spacing-unit: 1rem;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', 'Garamond', serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Z-index */
    --z-navbar: 1000;
    --z-dropdown: 999;
    --z-modal: 1050;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

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

body {
    font-family: var(--font-main);
    color: var(--dark-text);
    background-color: var(--white);
    line-height: var(--line-height-normal);
    font-size: var(--font-size-base);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: var(--line-height-tight);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-base);
}

/* Heading LEVEL is chosen for document structure (screen-reader outline, SEO);
   these classes set the visual SIZE independently, so a heading can sit at the
   correct level without changing how the page looks. */
.h-section {
    font-size: var(--font-size-2xl);
}

.h-card {
    font-size: var(--font-size-xl);
}

/* Read by screen readers, invisible on screen. For sections the design
   deliberately shows without a heading, but which still need one to keep the
   document outline correct. */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

p {
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-relaxed);
    color: var(--gray-text);
}

a {
    color: var(--primary-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   HEADER & NAVBAR (STICKY)
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--light-bg);
    z-index: var(--z-navbar);
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
}

.navbar-logo img {
    height: 40px;
    width: auto;
}

.navbar-menu {
    display: flex;
    gap: var(--spacing-xl);
    list-style: none;
}

.navbar-menu a {
    color: var(--dark-text);
    font-size: var(--font-size-base);
    font-weight: 500;
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-medium);
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    color: var(--primary-dark);
    cursor: pointer;
    line-height: 0;
}

.navbar-toggle svg {
    width: 26px;
    height: 26px;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
    margin-top: 80px; /* Height di header */
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}

/* Every direct child of main is a full-bleed row. Required because main is a flex
   column: a child with horizontal auto margins (.container, which centres itself
   that way) is NOT stretched by the flex container and would otherwise shrink to
   fit its content. width:100% restores block-level width; max-width and the auto
   margins then centre it exactly as before. */
main > * {
    width: 100%;
}

/* Closing CTA band. On a page shorter than the viewport, main's min-height leaves
   slack: give it to the band so it stretches down to the footer, with its content
   centred, instead of leaving a blank strip. Inert on taller pages. */
main > .cta-band:last-child {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ...and let the band run straight into the footer, with no white seam between
   the two coloured areas. Pages ending in white text keep the footer's margin. */
main:has(> .cta-band:last-child) + footer {
    margin-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-fluid {
    width: 100%;
    padding-right: var(--spacing-lg);
    padding-left: var(--spacing-lg);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: var(--white);
    padding: var(--spacing-2xl) var(--spacing-lg);
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Homepage hero holds only the video — the wording sits in the band below it */
.hero.hero-home {
    padding: 0;
}

.hero-statement {
    background-color: var(--light-bg);
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
}

.hero-statement h1 {
    font-size: var(--font-size-2xl);
    color: var(--primary-dark);
    max-width: 900px;
    margin: 0 auto;
    line-height: var(--line-height-normal);
}

.hero-graphic {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-motion {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
    /* Show the poster still instead of the looping video */
    .hero-video {
        display: none;
    }

    .hero-motion {
        background-image: url('/video/reg-centaurus-v6-poster.jpg');
        background-size: cover;
        background-position: center;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: var(--font-size-4xl);
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.hero p {
    font-size: var(--font-size-lg);
    color: #E2E8F0;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.hero-cta {
    display: inline-block;
    margin-top: var(--spacing-lg);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-medium);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-medium);
}

.btn-secondary:hover {
    background-color: var(--light-bg);
    border-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-medium);
    border: 2px solid var(--primary-medium);
}

.btn-outline:hover {
    background-color: var(--primary-medium);
    color: var(--white);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: var(--spacing-2xl) var(--spacing-lg);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-medium);
}

/* ============================================
   CARDS & CONTENT
   ============================================ */

.card {
    background-color: #F7FAFC;
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-margin-top: 100px;
}

#approach {
    scroll-margin-top: 100px;
}

.card-body {
    padding: var(--spacing-lg);
}

.card-points {
    margin-top: var(--spacing-md);
    padding-left: 1.1rem;
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: var(--line-height-relaxed);
}

.card-points li {
    margin-bottom: 0.35rem;
}

.insight-meta {
    color: var(--primary-medium);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.card-title {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.card-text {
    color: var(--gray-text);
    line-height: var(--line-height-relaxed);
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #0D2B5E;
    color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* ============================================
   APPROACH STEPS
   ============================================ */

.approach-header {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--light-bg);
}

.approach-header h2 {
    margin-bottom: var(--spacing-sm);
}

.approach-steps {
    display: flex;
    align-items: stretch;
    gap: var(--spacing-md);
}

.approach-step {
    flex: 1 1 0;
    background-color: #F7FAFC;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-md);
}

.approach-step-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--light-bg);
    margin-bottom: var(--spacing-md);
}

.approach-step-title {
    color: var(--primary-dark);
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.approach-step-text {
    color: var(--gray-text);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
}

.approach-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-medium);
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-modal);
    background-color: var(--primary-dark);
    color: white;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-xl);
}

.cookie-consent-text {
    margin: 0;
    flex: 1 1 320px;
    font-size: var(--font-size-sm);
    color: #E2E8F0;
    line-height: var(--line-height-normal);
}

.cookie-consent-text a {
    color: white;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.cookie-consent-actions .btn {
    padding: 0.6rem 1.25rem;
    font-size: var(--font-size-sm);
}

.recaptcha-consent-notice {
    font-size: 0.8rem;
    color: var(--gray-text);
    background-color: #F7FAFC;
    border: 1px solid var(--light-bg);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: 1rem;
}

.recaptcha-consent-notice a {
    color: var(--primary-medium);
}

@media (max-width: 600px) {
    .cookie-consent-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-consent-actions {
        justify-content: center;
    }
}

/* ============================================
   AREAS OF EXPERTISE
   ============================================ */

.expertise-card {
    background-color: #F7FAFC;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-md);
}

.expertise-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-sm);
}

.expertise-icon {
    flex-shrink: 0;
    color: var(--primary-dark);
    display: flex;
}

.expertise-icon svg {
    width: 26px;
    height: 26px;
}

.expertise-title {
    color: var(--primary-dark);
    font-size: 1.05rem;
    margin: 0;
}

.expertise-text {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: var(--line-height-relaxed);
}

/* ============================================
   TEAM MEMBERS (Senior Partners cards)
   ============================================ */

.team-member {
    text-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid var(--light-bg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

/* Portrait frame matching the source shots, so head and bust both stay in view.
   The frame — not the file — sets the ratio, so every card is identical even if
   a photo is later swapped for one of slightly different dimensions. */
.member-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #0D2B5E 0%, #1A4A9B 100%);
}

.member-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1rem;
    color: var(--primary-medium);
    font-weight: 500;
    margin-bottom: 1rem;
    /* Reserve two lines so a title that wraps on one card doesn't shift the other */
    min-height: 3rem;
}

.member-bio {
    color: var(--gray-text);
    line-height: var(--line-height-relaxed);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-text);
    text-align: left;
    border-top: 1px solid var(--light-bg);
    padding-top: 1.5rem;
    /* Bios differ in length: pin this block to the bottom so both cards line up */
    margin-top: auto;
}

.credential {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.credential::before {
    content: '→';
    color: var(--primary-medium);
    font-weight: bold;
    flex-shrink: 0;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ============================================
   FOOTER (3 COLONNE)
   ============================================ */

footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-2xl) var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    color: var(--white);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--spacing-sm);
}

/* Icone inline nel testo (footer, blocchi contatto). Stessa famiglia visiva
   delle icone nei pannelli — tratto disegnato, non emoji — e sempre del colore
   del testo che accompagnano. */
.icon-inline {
    width: 1.05em;
    height: 1.05em;
    vertical-align: -0.18em;
    margin-right: 0.3em;
    flex-shrink: 0;
}

.footer-column a {
    color: #E2E8F0;
    font-size: var(--font-size-sm);
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    font-size: var(--font-size-sm);
    color: #CBD5E0;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: var(--spacing-lg);
}

label {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-text);
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="phone"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-medium);
    box-shadow: 0 0 0 3px rgba(26, 74, 155, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

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

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

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

.mt-1 { margin-top: var(--spacing-md); }
.mt-2 { margin-top: var(--spacing-lg); }
.mt-3 { margin-top: var(--spacing-xl); }
.mt-4 { margin-top: var(--spacing-2xl); }

.mb-1 { margin-bottom: var(--spacing-md); }
.mb-2 { margin-bottom: var(--spacing-lg); }
.mb-3 { margin-bottom: var(--spacing-xl); }
.mb-4 { margin-bottom: var(--spacing-2xl); }

.p-1 { padding: var(--spacing-md); }
.p-2 { padding: var(--spacing-lg); }
.p-3 { padding: var(--spacing-xl); }
.p-4 { padding: var(--spacing-2xl); }

.flex { display: flex; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-column { display: flex; flex-direction: column; }
.gap-1 { gap: var(--spacing-md); }
.gap-2 { gap: var(--spacing-lg); }

.max-width { max-width: 1200px; margin: 0 auto; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .navbar-menu {
        gap: var(--spacing-lg);
    }
    
    h1 {
        font-size: var(--font-size-2xl);
    }
    
    .hero {
        min-height: 400px;
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .approach-steps {
        flex-direction: column;
    }

    .approach-step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-base: 0.95rem;
    }
    
    .navbar {
        padding: var(--spacing-md);
    }
    
    .navbar-menu {
        display: none;
    }
    
    .navbar-toggle {
        display: block;
    }
    
    .navbar-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        box-shadow: var(--shadow-lg);
    }
    
    h1 {
        font-size: var(--font-size-2xl);
    }
    
    h2 {
        font-size: var(--font-size-xl);
    }
    
    main {
        /* Clears the fixed header, which is ~87px tall here because the logo text wraps */
        margin-top: 90px;
        min-height: calc(100vh - 90px);
    }
    
    section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .hero {
        min-height: 300px;
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .hero h1 {
        font-size: var(--font-size-2xl);
    }
    
    .hero p {
        font-size: var(--font-size-base);
    }
    
    .btn {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-sm);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 1rem;
        --spacing-xl: 1.5rem;
        --spacing-2xl: 2rem;
        --font-size-xl: 1.25rem;
        --font-size-2xl: 1.75rem;
        --font-size-3xl: 2rem;
    }
    
    h1 {
        font-size: var(--font-size-xl);
    }
    
    h2 {
        font-size: var(--font-size-lg);
    }
    
    .navbar-logo img {
        height: 30px;
    }
    
    .hero {
        min-height: 250px;
    }
    
    .btn {
        display: block;
        text-align: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

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

@media print {
    header,
    footer,
    .navbar-toggle {
        display: none;
    }
    
    main {
        margin-top: 0;
    }
    
    a {
        text-decoration: underline;
    }
}
