/**
 * Client-Specific Styles
 *
 * Custom CSS for this theme that doesn't belong in variables.
 * Use BEM methodology for class naming.
 */

/* Import fonts */
@import './fonts.css';

/* Import design token overrides */
@import './_variables.css';

/* Import header styles */
@import './header.css';

/* Import module/block system styles */
@import './modules.css';

/* Import footer styles */
@import './footer.css';

/* Import block-specific styles */
@import './blocks/video-cta.css';
@import './blocks/media-column.css';
@import './blocks/media-video-column.css';

/* Base styles */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* Explicit reset for heading tags to override browser defaults */
h1, h2, h3, h4, h5, h6,p {
  margin: 0;
   box-sizing: border-box;
}

input,
textarea,
select,
button {
  font-family: inherit;
  outline: none;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
    font-family: var(--font-body-family);
    font-size: 1rem;
    font-weight: var(--font-body-weight);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color:var(--color-text);
    margin:0;
}
address{
  font-style:normal;
}

/* padding */
.pt-0{
    padding-top:0;
}

.pb-0{
    padding-bottom:0;
}


/* margin */
.mb-4{
    margin-bottom:1rem;
}
/* Font Weights */
.font-medium {
    font-weight: 500;
}
.font-semibold {
    font-weight: 600;
}
.font-bold {
    font-weight: 700;
}
.font-extrabold {
    font-weight: 800;
}

.text-center{
    text-align:center;
}
.text-left{
    text-align:left;
}
.text-right{
    text-align:right;
}

/* custom scroll - Mobile first (default small) */
.custom-scrollbar {
    overflow: auto;
}
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f6f6f6;
    border-radius: 7px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--color-text);
    border-radius: 100px;
    background-clip: content-box;
}

/* Desktop: larger scrollbar */
@media (min-width: 1025px) {
    .custom-scrollbar::-webkit-scrollbar {
        width: 7px;
    }
}

/* Mobile First - Default for small screens */
.container{
  box-sizing: border-box;
  max-width:88.75rem;
  width:100%;
  padding: 0 1.25rem;
  margin-left: auto !important;
  margin-right: auto !important;
}

.flex{
    display:flex;
}
.flex-wrap{
    flex-wrap:wrap;
}
.justify-between{
    justify-content:space-between;
}
.justify-center{
    justify-content:center;
}
.items-center{
    align-items: center;
}
.items-start{
    align-items:start;
}
.flex-center{
    display:flex;
    justify-content:center;
    align-items: center;
}
.flex-column{
    flex-direction: column;
}

.block{
    display:block;
}
.inline{
    display:inline;
}
.overflow-hidden{
    overflow:hidden;
}
.overflow-visible{
    overflow:visible;
}
.space-nowrap{
    white-space:nowrap
}
/* postion */
.relative{
    position:relative;
}
.absolute{
    position:absolute;
}
.fixed{
    position:fixed;
}

.pointer{
    cursor:pointer;
}
.ml-auto{
    margin-left:auto;
}
.mx-auto{
    margin-left:auto;
    margin-right:auto;
}
.mt-auto{
    margin-top: auto;
}
.w-100{
    width:100%;
}
.h-100{
    height:100%;
}
.decoration-none{
    text-decoration: none;
}

/* Tablet and up */
@media (min-width: 1025px) {
    .container {
        padding: 0 var(--spacing-6);
    }
}

/* Desktop and up */
@media (min-width: 1281px) {
    .container{
        padding: 0 var(--spacing-13);
    }
}

@media (max-width: 767px) {
    .xs-d-none{
      display:none;
    }
}
/* Example client-specific component */
.corpayprepay-custom-section {
    padding: 2rem;
    background: var(--color-primary, #0066cc);
}

.corpayprepay-custom-section__title {
    font-size: 2rem;
    color: white;
}

/* ==========================================================================
   CTA Button Styles
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.75rem 18px;
    font-family: var(--font-body-family);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn--primary {
    background-color: var(--btn-primary-bg);
    color: var(--color-white);
}

.btn--primary:hover,
.btn-primary:focus-visible,
.btn--primary:active  {
    background-color: var(--btn-primary-hover-bg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn--secondary {
    background-color: var(--color-white);
    color: var(--color-text);
    border:1px solid var(--color-black);
    padding:11px 18px;
}

.btn--secondary:hover,
.btn-secondary:focus-visible,
.btn--secondary:active  {
    background-color: #f5f5f5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
    background: var(--color-brand);
    color: var(--color-light, #ffffff);
    --footer-link-color: #f2d5e3;
}

.site-footer__main {
    padding: 3rem 0 2rem;
}

.site-footer__grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

/* Left section: Quick Links, Customer Support, Contact Us */
.site-footer__left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* .site-footer__section {
    Mobile: stacked sections
} */

.site-footer__heading {
    font-family: 'GT America', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* Quick Links Menu */
.site-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__menu-item {
    margin-bottom: 0.5rem;
    font-family: 'GT America', sans-serif;
    font-weight: 400; 
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.site-footer__menu-link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__menu-link:hover {
    color: var(--color-primary, #00aaff);
}

/* Customer Support & Contact Content */
.site-footer__content {
    font-family: 'GT America', sans-serif;
    font-weight: 400;
    font-size: 0.875rem; 
    line-height: 1.25rem;
    color: #f2d5e3;
}

.site-footer__content p {
    margin: 0.5rem 0;
}

/* Right section: Logo, Social Links */
.site-footer__right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.site-footer__logo img {
    max-width: 200px;
    height: auto;
}

/* Social Links Menu */
.site-footer__social-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-light, #ffffff);
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.site-footer__social-link:hover {
    background: var(--color-primary, #00aaff);
    color: #ffffff;
}

/* Social Icons - Add these classes to menu items in WP Admin */
.social-linkedin .site-footer__social-link::before,
.social-x .site-footer__social-link::before,
.social-facebook .site-footer__social-link::before,
.social-youtube .site-footer__social-link::before,
.social-instagram .site-footer__social-link::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* LinkedIn */
.social-linkedin .site-footer__social-link::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20.5 2h-17A1.5 1.5 0 002 3.5v17A1.5 1.5 0 003.5 22h17a1.5 1.5 0 001.5-1.5v-17A1.5 1.5 0 0020.5 2zM8 19H5v-9h3zM6.5 8.25A1.75 1.75 0 118.3 6.5a1.78 1.78 0 01-1.8 1.75zM19 19h-3v-4.74c0-1.42-.6-1.93-1.38-1.93A1.74 1.74 0 0013 14.19a.66.66 0 000 .14V19h-3v-9h2.9v1.3a3.11 3.11 0 012.7-1.4c1.55 0 3.36.86 3.36 3.66z'/%3E%3C/svg%3E");
}

/* X (Twitter) */
.social-x .site-footer__social-link::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

/* Facebook */
.social-facebook .site-footer__social-link::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

/* YouTube */
.social-youtube .site-footer__social-link::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
}

/* Instagram */
.social-instagram .site-footer__social-link::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E");
}

/* Screen reader text for social icons */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Copyright & Legal */
.site-footer__bottom {
    padding: 2rem 0;
}

.site-footer__copyright {
    font-family: 'GT America', sans-serif;
    font-weight: 400; 
    font-size: 0.875rem; 
    line-height: 1.25rem; 
    color: #f2d5e3;
    text-align: center;
}

.site-footer__copyright p {
    margin: 0.5rem 0;
}

/* Desktop layout */
@media (width >= 768px) {
    .site-footer__main {
        padding: 4rem 0 3rem;
    }

    .site-footer__grid {
        display: grid;
        grid-template-columns: 7fr 5fr;
        flex-direction: row;
        justify-content: space-between;
        gap: 4rem;
        text-align: left;
    }

    /* Left section: horizontal layout */
    .site-footer__left {
        justify-content: flex-start;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5rem;
    }

    .site-footer__section {
        flex: 0 1 auto;
    }

    /* Right section: aligned right */
    .site-footer__right {
        align-items: flex-end;
    }

    .site-footer__logo img {
        max-width: 250px;
    }

    .site-footer__copyright {
        text-align: left;
    }
}

@media (width >= 1024px) {
    .site-footer__left {
        gap: 4rem;
    }
}