@font-face {
    font-family: 'SVNGothamBold';
    src: url('../fonts/gothamBold/SVNGOTHAMROUNDEDBOLD.eot');
    src: url('../fonts/gothamBold/SVNGOTHAMROUNDEDBOLD.eot?#iefix') format('embedded-opentype'),
         url('../fonts/gothamBold/SVNGOTHAMROUNDEDBOLD.woff2') format('woff2'),
         url('../fonts/gothamBold/SVNGOTHAMROUNDEDBOLD.woff') format('woff'),
         url('../fonts/gothamBold/SVNGOTHAMROUNDEDBOLD.ttf') format('truetype'),
         url('../fonts/gothamBold/SVNGOTHAMROUNDEDBOLD.svg#SVNGothamBold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'SVNGothamMedium';
    src: url('../fonts/gothamMedium/SVNGOTHAMROUNDEDMEDIUM.eot');
    src: url('../fonts/gothamMedium/SVNGOTHAMROUNDEDMEDIUM.eot?#iefix') format('embedded-opentype'),
         url('../fonts/gothamMedium/SVNGOTHAMROUNDEDMEDIUM.woff2') format('woff2'),
         url('../fonts/gothamMedium/SVNGOTHAMROUNDEDMEDIUM.woff') format('woff'),
         url('../fonts/gothamMedium/SVNGOTHAMROUNDEDMEDIUM.ttf') format('truetype'),
         url('../fonts/gothamMedium/SVNGOTHAMROUNDEDMEDIUM.svg#SVNGothamMedium') format('svg');
    font-weight: 500;
    font-style: normal;
}

:root {
    --foreground: oklch(0.141 0.005 285.823);
    --white: #ffffff;
    --blue: #0102fa;
    --gold: #ffd966;
    --error: oklch(0.59 0.22 27.47);
    --SVNGothamBold: 'SVNGothamBold', sans-serif;
    --SVNGothamMedium: 'SVNGothamMedium', sans-serif;
}

body {
    font-family: var(--SVNGothamMedium);
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Custom Utilities mimicking the @apply rules */
.container-custom {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1060px;
    padding-left: 15px;
    padding-right: 15px;
}

.btn-custom {
    position: relative;
    cursor: pointer;
    border-radius: 9999px;
    transition: all 0.3s;
}
.btn-custom:hover {
    transform: scale(1.02);
}
.btn-custom:active {
    transform: scale(0.95);
}

/* Modal styles */
.dialog-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none; /* Hidden by default */
}
.dialog-overlay.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

