/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'font 2';
    src: url('doves.ttf');
}

@font-face {
        font-family: 'Font 1';
        src: url('Anton-Regular.ttf');
}


body {
    font-family: 'Merriweather Sans', sans-serif;
    line-height: 1.5;
    background: #f9fafb;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 0;
}

/* Navbar */
/* Logo Styles */
.logo img {
    max-height: 10em; /* Adjust the height for standard sizing */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Ensures proper centering */
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.nav-links a {
    margin-left: 3rem;
    text-decoration: none;
    color: #453f3d;
    font-weight: 600;
    transition: color 0.3s;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 3em;
}

.nav-links a:hover {
    color: #72f576;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background-color: #f9fafb;
    color: #453f3d;
}

.new{
    font-family: "font 2", sans-serif;
    color: #72f576;
    font-size: 2em;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: "font 1", sans-serif;
    padding-left: 20px;  /* Adds space to the left */
    padding-right: 20px; /* Adds space to the right */
}

.hero p {
    padding-left: 20px;  /* Adds space to the left */
    padding-right: 20px; /* Adds space to the right */
    font-size: 1.25rem;
    margin-bottom: 2rem;
}



.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.button.primary {
    background-color: #7ee9fb;
    color: #453f3d;
}

.button.primary:hover {
    background-color: #72f576;
}

.button.outline {
    color: #453f3d;
    background-color: transparent;
}

.button.outline:hover {
    color: #72f576;
}

.hero-image {
    margin-top: 2rem;
    width: 100%;
    max-width: 600px;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: #453f3d;
    font-family: "font 1";
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    background: #f9fafb;
}

.feature-card i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #555;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: #7ee9fb;
    color: #453f3d;
    padding: 4rem 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: "font 1";
}

.cta p {
    margin-bottom: 2rem;
}

.cta .button {
    background-color: white;
    color: #453f3d;
    
}

.cta .button:hover {
    background-color: #72f576;
    color: #453f3d;
    
}

/* Footer */
footer {
    text-align: center;
    background: #453f3d;
    color: #7ee9fb;
    padding: 2rem 0;
}

footer p {
    font-family: "font 1";
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack logo and links */
        align-items: center;
    }

    .nav-links {
        display: flex;
        flex-direction: row; /* Align links horizontally */
        gap: 1rem; /* Add spacing between links */
        margin-top: 1rem; /* Create space between the logo and links */
    }

    .nav-links a {
        margin-left: 0; /* Reset left margin for horizontal alignment */
        text-align: center;
        font-size: 0.875rem;
        
    }

}

.feature-card:hover {
background-color: #72f576;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 6em;
    margin-bottom: 0;
}

.social-link {
    text-decoration: none;
    color: #453f3d;
    font-size: 3rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: #72f576;
}

.icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-link:hover .icon {
    transform: scale(1.1); /* Slightly enlarges the icon on hover */
}

#people {
    color: #72f576;
    font-family: "font 2", sans-serif;
    font-size: 1.4em;
}

#acq-ecosystem {
    color: #453f3d;
    font-family: "font 1", sans-serif;
    font-size: 1em;
}

#dkb {
    font-family: "font 2", sans-serif;
}