/* Import the required fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* Base styling */
body {
    font-family: 'Lato', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Main color theme */
:root {
    --primary-color: #0B8261;
    --primary-light: #13a17b;
    --primary-dark: #076e50;
    --accent-color: #f1f1f1;
    --text-light: #ffffff;
    --text-dark: #333333;
    --border-radius: 8px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 1.5rem;
}

/* Containers */
.grid-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.callout {
    background-color: white;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    padding: 1.5rem;
}

/* Tabs */
.tabs {
    background-color: var(--accent-color);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    border: none;
    overflow: hidden;
}

.tabs-title > a {
    font-family: 'Oswald', sans-serif;
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tabs-title > a:hover {
    background-color: rgba(11, 130, 97, 0.1);
    color: var(--primary-color);
}

.tabs-title.is-active > a {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.tabs-content {
    border: none;
    background-color: transparent;
}

.tabs-panel {
    padding: 1rem 0;
}

/* Buttons */
.button.hollow.primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    width: auto;
    min-width: 80px;
    padding: 0.5rem 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.button.hollow.primary:hover {
    background-color: var(--primary-light);
}

input.primary {
    margin-top: 0.5rem;
}

/* Form elements */
input[type="text"],
input[type="number"],
input[type="datetime-local"],
select,
textarea {
    border-radius: var(--border-radius);
    box-shadow: none;
    border: 1px solid #ddd;
    padding: 0.5rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="datetime-local"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-light);
}

/* Checkboxes */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* Center alignment */
.center {
    text-align: center;
}

/* Weather specific styling */
.center p img {
    width: 70%;
    background-color: var(--primary-light);
    border-radius: 15px;
    padding: 5px;
}

.weather-image-container {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal styling */
.reveal {
    border-radius: var(--border-radius);
    padding: 2rem;
    border: none;
}

.reveal h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.close-button {
    color: var(--primary-color);
}

/* Table-like layouts */
.grid-x.grid-padding-x > .cell > div > p {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Add some spacing for better readability */
textarea {
    min-height: 100px;
}

/* Override Foundation defaults */
.tabs-content.vertical {
    border: none;
}

/* Make sure form elements have consistent heights */
input, select, textarea {
    height: auto;
}

/* Add soft transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease;
}