/* You can add custom CSS here if needed */

#pricing {
    background-image: url('../img/9.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

#pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    z-index: 0;
}

#pricing > .container {
    position: relative;
    z-index: 1;
}

html {
    scroll-behavior: smooth;
}

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

h2 {
    font-family: 'Smooch Sans', sans-serif;
    color: #004030 !important; /* Changed color */
    display: inline-block;
    border-bottom: 2px solid #4a5568;
    padding-bottom: 5px;
}

h3 {
    color: #004030 !important; /* Changed color */
}

.navbar-bg {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.3;
    z-index: -1;
    transition: opacity 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.navbar-bg.scrolled {
    opacity: 1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

nav a {
    font-family: 'Goldman', sans-serif;
    color: #004030 !important; /* Use !important to override Tailwind */
}

nav a:hover {
    color: #006d52 !important; /* A slightly lighter shade for hover */
}

#hero .content .text-3xl {
    font-family: 'Goldman', sans-serif;
}

#hero .content p {
    font-family: 'Questrial', sans-serif;
}

.btn-primary {
    background-color: #004030 !important;
}

.btn-primary:hover {
    background-color: #006d52 !important;
}

.hero-bottom {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem; /* 75% of the base font size */
    margin-top: auto; /* Pushes the div to the bottom */
    margin-bottom: 20px; /* Adds margin-bottom of 20px */
}

#hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-bottom {
    /* Removed flexbox styles */
    /* Tailwind grid classes will handle layout */
}

.about-bottom > div {
    /* Removed margin-right */
}

.about-bottom p, .about-bottom a {
    line-height: 1.2; /* Reduced line height */
}

#services {
    background-image: url('../img/2.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    z-index: 0;
}

#services > .container {
    position: relative;
    z-index: 1;
}
