/* css/style.css - KVEZAL SOLUTIONS (Gold Mining) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #0c1a2d;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #d4af37;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    padding-top: 100px;
    min-height: 70vh;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background-color: #d4af37;
    color: #0c1a2d;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

header {
    background-color: rgba(12, 26, 45, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 2px solid #d4af37;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #d4af37;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a.active {
    color: #d4af37;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d4af37;
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.hero {
    background: linear-gradient(rgba(12, 26, 45, 0.8), rgba(12, 26, 45, 0.9)),
                url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    height: 100vh;
    min-height: 700px;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 70px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(12, 26, 45, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    color: #d4af37;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-header {
    background-color: #0c1a2d;
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    border-bottom: 3px solid #d4af37;
}

.page-header h1 {
    color: #d4af37;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1.1rem;
}

.values {
    background-color: #152642;
    text-align: center;
}

.values h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    padding: 40px 30px;
    border-radius: 8px;
    background-color: rgba(21, 38, 66, 0.8);
    transition: all 0.3s ease;
    border: 1px solid #2a3d5f;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #d4af37;
}

.value-card h3 {
    margin-bottom: 20px;
    color: #d4af37;
}

.value-card p {
    color: #b0b0b0;
    line-height: 1.8;
}

.news {
    background-color: #0c1a2d;
}

.news h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #152642;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid #2a3d5f;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.news-img {
    height: 220px;
    width: 100%;
    background-color: #1a2d4a;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 30px;
}

.news-content h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #fff;
}

.news-content .date {
    color: #d4af37;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.news-content p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.7;
}

.news-link {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.news-link:hover {
    color: #fff;
    text-decoration: underline;
}

.career {
    text-align: center;
    background-color: #152642;
    padding: 100px 0;
}

.career h2 {
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.career p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: #b0b0b0;
}

.about-content {
    padding: 80px 0;
    background-color: #0c1a2d;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    margin-top: 50px;
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: #d4af37;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.about-text ul {
    margin: 20px 0 30px 40px;
    color: #b0b0b0;
}

.about-text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #152642;
    border-radius: 8px;
    border: 1px solid #2a3d5f;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-content {
    padding: 80px 0;
    background-color: #0c1a2d;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 25px;
    color: #d4af37;
}

.contact-info p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #152642;
    border-radius: 8px;
    border: 1px solid #2a3d5f;
}

.contact-icon {
    font-size: 1.8rem;
    margin-right: 20px;
    color: #d4af37;
    min-width: 40px;
}

.contact-text h4 {
    margin-bottom: 10px;
    color: #fff;
}

.contact-text p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-form {
    background-color: #152642;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #2a3d5f;
}

.contact-form h2 {
    margin-bottom: 25px;
    color: #d4af37;
}

.contact-form p {
    color: #b0b0b0;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #2a3d5f;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    background-color: #0c1a2d;
    color: #fff;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.map-container {
    margin-top: 80px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid #2a3d5f;
}

footer {
    background-color: #0a1424;
    color: #b0b0b0;
    padding: 70px 0 30px;
    border-top: 3px solid #d4af37;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #d4af37;
    margin-bottom: 25px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #d4af37;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2a3d5f;
    color: #7a7a7a;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0c1a2d;
        flex-direction: column;
        padding: 20px 0;
        border-top: 2px solid #d4af37;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .main-content {
        padding-top: 90px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 15px;
    }
}

@keyframes goldGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.gold-highlight {
    color: #d4af37;
    font-weight: 700;
    animation: goldGlow 3s infinite;
}