﻿/* Aleris Global Lojistik - Ana Site CSS */
:root {
    --primary-color: #005cb9;
    --secondary-color: #ff6a00;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
}

a{
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 600;
    line-height: 1.2;
}

p {
    font-family: var(--font-family);
    font-weight: 400;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    font-family: var(--font-family);
}

    .section-title:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--secondary-color);
    }

/* Button styles */
.btn {
    font-family: var(--font-family);
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Form elements */
input, textarea, select {
    font-family: var(--font-family);
    font-weight: 400;
}

/* Navigation elements */
.navbar-brand {
    font-family: var(--font-family);
    font-weight: 600;
}

.nav-link {
    font-family: var(--font-family);
    font-weight: 500;
}
/* Contact Page */
.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-text h5 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-text p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

.contact-form {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #004c9e;
        border-color: #004c9e;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 92, 185, 0.3);
    }

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background-color: #e36000;
        border-color: #e36000;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
    }

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 92, 185, 0.3);
    }
/* Cargo Tracking */
.tracking-section {
    background-color: var(--light-color);
    padding: 3rem 0;
}

.tracking-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tracking-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Media Queries */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }

        .hero-title span {
            font-size: 5rem;
        }

    .hero-image {
        opacity: 0.4;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

        .hero-title span {
            font-size: 4rem;
        }

    .section-title {
        font-size: 2rem;
    }
}
