/* Apply Inter font globally */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

/* Sticky header */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Align icons in dropdowns */
.dropdown-item i.fa-fw {
    width: 1.25em;
    text-align: center;
}

/* Tooltip support */
[data-bs-toggle="tooltip"] {
    cursor: pointer;
}

/* Responsive menu tweaks */
@media (max-width: 768px) {
    .mega-menu {
        flex-direction: column;
    }
}

.upload-button-title {
    font-size: 2rem;               /* Default: Mobile size */
    color: #00BFFF;                /* Gray-800 */
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) { /* sm: */
    .upload-button-title {
        font-size: 3rem;           /* Bigger on tablets and up */
    }
}

.upload-button-desc {
    font-size: 1.125rem;           /* Default: 18px */
    font-weight: 400;
    color: #6b7280;                /* Gray-500 */
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .upload-button-desc {
        font-size: 1.5rem;         /* 24px on larger screens */
    }
}

.upload-button {
    font-size: 1rem;               /* Default: 16px */
    padding: 0.75rem 1.5rem;       /* Comfortable spacing for mobile */
    border-radius: 9999px;         /* Full pill */
    background-color: #00BFFF;     
    color: white;
    font-weight: 600;
    border: none;
    transition: background-color 0.2s ease-in-out, transform 0.15s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 280px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .upload-button {
        font-size: 1.25rem;        /* 20px */
        padding: 1rem 2rem;
        max-width: none;
    }
}

.upload-button:hover {
    background-color: #00afef;   
    transform: translateY(-3px);
}

.upload-button:active {
    transform: scale(0.97);
}

.hide-scrollbar {
    overflow: auto;
    -ms-overflow-style: none;  /* IE and Edge */
  }
  
  .hide-scrollbar::-webkit-scrollbar {
    display: none;             /* Chrome, Safari and Opera */
  }

  .home-page-title {
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    color: #33333b;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4px;
    max-width: 1100px;
  }

  .home-title-subtitle {
    line-height: 32px;
    font-size: 22px;
    font-weight: 400;
    color: #47474f;
    max-width: 980px;
    margin: auto auto 28px;
}

.download-button {
    font-size: 1rem;               /* Default: 16px */
    padding: 0.75rem 1.5rem;       /* Comfortable spacing for mobile */
    border-radius: 9999px;         /* Full pill */
    background-color: #07e29d;     
    color: white;
    font-weight: 600;
    border: none;
    transition: background-color 0.2s ease-in-out, transform 0.15s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 280px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .download-button {
        font-size: 1.25rem;        /* 20px */
        padding: 1rem 2rem;
        max-width: none;
    }
}

.download-button:hover {
    background-color: #00b57c;   
    transform: translateY(-3px);
}

.wp-block-image {
    border: 2px solid rgb(67, 67, 67);
    border-radius: 15px;
}

.wp-block-image {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.wp-block-cover__image-background {
    border-radius: 1rem;
}