/* style.css - Medco DME base styles */

/* Reset-ish base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    color: #333333;
    background-color: #ffffff;
}

/* Global links */
a {
    color: #0096A8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Headings */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: #0B2C4A;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
}

/* Utility classes you can start using later */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 40px 40px;
}

.section--light {
    background: #F9FBFF;
}

.section--dark {
    background: #0B2C4A;
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #0096A8;
    color: #ffffff;
}

.btn-primary:hover {
    filter: brightness(0.95);
}

.btn-outline {
    background: transparent;
    border: 1px solid #0096A8;
    color: #0096A8;
}

.btn-outline:hover {
    background: #0096A8;
    color: #ffffff;
}

/* Header & nav base (complements inline styles) */
header {
    position: relative;
    z-index: 10;
}

header nav ul {
    list-style: none;
}

header nav ul li a {
    transition: color 0.2s ease;
}

header nav ul li a:hover {
    color: #0096A8;
}

/* Footer base */
footer a {
    color: #ffffff;
}

footer a:hover {
    text-decoration: underline;
}

/* Tables */
table {
    border-collapse: collapse;
}

th, td {
    text-align: left;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    font-family: inherit;
}

/* Cards */
.card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    padding: 16px;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
