

:root {
    --army-green: #687834;
    --army-green-darker: #4b5320;
    --army-green-hover: #3a4019;
    --dark-concrete: #2c2f33;
    --light-concrete: #434349;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    scroll-behavior: smooth;
}



/* Vlastní tlačítko na domů */
.btn-custom {
    background-color: var(--army-green-darker);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--army-green-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.text-custom {
    color: var(--army-green-darker);
}

/* Styl nadpisů sekcí + podtržení */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    font-weight: bold;
    color: var(--dark-concrete);
    text-transform: uppercase;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 4px;
    background-color: var(--army-green-darker);
    bottom: -10px;
    left: 0;
}

/* Vycentrování podtržení pro centrované nadpisy */
.text-center .section-title::after {
    left: 20%;
}

/* Rámeček pro fotky */
.border-dark-custom {
    border: 3px solid var(--light-concrete) !important;
}

/* Navigace při najetí myší */
.navbar-nav .nav-link:hover {
    color: var(--army-green) !important;
}
