/**
 * AGEEMCTI Utilities
 * Additional utility classes to complement TailwindCSS
 */

/* ============================================
   TEXT UTILITIES
   ============================================ */

.text-navy {
    color: #0A192F !important;
}

.text-navy-light {
    color: #112240 !important;
}

.text-gold {
    color: #C9A84C !important;
}

.text-gold-light {
    color: #D4B76A !important;
}

/* Font families */
.font-heading {
    font-family: 'Merriweather', Georgia, serif;
}

.font-body {
    font-family: 'Open Sans', system-ui, sans-serif;
}

/* ============================================
   BACKGROUND UTILITIES
   ============================================ */

.bg-navy {
    background-color: #0A192F !important;
}

.bg-navy-light {
    background-color: #112240 !important;
}

.bg-navy-dark {
    background-color: #061224 !important;
}

.bg-gold {
    background-color: #C9A84C !important;
}

.bg-gold-light {
    background-color: #D4B76A !important;
}

.bg-gold-dark {
    background-color: #A68A3D !important;
}

/* ============================================
   BORDER UTILITIES
   ============================================ */

.border-navy {
    border-color: #0A192F !important;
}

.border-gold {
    border-color: #C9A84C !important;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

/* Container sizes */
.container-narrow {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.container-wide {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Section spacing */
.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-sm {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.section-lg {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* ============================================
   DISPLAY UTILITIES
   ============================================ */

/* Hide on mobile */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Hide on tablet and up */
@media (min-width: 768px) {
    .hide-tablet-up {
        display: none !important;
    }
}

/* Hide on desktop */
@media (min-width: 1024px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Show only on mobile */
@media (min-width: 768px) {
    .show-mobile-only {
        display: none !important;
    }
}

/* ============================================
   FLEX UTILITIES
   ============================================ */

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* ============================================
   SPACING UTILITIES
   ============================================ */

/* Auto margins */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

/* No spacing */
.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

/* ============================================
   VISIBILITY UTILITIES
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   SHADOW UTILITIES
   ============================================ */

.shadow-card {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-card-hover:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ============================================
   CURSOR UTILITIES
   ============================================ */

.cursor-pointer {
    cursor: pointer;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

/* ============================================
   TRANSITION UTILITIES
   ============================================ */

.transition-fast {
    transition-duration: 150ms;
}

.transition-normal {
    transition-duration: 200ms;
}

.transition-slow {
    transition-duration: 300ms;
}

/* ============================================
   Z-INDEX UTILITIES
   ============================================ */

.z-dropdown {
    z-index: 1000;
}

.z-sticky {
    z-index: 1020;
}

.z-modal {
    z-index: 1050;
}

.z-tooltip {
    z-index: 1070;
}

/* ============================================
   OVERFLOW UTILITIES
   ============================================ */

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

/* ============================================
   WIDTH/HEIGHT UTILITIES
   ============================================ */

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}
