/* NextCareer.az - Pure CSS Styles */
/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #fbbf24;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f59e0b;
    letter-spacing: -0.025em;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    background: #fef3c7;
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.lang-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    color: #d97706;
}

.lang-btn:hover {
    color: #b45309;
}

.lang-btn.active {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
}

.hero-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    margin: 0 auto 2rem;
    max-width: 32rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.info-icon svg {
    color: #fcd34d;
}

.info-text {
    text-align: left;
}

.info-label {
    font-size: 0.875rem;
    color: #fde68a;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fcd34d;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.section-divider {
    width: 4rem;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    margin: 0 auto;
    border-radius: 1px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #fef7ed 0%, #fef3c7 100%);
}

.about-content {
    max-width: 64rem;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    color: #374151;
    text-align: center;
    line-height: 1.75;
}

/* Objectives Section */
.objectives {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.objectives-grid {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
}

.objective-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.objective-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.objective-number {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.objective-text {
    color: #374151;
    line-height: 1.625;
    flex: 1;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #fef7ed 0%, #fef3c7 100%);
}

.contact-content {
    max-width: 64rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.contact-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-icon svg {
    color: white;
}

.contact-details {
    text-align: center;
}

.contact-label {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.125rem;
    color: #f59e0b;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: #d97706;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 4rem 0;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fcd34d;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #cbd5e1;
}

.footer-bottom {
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    padding-top: 2rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.footer-credit {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        padding: 2rem;
    }
    
    .objective-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-info {
        padding: 1.5rem;
    }
    
    .contact-content {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
}
