/* Shared header styles - header-styles.css */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; /* Increased from 70px */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Increased gap */
}

.logo {
    width: 60px;  /* Increased from 40px */
    height: 60px; /* Increased from 40px */
    border-radius: 12px; /* Increased border radius */
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-name {
    font-size: 26px; /* Increased from 24px */
    font-weight: 700;
    color: var(--gray-800);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--third);
}

.cta-button {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 199, 89, 0.3);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-600);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn:hover {
    color: var(--third);
}

/* Mobile menu functionality */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        border-top: 1px solid #e2e8f0;
        gap: 16px;
    }
    
    .nav-links.mobile-open {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
}

/* Adjust main content padding for larger header */
.main-content {
    padding-top: 80px; /* Increased from 70px */
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 70px;
    }
}