/* root upravy */
:root {
    --primary-dark: #003d3d; 
    --accent-teal: #a8e6e6;  
    --bg-light-gray: #f8f9fa;
    --danger-red: #dc3545;
    --dark-teal: #003d3d; 
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-dark);
    margin: 0;
    padding: 0;
}

/* navbar */
.navbar {
    padding: 1.2rem 0;
    background-color: var(--bg-light-gray);
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-dark) !important;
}

.nav-link {
    color: var(--primary-dark) !important;
    font-weight: 600;
}

.nav-separator {
    color: #ccc;
    padding: 0 12px;
}

/* main hero */
.hero-section {
    position: relative;
    height: calc(100vh - 70px); 
    min-height: 580px; 
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(168, 230, 230, 0.45), rgba(168, 230, 230, 0.45)), 
                url('new-hero-compressed.jpg');
    background-size: cover;
    background-position: top;
}

.hero-title {
    font-weight: 900;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 2.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-weight: 700;
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 3.5rem;
}

/* buttons */
.btn-custom {
    background-color: var(--accent-teal);
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    min-width: 220px;
    text-align: center;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    transform: translateY(-3px);
    background-color: #8cd0d0;
    color: var(--primary-dark);
}

/* rozcestnik */
.section-title {
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin: 30px 0 20px; 
}

.info-card {
    border: 2px solid #eef2f3;
    border-radius: 35px;
    padding: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    transition: border-color 0.3s;
}

.info-card:hover {
    border-color: var(--accent-teal);
}

.card-icon-placeholder {
    width: 110px;
    height: 110px;
    border: 1.5px solid #dee2e6;
    border-radius: 15px;
    margin-right: 25px;
    flex-shrink: 0;
    background-color: #fbfcfc;
}

.card-content h3 {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.btn-card {
    display: inline-block;
    background-color: #fff;
    border: 1.5px solid #dee2e6;
    border-radius: 20px;
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-dark);
    margin-top: 5px;
    transition: all 0.2s;
}

.btn-card:hover {
    background-color: var(--primary-dark);
    color: #fff;
    border-color: var(--primary-dark);
}

/* footer */
footer {
    background-color: var(--bg-light-gray);
    padding: 25px 0;
    font-size: 0.95rem;
    margin-top: 50px; 
    border-top: 1px solid #eee;
}

/* --- Kontakt stránka specifické styly --- */

.fw-black { font-weight: 900; }

.bg-teal {
    background-color: var(--accent-teal);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 8px 15px;
}

/* Karty profilu */
.profile-card {
    background: #fff;
    border: 2px solid #eef2f3;
    border-radius: 35px;
    padding: 40px 20px;
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-teal);
}

.profile-img-placeholder {
    width: 120px;
    height: 120px;
    background-color: #f0f4f4;
    border: 3px solid var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Nouzové kontakty */
.emergency-container {
    background-color: #fffafa;
}

.border-md-end {
    border-right: 1px solid #dee2e6;
}

/* --- Nový Minimalistický Styl (dle obrázku) --- */

.label-muted {
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.minimal-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}

.minimal-input:focus {
    border-bottom-color: var(--dark-teal);
}

.btn-dark-teal {
    background-color: var(--dark-teal);
    color: white;
    border: none;
    padding: 12px 40px;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-dark-teal:hover {
    background-color: #005a5a;
    color: white;
}

.bank-minimal {
    margin-top: 30px;
}

/* Třída pro dělící čáru pouze na velkých displejích */
@media (min-width: 992px) {
    .border-lg-end {
        border-right: 1px solid rgba(0,0,0,0.1) !important;
    }
}

/* Responzivita */
@media (max-width: 991px) {
    .border-md-end {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    .nav-separator { display: none; }
    .info-card { flex-direction: column; text-align: center; }
    .card-icon-placeholder { margin-right: 0; margin-bottom: 20px; }
    .hero-section { height: auto; padding: 80px 0; min-height: 100vh; }
    .section-title { margin: 30px 0 20px; }
}