/* assets/css/navbar.css */
.navbar {
    background: white;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 80px; /* Increased from 60px */
    height: 80px; /* Increased from 60px */
    object-fit: contain;
}

.logo-text {
    margin-left: 1rem;
}

.logo-text div {
    font-size: 1.1rem; /* Increased from 1rem */
    line-height: 1.3;
    color: var(--primary);
}

.logo-text div:first-child {
    font-weight: 700;
    font-size: 1.5rem; /* Increased from 1.2rem */
}
.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a.active {
    color: var(--secondary);
}

.nav-links a.active::after {
    transform: scaleX(1);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem;
        width: 100%;
        text-align: center;
    }

    .mobile-menu.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        margin-top: 5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .button {
        width: 100%;
        text-align: center;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .logo-text div:first-child {
        font-size: 1.3rem;
    }
}

/* Additional enhancement for larger screens */
@media (min-width: 1200px) {
    .hero-content {
        max-width: 1000px;
    }

    .hero h1 {
        font-size: 4rem;
    }
}