/* Navigation Styles */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: var(--foreground);
}

.logo-icon {
    width: 4rem;
    height: 3rem;
    /*background-color: var(--primary);*/
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.logo-text {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
}

.desktop-nav {
    display: none;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background-color: var(--foreground);
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: var(--spacing-sm) 0;
    transition: var(--transition);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 64rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.5rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-buttons .btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Founders Section */
.founders-card {
    max-width: 64rem;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

@media (min-width: 768px) {
    .founders-card {
        padding: var(--spacing-3xl);
    }
}

.quote-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary);
}

.founders-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-2xl);
    font-style: italic;
}

@media (min-width: 768px) {
    .founders-quote {
        font-size: 1.25rem;
    }
}

.founders-attribution {
    text-align: center;
}

.attribution-name {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.attribution-title {
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    border-top: 1px solid var(--border);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.footer-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    color: var(--muted-foreground);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary);
}

.footer-title {
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-link {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-2xl);
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Form Styles */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 180, 183, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Page Header */
.page-header {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(0, 180, 183, 0.1), rgba(0, 180, 183, 0.05));
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
    .page-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .page-title {
        font-size: 5rem;
    }
}

.page-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-description {
        font-size: 1.5rem;
    }
}

/* Team Member Cards */
.team-card {
    text-align: center;
}

.team-avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden; /* ensures image fits inside circle */
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6; /* fallback bg color */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* maintains aspect ratio while filling circle */
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.team-avatar img:hover {
    transform: scale(1.05);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.team-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
}

.team-bio {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.team-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.team-link {
    color: var(--muted-foreground);
    transition: var(--transition);
}

.team-link:hover {
    color: var(--primary);
}

/* Alert/Toast */
.alert {
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Job Details */
.job-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.job-detail {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Product Features */
.product-features {
    margin-bottom: var(--spacing-lg);
}

.product-features h4 {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
}

.product-features li::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Career Slider */
.career-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.career-slide.active {
    opacity: 1;
}

.career-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.slider-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}