/* --- PÍSMA (Lokální) --- */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/montserrat-v31-latin_latin-ext-700.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
}

/* --- ZÁKLADNÍ NASTAVENÍ --- */

html {
    /* Hodnota by měla odpovídat výšce tvého navbaru (cca 70-80px) */
    scroll-padding-top: 75px; 
    scroll-behavior: smooth; /* Bonus: plynulé odrolování místo skoku */
}


body { 
	font-family: 'Inter', sans-serif; 
	background-color: #f8f9fa; 
	color: #333; 
}

h1, h2, h3 { 
	font-family: 'Montserrat', sans-serif; 
	font-weight: 700; 
}

/* --- Navigace --- */

.navbar-logo {
	max-width: 40px;
	height: 40px;
	margin-top: 0.1em;
	width: auto;
	display: inline-block;
	vertical-align: middle;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}


/* --- BARVY A KOMPONENTY --- */
.bg-navy { 
	background-color: #1A365D !important; 
}

.text-orange { 
	color: #F3722C !important; 
}

.btn-orange { 
	background-color: #F3722C; 
	color: white; 
	border: none; 
	font-weight: 600; 
	padding: 12px 30px; 
	transition: 0.3s; 
}

.btn-orange:hover { 
	background-color: #E63946; 
	color: white; 
}

/* --- HEADER SEKCE --- */
.header-section {
	background: linear-gradient(rgba(26, 54, 93, 0.75), rgba(26, 54, 93, 0.75)), 
	url('../images/pozadi.png');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 120px 0;
	text-align: center;
}

/* --- DALSI SEKCE --- */

.cara	{
	width: 60px;
	height: 4px;
	background-color: #F3722C;
}

/* --- KARTY SLUŽEB --- */
.service-card {
	border: none;
	border-radius: 12px;
	transition: transform 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	background: white;
	padding: 30px;
	text-align: center;
}

.service-card:hover { 
	transform: translateY(-10px); 
}

.icon-box { 
	font-size: 2.8rem; 
	color: #1A365D; 
	margin-bottom: 15px; 
}

/* --- KALKULAČKA --- */
.calc-box {
	background-color: #1A365D;
	color: white;
	border-radius: 15px;
	padding: 40px;
	margin-top: 50px;
}

#rangeInput { 
	accent-color: #F3722C; 
}


a {
	text-decoration: none;
	color: inherit;
}


a:hover {
	text-decoration: none;
	color: #F3722C;
}



/* Zacílení na třídu telmail v patičce */
.telmail {
    color: inherit !important;      /* Přebere barvu od rodiče (šedou) */
    text-decoration: none !important; /* Odstraní podtržení */
    transition: opacity 0.2s ease;  /* Jemný efekt při najetí */
}

/* Jemné zvýraznění při najetí, aby uživatel věděl, že jde o odkaz */
.telmail:hover {
    color: inherit;
    opacity: 1;                     /* Při najetí se odkaz "rozsvítí" (ztratí průhlednost) */
    text-decoration: underline;    /* Volitelné: přidá podtržení jen při najetí */
}