@font-face {
    font-family: "Ubuntu";
    font-weight: 300;
    src: url("../fonts/Ubuntu-Light.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 400;
    src: url("../fonts/Ubuntu-Regular.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 400;
    src: url("../fonts/Ubuntu-Italic.ttf") format("truetype");
    font-style: italic;
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 500;
    src: url("../fonts/Ubuntu-Medium.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 500;
    src: url("../fonts/Ubuntu-MediumItalic.ttf") format("truetype");
    font-style: italic;
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 700;
    src: url("../fonts/Ubuntu-Bold.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 700;
    src: url("../fonts/Ubuntu-BoldItalic.ttf") format("truetype");
    font-style: italic;
}

body
{
    font-family: "Ubuntu";
}


.text-white { color: white; }

.rounded-sm { border-radius: 0.5rem;}

.border-box { box-sizing: border-box; }
.w-max { width: max-content; }
.w-full { width: 100%; }
.min-w-full { min-width: 100%; }
.w-screen { width: 100vw; }
.h-full { height: 100%; }
.min-h-full { min-height: 100%; }
.h-screen { height: 100vh; }

.text-center { text-align: center; }
.font-bold { font-weight: bold; }
.font-light { font-weight: 300; }
.absolute { position: absolute; }
.relative { position: relative; }
.flex { display: flex; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.grow { flex-grow: 1; }
.self-end { align-self: end; }

.bg-curve
{
    background-image: url(../img/curve.webp);
}

.w-2\/5 { width: 40%; }
.w-9\/20 { width: 45%; }
.w-1\/2 { width: 50%; }
.w-11\/20 { width: 55%; }
.w-3\/5 { width: 60%; }
.w-3\/4 { width: 75%; }
.w-4\/5 { width: 80%; }

.w-4 { width: 1rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-36 { width: 9rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-120 { width: 30rem; }
.w-160 { width: 40rem; }
.w-200 { width: 50rem; }

input[type=email]
{
    outline: none;
    border-radius: 0.375rem;
    border: transparent;
}

#FormBtn, #HomeBtn
{
    cursor: pointer;
    text-decoration: none;
    background-color: #5222d0;
    transition: background-color 200ms ease-in-out;
    border: 0;
}
#FormBtn:hover, #HomeBtn:hover
{
    background-color: #5f2edc;
}

#Four0FourBtn
{
    text-decoration: none;
    border-color: #5222d0;
    color: #5222d0;
    border-width: 2px;
    border-style: solid;
    transition: background-color 200ms ease-in-out
}


#Four0FourBtn:hover
{
    background-image: url(../img/curve.webp);
    background-color: #5f2edc;
    color: white;
}

.px-4
{
    padding-left: 1rem;
    padding-right: 1rem;
}
.py-4
{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.px-8
{
    padding-left: 2rem;
    padding-right: 2rem;
}
.py-8
{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.px-12
{
    padding-left: 3rem;
    padding-right: 3rem;
}
.py-12
{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.px-16
{
    padding-left: 4rem;
    padding-right: 4rem;
}
.py-16
{
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mx-8
{
    margin-left: 2rem;
    margin-right: 2rem;
}

.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }
.p-20 { padding: 5rem; }
.p-24 { padding: 6rem; }
.p-28 { padding: 7rem; }
.p-32 { padding: 8rem; }
.p-36 { padding: 9rem; }

.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pt-28 { padding-top: 7rem; }
.pt-32 { padding-top: 8rem; }
.pt-36 { padding-top: 9rem; }

.pr-4 { padding-right: 1rem; }
.pr-8 { padding-right: 2rem; }
.pr-12 { padding-right: 3rem; }
.pr-16 { padding-right: 4rem; }
.pr-20 { padding-right: 5rem; }
.pr-24 { padding-right: 6rem; }
.pr-28 { padding-right: 7rem; }
.pr-32 { padding-right: 8rem; }
.pr-36 { padding-right: 9rem; }

.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-28 { padding-bottom: 7rem; }
.pb-32 { padding-bottom: 8rem; }
.pb-36 { padding-bottom: 9rem; }

.pl-4 { padding-left: 1rem; }
.pl-8 { padding-left: 2rem; }
.pl-12 { padding-left: 3rem; }
.pl-16 { padding-left: 4rem; }
.pl-20 { padding-left: 5rem; }
.pl-24 { padding-left: 6rem; }
.pl-28 { padding-left: 7rem; }
.pl-32 { padding-left: 8rem; }
.pl-36 { padding-left: 9rem; }

.m-0 { margin: 0; }
.m-4 { margin: 1rem; }
.m-8 { margin: 2rem; }
.m-12 { margin: 3rem; }
.m-16 { margin: 4rem; }
.m-20 { margin: 5rem; }
.m-24 { margin: 6rem; }
.m-28 { margin: 7rem; }
.m-32 { margin: 8rem; }
.m-36 { margin: 9rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mt-28 { margin-top: 7rem; }
.mt-32 { margin-top: 8rem; }
.mt-36 { margin-top: 9rem; }

.mr-4 { margin-right: 1rem; }
.mr-8 { margin-right: 2rem; }
.mr-12 { margin-right: 3rem; }
.mr-16 { margin-right: 4rem; }
.mr-20 { margin-right: 5rem; }
.mr-24 { margin-right: 6rem; }
.mr-28 { margin-right: 7rem; }
.mr-32 { margin-right: 8rem; }
.mr-36 { margin-right: 9rem; }

.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.mb-28 { margin-bottom: 7rem; }
.mb-32 { margin-bottom: 8rem; }
.mb-36 { margin-bottom: 9rem; }

.ml-4 { margin-left: 1rem; }
.ml-8 { margin-left: 2rem; }
.ml-12 { margin-left: 3rem; }
.ml-16 { margin-left: 4rem; }
.ml-20 { margin-left: 5rem; }
.ml-24 { margin-left: 6rem; }
.ml-28 { margin-left: 7rem; }
.ml-32 { margin-left: 8rem; }
.ml-36 { margin-left: 9rem; }

.text-xs
{
    font-size: 0.75rem; /* 12px */
    line-height: 1rem; /* 16px */
}
.text-sm
{
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
}
.text-base
{
    font-size: 1rem; /* 16px */
    line-height: 1.5rem; /* 24px */
}
.text-lg
{
    font-size: 1.125rem; /* 18px */
    line-height: 1.75rem; /* 28px */
}
.text-xl
{
    font-size: 1.25rem; /* 20px */
    line-height: 1.75rem; /* 28px */
}
.text-2xl
{
    font-size: 1.5rem; /* 24px */
    line-height: 2rem; /* 32px */
}
.text-3xl
{
    font-size: 1.875rem; /* 30px */
    line-height: 2.25rem; /* 36px */
}
.text-4xl
{
    font-size: 2.25rem; /* 36px */
    line-height: 2.5rem; /* 40px */
}
.text-5xl
{
    font-size: 3rem; /* 48px */
    line-height: 1;
}
.text-6xl
{
    font-size: 3.75rem; /* 60px */
    line-height: 1;
}
.text-7xl
{
    font-size: 4.5rem; /* 72px */
    line-height: 1;
}
.text-8xl
{
    font-size: 6rem; /* 96px */
    line-height: 1;
}
.text-9xl
{
    font-size: 8rem; /* 128px */
    line-height: 1;
}


@media screen and (max-width: 1400px)
{
    #Notice
    {
        width: 55%;
    }
    #Banner
    {
        width: 65%;
    }
}
@media screen and (max-width: 1200px)
{
    body
    {
        padding-bottom: 5rem;
    }
    #Notice
    {
        width: 100%;
        align-items: center;
        order: 2;
    }
    #Banner
    {
        width: 75%;
        order: 1;
    }
    #Four0FourBtn
    {
        margin: 1rem 0 0 0;
    }
    .btnGroup
    {
        width: 100%;
        justify-content: space-evenly;
    }
    main section
    {
        flex-direction: column;
    }
}
@media screen and (max-width: 992px)
{
    #Notice h2
    {
        font-size: 2.75rem !important; /* 36px */
        line-height: 2.5rem !important; /* 40px */
    }

    #Banner
    {
        width: 75%;
        order: 1;
    }
    main section
    {
        flex-direction: column;
    }
}
@media screen and (max-width: 768px)
{
    #Notice h2
    {
        text-align: center;
        font-size: 1.75rem !important; /* 36px */
        line-height: 2.5rem !important; /* 40px */
    }

    #Notice span
    {
        font-size: 0.875rem !important; /* 36px */
        line-height: 1.5rem !important; /* 40px */
        text-align: center;
    }

    main section
    {
        width: 92% !important;
    }
}
@media screen and (max-width: 576px)
{
    .btnGroup
    {
        flex-direction: column;
    }
    .btnGroup a
    {
        width: 100%;
        justify-content: center;
    }
}

/* FORM UPDATE */

/* === additions: layout helpers === */
.container { width: min(1100px, 92vw); margin-inline: auto; }
.stack { display: flex; flex-direction: column; gap: 1rem; }
.row { display: flex; align-items: center; gap: 0.5rem; }
.wrap { flex-wrap: wrap; }
.gap-8 { gap: 2rem; }

/* === additions: buttons (reusable, keep your existing #HomeBtn/#FormBtn) === */
.btn {
cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.25rem; font-weight: 500; text-decoration: none; border: 1px solid transparent;
  border-radius: 0.5rem; transition: transform .08s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: #5f2edc; color: #fff; }
.btn-primary:hover { background: #5222d0; }
.btn-outline { background: transparent; color: #5f2edc; border-color: #5f2edc; }
.btn-outline:hover { background: #5f2edc; color: #fff; }
.btn-ghost { background: transparent; color: #5f2edc; }

.btn-outline[data-status="Beklemede"]
{
    color: #dc9e2e;
    border-color: #dc9e2e;
}
.btn-outline[data-status="Beklemede"]:hover
{
    background: #dc9e2e;
    color: #fff;
}
.btn-primary[data-status="Ret"]
{
    background: #dc2e2e;
    color: #fff;
}.btn-primary[data-status="Ret"]:hover
{
    background: rgb(181, 44, 44);
}
.btn-primary[data-action="Mail"]
{
    background: #13c28b;
    color: #fff;
}.btn-primary[data-action="Mail"]:hover
{
    background: rgb(19, 209, 149);
}

/* === additions: form fields === */
.field { display: flex; flex-direction: column; gap: .4rem; }
.label { font-size: .9rem; color: #6b7280; }
.input, textarea.input {
  border: 1px solid rgba(0,0,0,.08); border-radius: 0.5rem; padding: .65rem .75rem; background: #fff; outline: none;
}
.input:focus, textarea.input:focus {
  border-color: #5f2edc; box-shadow: 0 0 0 2px rgba(95,46,220,0.25);
}
.help { font-size: .85rem; color: #6b7280; }

/* === additions: cards for fieldsets === */
.card {
  background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 1rem;
}
.card-title { font-weight: 600; }

.card.consent { border-color: #5f2edc; }
.card.consent a { color: #5f2edc; }
.card.consent a:hover { color: #333; }
.card.consent legend { color: #5f2edc; }

.field-error { color:#b91c1c; font-size:.85rem; margin-top:.25rem; display:block; }

/* — Modal (brand-matching) — */
.modal { position: fixed; inset: 0; display: none; z-index: 60; }
.modal[open], .modal.show { display: block; }
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.4);
  backdrop-filter: saturate(120%) blur(1px);
}
.modal-card {
  position: relative; margin: 6vh auto 0; width: min(720px, 92vw);
  background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.12);
  display: grid; grid-template-rows: auto 1fr auto; max-height: 88vh;
}
.modal-head, .modal-foot { padding: 1rem 1.25rem; }
.modal-head { border-bottom: 1px solid rgba(0,0,0,.06); display:flex; justify-content:space-between; align-items:center; }
.modal-foot { border-top: 1px solid rgba(0,0,0,.06); display:flex; justify-content:flex-end; gap:.75rem; }
.modal-body { padding: 1rem 1.25rem; overflow: auto; }
.modal-x { background: transparent; border: 0; font-size: 1.5rem; line-height: 1; cursor: pointer; opacity: .6; }
.modal-x:hover { opacity: 1; }

/* Link button inside consent text */
.link { background: transparent; border: 0; color: #5f2edc; text-decoration: underline; cursor: pointer; padding: 0 .25rem; }
.link:hover { color: #5222d0; }

/* Table */
.table { width: 100%; display: grid; gap: .5rem; }
.t-head, .t-row { grid-template-columns: 1.2fr 1.4fr 0.5fr 1.2fr .4fr 0.6fr; }
.t-head { font-weight: 600; color: #475569; padding: .5rem 1rem; display: grid;}
.t-row {
  width: 100%; text-align: left; border: 1px solid rgba(0,0,0,.08);
  background: #fff; border-radius: .75rem; padding: .75rem 1rem;
  cursor: pointer; transition: box-shadow .15s ease, transform .06s ease;
  display: grid; align-items: center; gap: .5rem;
}
.t-row:hover { box-shadow: 0 4px 10px rgba(0,0,0,.06); }
.t-row:active { transform: translateY(1px); }

/* Badges */
.badge, .email-badge {
  display: inline-flex; align-items: center; padding: .2rem .55rem;
  border-radius: 999px; font-size: .7rem; font-weight: 600;
  border: 1px solid transparent;
}
.badge-success { color: #065f46; background: #d1fae5; border-color: #a7f3d0; }
.badge-danger  { color: #991b1b; background: #fee2e2; border-color: #fecaca; }
.badge-muted   { color: #99691b; background: #ffd9bd; border-color: #ffc398; }

/* Simple grid in modal body */
.grid.gap { display: grid; gap: .5rem; }

.btn-danger {
  background: #dc2626; color: #fff; border-color: #dc2626;
}
.btn-danger:hover { background: #b91c1c; border-color: #b91c1c; }

.btn-excel {
  background: transparent; color: #2E7D32; border-color: #2E7D32;
}
.btn-excel:hover { background: #2E7D32; border-color: #2E7D32; color: #fff; }

.underline
{
    text-decoration: underline;
}

.emphasis {
  position: relative;
  isolation: isolate;
  font-weight: 400;
}

.emphasis::after
    {
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin-top: 0.125rem;
  background-image: linear-gradient(to right, #ffc90e 0%, #ffc90e 100%);
  background-size: 100% 0.35rem;
  background-repeat: no-repeat;
  background-position: left 80%;
  transform: skewY(-5deg);
  position: absolute;
  z-index: -1;
}

.emphasis::after
    {
  transform: skewY(-2deg);
  background-position: left 100%;
}

.badge-warn {
  color: #7c2d12;               /* deep orange-brown */
  background: #ffedd5;          /* orange-100 */
  border-color: #fed7aa;        /* orange-200 */
}

#SocialContainer
{
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8625rem;
    margin-top: 2rem;
}

#SocialContainer a
{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333 !important;
    transition: opacity 400ms;
}

#SocialContainer a:hover
{
    opacity: 0.7;
}