@import "tailwindcss";

@layer base {
  :root {
    --color-primary: #2145AC;
    --color-primary-hover: #19368A;
    --color-accent: #FFB119;
    --color-accent-hover: #E59D12;
    --color-success: #10B981;
    --color-error: #DC2626;
    --color-bg: #F3E6D6;
    --color-surface: #FFFFFF;
    --color-text: #0F172A;
    --color-text-secondary: #64748B;
    --color-border: #E2E8F0;
  }

  body {
    background-color: #F3E6D6 !important;
    color: var(--color-text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
  }
}

/* Custom Brand Helper Classes */
.bg-brand-primary { background-color: #2145AC !important; }
.hover\:bg-brand-primary-hover:hover { background-color: #19368A !important; }
.text-brand-primary { color: #2145AC !important; }
.border-brand-primary { border-color: #2145AC !important; }

.bg-brand-accent { background-color: #FFB119 !important; }
.hover\:bg-brand-accent-hover:hover { background-color: #E59D12 !important; }
.text-brand-accent { color: #FFB119 !important; }
.border-brand-accent { border-color: #FFB119 !important; }

/* Swiper Custom Styling */
.swiper-pagination {
    position: relative !important;
    margin-top: 1.5rem !important;
    bottom: 0 !important;
}
.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #CBD5E1 !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}
.swiper-pagination-bullet-active {
    width: 32px !important;
    border-radius: 9999px !important;
    background: #FFB119 !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #0F172A !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 9999px !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
    z-index: 30 !important;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: 900 !important;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #FFB119 !important;
    border-color: #FFB119 !important;
    color: #0F172A !important;
}

/* Hide scrollbar utility for all browsers */
.no-scrollbar::-webkit-scrollbar {
  display: none !important;
}
.no-scrollbar {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.shadow-custom-sm {
  box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.06);
}

.shadow-custom-md {
  box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.08);
}

.rounded-custom {
  border-radius: 1rem;
}
