body{
    margin:0;
    font-family: 'Inter', Arial, sans-serif;
}

.content {
    padding-top: 40px;
}

.page-header {
    display: none;
}

/* WRAP */
.wrap{
    max-width:1100px;
    margin:auto;
    padding:0 20px;
}

/* HEADER */
.topbar {
    background: #1c1c1c;
    color: white;
}

.topbar,
.menu{
    position:relative;
}

/* grain přes celý pruh */
.topbar::after,
.menu::after{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:1;

    background-image:url("/templates/fowood/images/noise.png");
    background-repeat:repeat;

    opacity:0.35;
}

.topbar .wrap,
.menu .wrap{
    position:relative;
    z-index:5;
}


/* ===== MENU PREMIUM ===== */

.menu{
    position:sticky;
    top:101px;
    z-index:999;

    margin-top:-1px;

    background: linear-gradient(
        to bottom,
        #303030,
        #242424
    );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 8px 22px rgba(0,0,0,0.45);
}

.menu a{
    color:#e6e6e6;
    text-decoration:none;
    font-size:18px;
    padding:8px 6px;
    position:relative;
    transition:0.2s;
    opacity:0.85;
}

/* animovaná linka */
.menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#63c174;
    transition:0.25s;
}

.menu a:hover{
    color:#8ee39a;
    opacity:1;
}

.menu a:hover::after{
    width:100%;
}

.menu li.current > a,
.menu li.active > a {
    color: #8ee39a;
    opacity: 1;
}

.menu li.current > a::after,
.menu li.active > a::after {
    width: 100%;
}

.menu li.current > a {
    text-shadow: 0 0 8px rgba(99,193,116,0.4);
}


.topbar .wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ===== TOPBAR PREMIUM ===== */
.topbar{
    position:sticky;
    top:0;
    z-index:1000;
    padding:22px 0;

    background: linear-gradient(
        to bottom,
        #2f2f2f 0%,
        #1f1f1f 55%,
        #151515 100%
    );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        inset 0 -1px 0 rgba(0,0,0,0.7),
        0 2px 8px rgba(0,0,0,0.4);
}


.topbar,
.menu{
    box-shadow:0 2px 10px rgba(0,0,0,0.15);
}

.logo-wrap{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-wrap img{
    height:52px;
}

.logo-text strong{
    color:#418754;
    font-size:30px;
    letter-spacing:0.5px;
}

.logo-text span{
    font-size:13px;
    color:#cfcfcf;
}

.phone-wrap{
    color:#63c174;
    font-size:32px;
    font-weight:700;
}

.phone-wrap span{
    font-size:15px;
    color:#cfcfcf;
}

.top-contact {
    text-align: right;
    color: #63c174;
}

/* telefonní odkaz */
.top-contact .phone{
    position:relative;
    font-size:34px;
    font-weight:700;
    color:#418754;
    letter-spacing:1px;

    display:inline-flex;
    align-items:center;
    gap:12px;

    text-decoration:none;
    padding-bottom:6px;
}

/* obal čísla - důležité */
.top-contact .phone .num{
    position:relative;
    display:inline-block;
}

/* animovaná linka jen pod číslem */
.top-contact .phone .num::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-2px;
    width:0%;
    height:3px;
    background:#418754;
    transition:width 0.35s ease;
}

.top-contact .phone,
.top-contact .phone:hover{
    text-decoration:none !important;
}

/* hover animace */
.top-contact .phone:hover .num::after{
    width:100%;
}

/* jemný glow */
.top-contact .phone:hover{
    color:#4a905d;
    text-shadow:0 0 8px rgba(99,193,116,0.35);
}


/* ikona */
.top-contact .phone-ico{
    width:30px;
    height:30px;
    display:inline-block;

    background:url("/templates/fowood/images/phone.png") no-repeat center;
    background-size:contain;
    transition:0.3s;
}

.top-contact .phone:hover .phone-ico{
    transform:scale(1.08);
    filter:drop-shadow(0 0 6px rgba(99,193,116,0.6));
}

.top-contact .hours{
    font-size:13px;
    color:#a5a5a5;
}

.top-contact a {
    color: #418754;
    text-decoration: none;
}

.top-contact a:hover {
    text-decoration: underline;
}

/* MENU */
.menu{
    background:#2b2b2b;
}

.menu ul{
    list-style:none;
    margin:0;
    padding:15px 0;
    display:flex;
    gap:30px;
}

.menu a{
    color:white;
    text-decoration:none;
    font-size:18px;
}

.menu a:hover{
    color:#4caf50;
}

/* CONTENT */
.content{
    background:white;
    padding:40px 0;
    min-height:400px;
}

/* FOOTER */
.footer{
    background:#1d1d1d;
    color:#a9a9a9;
    font-size:13px;
    letter-spacing:0.4px;
    text-align:left;
    padding:20px 0;
    position:relative;
    overflow:hidden;
}

/* grain overlay */
.footer:before{
    content:"";
    position:absolute;                   
    inset:0;
    pointer-events:none;

    background:url("/templates/fowood/images/noise.png");
    opacity:0.35;
    mix-blend-mode:normal;
}

.footer a{
    color:#a9a9a9; 
    font-weight:700; 
    text-decoration:none;
}

.footer a:hover{
    text-decoration:none;
    color:#b9b9b9;
}


/* ===== HERO ===== */
.hero {
    position: relative;
    height: 420px;
    background: url("/templates/fowood/images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 40px;
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

.hero::before{
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.82) 0px,
        rgba(0,0,0,0.55) 180px,
        rgba(0,0,0,0.35) 320px,
        rgba(0,0,0,0.65) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.hero h1{
    font-size:64px;
    margin-bottom:18px;
    font-weight:800;
    letter-spacing:1px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 10px;
    opacity: 0.95;
}

/* tlačítka */
.btn {
    display: inline-block;
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 20px 10px 0 10px;
    font-size: 18px;
    transition: 0.2s;
}

.btn-green{
    position:relative;
    padding-left:48px; 
    background: linear-gradient(#3c8a4b,#2f6b3b);
    color:white;
    box-shadow:
        0 10px 28px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

/* bílé sluchátko v tlačítku */
.btn-green:before{
    content:"";
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);

    width:25px;
    height:25px;

    background:url("/templates/fowood/images/phone-white.png") no-repeat center;
    background-size:contain;
}


.btn-green:hover{
    background: linear-gradient(#46a657,#2f6b3b);
    transform: translateY(-2px);
    box-shadow:
        0 14px 34px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

/* tlačítko ceník s pdf ikonou */
.btn-light{
    position:relative;
    padding-left:46px; 
    background: rgba(255,255,255,0.9); 
    color: #222;
}

/* pdf ikonka */
.btn-light:before{
    content:"";
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);

    width:25px;
    height:25px;

    background:url("/templates/fowood/images/pdf.png") no-repeat center;
    background-size:contain;
    opacity:0.85;
}

.btn-light:hover{
    transform: translateY(-2px);
    box-shadow:
        0 14px 34px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

/* ===== CENIK KARTA ===== */
.cenik-card {
    background: #f3f3f3;
    padding: 50px;
    margin: 60px auto;
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.7);
    max-width: 1000px;
}

.cenik-card strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2f6b3b;
    letter-spacing: 0.5px;
}

.cenik-card h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cenik-note {
    color: #666;
    margin-bottom: 30px;
}

.cenik-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.cenik-col h3 {
    margin-bottom: 15px;
    color: #2f6b3b;
}

.cenik-col ul {
    list-style: none;
    padding: 0;
}

.cenik-col li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
}

.cenik-col li strong {
    min-width: 110px;
    text-align: right;
}

.cenik-btn {
    display: block;
    margin: 40px auto 0 auto;
    width: fit-content;
}

.nowrap {
    white-space: nowrap;
}

.item-page {
    max-width: 1100px;
    margin: auto;
}

/* ===== DOPRAVA SEKCE ===== */
/* sekce */
.doprava{
    position:relative;
    padding:40px 20px;
    margin-top:60px;
    background:#f3f3f3;
    overflow:hidden;
}

/* content */
.doprava-inner{
    position:relative;
    z-index:2;
    max-width:800px;
    margin:0 auto;

    display:flex;
    align-items:center;
    gap:25px;
}

/* pravý panel s dřevem */
.doprava::after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;

    /* odečtený stín */
    left: calc((100vw - 1100px)/2 + 720px);
    width: 360px;

    background:url('/templates/fowood/images/firewood.jpg') center/cover no-repeat;
    z-index:0;
}

/* gradient */
.doprava::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;

    left: calc((100vw - 1100px)/2 + 720px);
    width: 360px;

    background:linear-gradient(
        to right,
        rgba(243,243,243,1) 0px,
        rgba(243,243,243,1) 80px,
        rgba(243,243,243,0.9) 140px,
        rgba(243,243,243,0.6) 220px,
        rgba(243,243,243,0.2) 300px,
        rgba(243,243,243,0) 360px
    );

    z-index:1;
}

/* ikona */
.doprava-icon {
    width: 95px;
    height: 95px;
    flex-shrink: 0;

    background: url('/templates/fowood/images/truck.png') no-repeat center;
    background-size: contain;
}

/* nadpis */
.doprava h2 {
    margin: 0 0 6px 0;
    font-size: 30px;
    font-weight: 700;
    color: #111;
}

/* text */
.doprava p {
    margin: 0;
    color: #555;
    font-size: 18px;
}

/* ===== KONTAKT + MAPA ===== */
.kontakt {
    padding: 70px 20px;
    background: #f7f7f7;
}

.kontakt-inner {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}

/* levá část */
.kontakt-left h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.kontakt-left {
    font-size: 18px;
    color: #333;
}

.kontakt-list {
    margin: 15px 0;
    color: #2f5d2f;
}

.kontakt-list div {
    margin: 4px 0;
}

.ico {
    margin-top: 15px;
}

/* mapa */
.kontakt-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 800px) {

.kontakt-inner {
    grid-template-columns: 1fr;
}

.kontakt-map iframe {
    height: 240px;
}
}

/* ===== TYPOGRAFIE ČLÁNKŮ ===== */

.item-page {
    max-width: 820px;
    margin: 76px auto;
}

.item-page h1 {
    font-size: 38px;
    margin-bottom: 25px;
}

.item-page h2 {
    font-size: 30px;
    margin-top: 76px;
    margin-bottom: 29px;
}

.item-page h3 {
    font-size: 24px;
    margin-top: 47px;
    margin-bottom: 18px;
    color: #2f6b3b;
}

.item-page p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 29px;
    color: #333;
}

/* Seznamy */
.item-page ul {
    margin: 29px 0 47px 22px;
    padding-left: 10px;
}

.item-page ul li {
    margin-bottom: 11px;
    line-height: 1.6;
}

/* Oddělení sekcí */
.item-page h2,
.item-page h3 {
    position: relative;
}

.item-page h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #2f6b3b;
    margin-top: 10px;
}

.item-page {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}