body {
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Custom Colors based on the logo */
.color-orange-dark {
    color: #e09121;
}

.bg-orange-dark {
    background-color: #e09121;
}

.border-orange-dark {
    border-color: #e09121;
}

.hover\:text-orange-dark:hover {
    color: #e09121;
}

.hover\:bg-orange-light:hover {
    background-color: #f7d299;
}

.color-teal-dark {
    color: #1a7f80;
}

.bg-teal-dark {
    background-color: #1a7f80;
}

.border-teal-dark {
    border-color: #1a7f80;
}

.hover\:text-teal-dark:hover {
    color: #1a7f80;
}

.hover\:bg-teal-light:hover {
    background-color: #6ed6d7;
}

/* Override specific Tailwind classes where needed to match logo colors */
.text-blue-800 {
    color: #1a7f80;
}

.bg-blue-800 {
    background-color: #1a7f80;
}

.border-blue-600 {
    border-color: #e09121;
}

.bg-blue-600 {
    background-color: #e09121;
}

.bg-blue-200 {
    background-color: #f7d299;
}

.text-blue-700 {
    color: #e09121;
}

.text-blue-100 {
    color: #e09121;
}

/* Background image styles for sections */
.section-bg-image {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.section-bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.section-bg-image > * {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-bg-image {
        background-attachment: scroll;
        background-position: center top;
    }
}
