﻿/* Typography */
body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    color: #222;
    background: linear-gradient(135deg, #f8fafc, #e0e7ef);
    margin: 0;
    min-height: 100vh;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1f1f2e;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: #00ecbc;
    text-decoration: none;
    transition: color 0.2s;
}

    a:hover {
        color: #007adf;
        text-decoration: underline;
    }

/* Buttons */
.btn, button {
    background: #00ecbc;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

    .btn:hover, button:hover {
        background: #007adf;
        color: #fff;
    }

/* Forms */
input, textarea, select {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
    margin-bottom: 1rem;
    background: #fff;
    color: #222;
    font-size: 1rem;
}

    input:focus, textarea:focus, select:focus {
        border-color: #00ecbc;
        outline: none;
    }

/* Card/Container */
/*.container, .content-section {*/
    /*background: rgba(255,255,255,0.95);*/
    /*border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    padding: 32px;
    margin-top: 32px;
    margin-bottom: 32px;
}*/

/* Footer */
.footer-custom {
    background: #1f1f2e;
    color: #ccc;
    padding: 30px 0;
    font-size: 1rem;
    border-top: 2px solid #00ecbc;
}

    .footer-custom a {
        color: #00ecbc;
    }

        .footer-custom a:hover {
            color: #fff;
        }

/* Responsive */
/*@media (max-width: 768px) {
    .container, .content-section {
        padding: 16px;
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .navbar-brand span {
        font-size: 1.1rem;
    }
}*/
