/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #181818;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap; /* Allows wrapping for small screens */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1; /* Makes logo container take up available space */
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo {
    font-size: 1.6em;
    font-weight: bold;
    color: #ffffff;
    margin-left: 10px;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style-type: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
}

.nav-links a:hover {
    color: #ff6b6b;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    text-align: center;
    background: url('background.jpg') no-repeat center center/cover;
    position: relative;
    filter: brightness(80%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.cta-button {
    padding: 12px 25px;
    background-color: #ff6b6b;
    border: none;
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #ff3b3b;
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 60px 10%;
    text-align: center;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 0.5em;
    color: #ff6b6b;
}

/* Cards */
.feature-cards, .team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card, .team-card {
    background-color: #181818;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
    max-width: 220px;
    text-align: center;
}

.card:hover, .team-card:hover {
    transform: scale(1.05);
}

.icon {
    font-size: 2.5em;
    color: #ff6b6b;
    margin-bottom: 0.5em;
}

.card h3, .team-card h3 {
    font-size: 1.2em;
    margin-bottom: 0.3em;
    color: #ffffff;
}

.card p, .team-card p {
    font-size: 0.95em;
    color: #cccccc;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea, .contact-form button {
    padding: 12px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
}

.contact-form input, .contact-form textarea {
    background-color: #333333;
    color: #ffffff;
}

.contact-form button {
    background-color: #ff6b6b;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #ff3b3b;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background-color: #181818;
    color: #777777;
    font-size: 0.85em;
}

/* Round Founder Photos */
.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #ff6b6b;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .logo-container {
        justify-content: center;
    }

    .nav-links {
        /* flex-direction: column;
        gap: 15px;
        margin-top: 20px; */
        display: none;
    }

    .hero {
        height: 80vh;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .feature-cards, .team-cards {
        flex-direction: column;
        gap: 40px;
    }

    .card, .team-card {
        max-width: 100%;
    }

    section {
        padding: 40px 5%;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .cta-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .nav-links {
        /* font-size: 1.2em; */
        display: none;
    }
}
