/**
 * Consolidated Styles - Combined from about.css, mmm.css, and enhanced main styles
 * All site-specific styles consolidated here
 */

/* ============================================================
   Logo Styles (from mmm.css)
   ============================================================ */
.logo-img {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .logo-img {
        width: 120px;
    }
}

/* ============================================================
   Card Styles (from about.css)
   ============================================================ */
.card-title {
    color: #262626;
    font-size: 1.5em;
    line-height: normal;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.small-desc {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5em;
    color: #452c2c;
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 4em;
    height: 4em;
    overflow: hidden;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #6293c8, #384c6c);
    border-radius: 0 4px 0 32px;
}

.go-arrow {
    margin-top: -8px;
    margin-right: -8px;
    color: white;
    font-family: courier, sans;
}

.card {
    display: block;
    position: relative;
    max-width: 1600px;
    max-height: 1400px;
    background-color: #f2f8f9;
    border-radius: 10px;
    padding: 2em 1.2em;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #c3e6ec, #a7d1d9);
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s ease;
}

.card:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg, #364a60, #384c6c);
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.35s ease-out;
}

.card:hover:before {
    transform: scale(28);
}

.card:hover .small-desc {
    transition: all 0.5s ease-out;
    color: rgba(255, 255, 255, 0.8);
}

.card:hover .card-title {
    transition: all 0.5s ease-out;
    color: #ffffff;
}

.values .card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease;
}

.values .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(253, 126, 20, 0.18);
    background-color: rgba(253, 126, 20, 0.08);
}

.values .card:before {
    display: none;
}

/* ============================================================
   Accessibility & Performance Enhancements
   ============================================================ */
/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
    }
    
    nav, footer, .nav-menu {
        display: none;
    }
}
