/* Roobert Font Embedding */
@font-face {
    font-family: 'Roobert';
    src: url('fonts/Roobert-Regular.woff2') format('woff2'),
         url('fonts/Roobert-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roobert';
    src: url('fonts/Roobert-Bold.woff2') format('woff2'),
         url('fonts/Roobert-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Base Styles */
body {
    font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #061C22;
    background-color: #ffffff;
}

/* Navbar */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #0031CA;
}

.navbar-nav .nav-link:hover {
    color: #061C22;
}

/* Hero Section */
.hero-section {
    background-color: #0031CA;
    min-height: 280px;
}

.hero-section h1 {
    font-size: 2.5rem;
}

/* Mint Hero Heading */
.text-mint {
    color: #74FFE1 !important;
}

.btn-nav-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #0031CA;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-nav-circle:hover {
    background-color: #74FFE1;
    color: #061C22;
}

/* Cards Section */
.cards-section {
    background-color: #E3FFF9;
}

.card {
    border-radius: 20px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: #0031CA;
}

.card-title {
    color: #0031CA;
    font-weight: 700;
    font-size: 1.3rem;
}

.card-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #061C22;
    opacity: 0.9;
}

/* Custom Buttons */
.btn-custom {
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    border: none;
    font-size: 0.95rem;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

/* Card Button: Default Blue, Hover Mint */
.btn-card {
    background-color: #0031CA;
    color: #ffffff;
}

.btn-card:hover {
    background-color: #74FFE1;
    color: #061C22; /* Dark text for appropriate contrast on mint */
}

.btn-custom .material-icons {
    font-size: 1.2rem;
}

/* Footer */
.footer-section {
    background-color: #0031CA;
    font-size: 0.9rem;
}

.footer-section a:hover {
    text-decoration: underline !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
}

.card.image-card {
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 220px;      /* set this to match your other cards */
  padding: 0;
  overflow: hidden;       /* CRITICAL: prevents spillover */
  border-radius: 16px;
}

.card.image-card .card-image {
  display: block;        /* removes inline spacing */
  width: 100%;
  height: 100%;
  object-fit: cover;     /* CRITICAL: contains image inside card */
}
