/* Custom CSS for Yucon Theme */

:root {
    --yucon-red: #c00000;
    --yucon-dark: #222222;
    --yucon-light: #ffffff;
}

/* General Styles */
html, body {
    font-family: 'Ubuntu', sans-serif;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Julius Sans One', sans-serif;
    font-display: swap;
}

/* Ensure Polish characters display correctly */
.hero-title,
.services-title,
.card-title,
.position-title h4,
.management-item strong,
.project-title,
h1, h2, h3, h4, h5, h6 {
    font-family: Ubuntu, Arial, 'Arial Unicode MS', Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Header Styles */
.navbar {
    background-color: white !important;
    padding: 1rem 0;
    box-shadow: none;
    border-bottom: 1px solid #eee;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--yucon-red) !important;
}

.navbar-nav .nav-item {
    margin: 0 0.5rem;
}

/* Hero Section styles moved to hero.css */

/* Services Section styles moved to hero.css for modern design */

/* Why Yucon Section */
.why-yucon-section {
    background-color: white;
    padding: 3rem 0;
}

/* Footer Styles */
footer {
    background-color: var(--yucon-dark);
    color: white;
    padding-top: 3rem;
}

footer a {
    color: white;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--yucon-red);
    text-decoration: underline;
}

.footer-title {
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 5px;
}

.contact-form h2 {
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
}

.contact-form .btn-primary {
    background-color: var(--yucon-red);
    border-color: var(--yucon-red);
}

/* Back to top button */
#back-to-top {
    background-color: var(--yucon-red);
    color: white;
    border: none;
}

/* Contact Section Styles */
/* Contact Section Styles */
.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--yucon-red);
    box-shadow: 0 0 0 0.2rem rgba(192, 0, 0, 0.25);
}

.contact-form .form-check-label {
    font-size: 0.9rem;
    color: #666;
    padding-left: 0.5rem;
}

.contact-form .btn-danger {
    background-color: var(--yucon-red);
    border-color: var(--yucon-red);
    padding: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-form .btn-danger:hover {
    background-color: #a00000;
    border-color: #a00000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .services-title {
        color: var(--yucon-red);
        font-size: 1.5rem;
    }
    
    .service-image {
        width: 150px;
        height: 150px;
    }
}