/* Theme Styles */

:root {
    --primary-orange: #FF6B00;
    --white: #FFFFFF;
    --charcoal-gray: #2D2D2D;
    --deep-teal: #005F73;
    --warm-yellow: #FFD166;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--charcoal-gray);
    font-family: var(--font-body);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--charcoal-gray);
}

/* Buttons */
.button {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.button:hover {
    background-color: var(--deep-teal);
}

/* Text Fields */
.text-field {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--charcoal-gray);
    border-radius: 5px;
    font-size: 16px;
}

.text-field:focus {
    border-color: var(--primary-orange);
    outline: none;
}

/* Navigation */
.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}

.nav-link:hover {
    color: var(--warm-yellow);
}