@import url(https://db.onlinewebfonts.com/c/1181c1df1350a71e4726ded84807d6d7?family=DINWebPro-Bold+W06+Regular);
@import './sidebar.css';
@import './formstyles.css';
@import './navbar.css';
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

@font-face {
    font-family: 'DINWebPro-Light';
    src: url('/fonts/DINWebPro-Light.woff');
}

@font-face {
    font-family: 'DINWebPro';
    src: url('/fonts/DINWebPro.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter.ttf') format('truetype');
}

@font-face {
    font-family: 'Barlow';
    src: url('/fonts/Barlow.ttf') format('truetype');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Twemoji Country Flags", "Barlow", Arial, Verdana, sans-serif;
    color: black;
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: white;
    color: black;
    min-height: 100vh;
    width: 100%;
}

.main-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    position: relative;
    top: 0;
    width: 100%;
}

a {
    color: black;
}

.hidden {
    display: none !important;
}


/* Navbar Styles */


/* .navbar {
    padding: 0 20px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 10px 0px 0px;
    height: 80px;
    padding: 10px 0px;
} */

.nav-links {
    display: flex;
    list-style: none;
    border-top: solid 1px rgb(165, 165, 165);
    border-bottom: solid 1px rgb(165, 165, 165);
    padding: 10px 0px
}

li,
p {
    font-size: 0.875rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px 60px;
}

.card {
    background-color: var(--background-color);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.card-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.description {
    color: #6b7280;
}

.card-content {
    padding: 1.5rem;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 0px;
    line-height: 1.3;
}

.form-container {
    width: 100%;
}

.title {
    display: flex;
    flex-direction: column;
    padding: 16px 0px;
    gap: 14px;
}

.secondary-text {
    color: #093c71;
    font-size: 1rem;
    font-weight: 500
}

h1 {
    text-align: center;
    margin-bottom: 24px;
    color: #2c3e50;
    font-size: 28px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Barlow", 'Inter', sans-serif;
    font-weight: 600;
    color: #093c71;
    width: fit-content;
}


button {
    font-family: 'Inter';
    font-size: 0.875rem;
    font-weight: 500;
    background-color: #0c4f96;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    border: none;
    padding: 8px 20px;
    border-radius: 14px;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.15s;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

button:disabled:hover {
    background-color: #ccc;
}

.submit-button {
    width: 100%;
    max-width: 300px;
    padding: 10px 20px;
    margin: 0 auto;
}

.note {
    font-size: 13px;
    color: #777;
    margin-top: 20px;
    text-align: center;
}

.service {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service p {
    font-size: 16px;
    margin-top: 16px;
}


/* Footer Styles */

footer {
    background: #093c71;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
    align-self: flex-end;
    justify-self: end;
}

footer p {
    font-size: 14px;
    color: white;
}

.full-width {
    flex: 0 0 100%;
    max-width: 100%;
}



/* Mobile Responsive */

@media (max-width: 768px) {
    .main-grid {
        display: flex;
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-around;
        margin-bottom: 10px;
    }

    .nav-links li {
        margin: 0;
    }

    .form-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .form-container {
        padding: 30px 15px 40px;
    }
}

/* Disable hover effects on touch devices */

@media (hover: none) {
    button:hover {
        font-size: 0.875rem;
    }
}

@media (hover: hover) {
    button:hover {
        background-color: #35a0e7;
    }
}