body{
    margin:0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #1E1E1E, #39393B);
    color:white;
}

/* Layout */

.container{
    display:flex;
}

/* Navbar */

.navbar{
    width:250px;
    height:100vh;
    background:#111;
    padding:25px;
    position:fixed;
    
}

.logo{
    font-size:22px;
    font-weight:bold;
    margin-bottom:40px;
    text-align: center;
}

.navbarContainer{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-decoration: none;
    color: #ffffff;
}

.navbar ul{
    list-style:none;
    padding:0;
    text-decoration: none;
    color: #ffffff;
}

.navbar li{
    padding:12px 0;
    cursor:pointer;
    color:#ffffff;
    text-align: center;
    transition:0.5s;
    border-bottom:3px solid transparent;
    text-decoration: none;

    a {
        text-decoration: none;
        color: #ffffff;
    }
}

.navbar li:hover{
    border-bottom:3px solid #D7261E;
}

.order-btn{
    display: flex;
    background: linear-gradient(to bottom, #D7261E, #711410);
    border:none;
    padding:10px 15px;
    color:white;
    cursor:pointer;
    border-radius:5px;
    margin: 30px auto 0 auto;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-bottom: 20px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: white;
}


/* Content */

.content{
    margin-left:19rem;
    width:100%;
}

/* Hero */

.hero{
    background: url("../imgs/pexels-sternsteiger-stahlwaren-526336403-16456676 1.svg") center/cover;
    padding:120px 40px;
    height: 20rem;
}

.hero h1{
    font-size:40px;
    margin-left: 10rem;
}

.hero p{
    color:#dadada;
    margin-left: 10rem;
    font-weight: bolder;
    font-size: 20px;
}

.order-btn-hero{
    display: flex;
    background: linear-gradient(to bottom, #D7261E, #711410);
    border:none;
    padding:10px 15px;
    color:white;
    cursor:pointer;
    border-radius:5px;
    margin: 100px auto 0 auto;
    text-decoration: none;
    max-width: 15rem;
    max-height: 3rem;
    text-align: center;
    font-size: larger;
    font-weight: bolder;
}

/* Sections */

.section{
    margin-top:60px;
}

.section h2{
    margin-bottom:20px;
}

/* sluzby */
.sluzbyText{
    text-align: center;
}

.sluzby{
    display:flex;
    gap:30px;
}

.sluzba{
    padding:20px;
    flex:1;
    text-align:center;
    border-radius:6px;
}


/* Services */

.services{
    display:flex;
    gap:20px;
}

.service{
    background:#333;
    padding:20px;
    flex:1;
    text-align:center;
    border-radius:6px;
}

/* Ceník */
.cenik{
    display:flex;
    gap:20px;
    margin: 0 5rem 0 5rem;
}

.right {
    text-align:right;
    justify-content: right;

    p {
        font-weight: bold;
    }
}

.cenikBTN {
    margin-top:20px;
    padding:10px 20px;
    border:none;
    background: linear-gradient(to right, #737373, #1F1F1F);
    color:white;
    cursor:pointer;
    border-radius:4px;
    text-decoration: none;
}

/* whyMe */

.whyMe{
    display:flex;
    gap:40px;
}

.whyMeButton{
    margin-top:20px;
    padding:10px 20px;
    border:none;
    background: linear-gradient(to right, #D7261E, #711410);
    color:white;
    cursor:pointer;
    border-radius:4px;
    text-decoration: none;
}

.uvozovky2{
    margin-top:20px;
    display: block;
    margin-left: auto;
}

/* Container drží navbar + obsah */
.containerWhyMe {
    display: flex; 
    flex-direction: column;         /* flexbox pro layout sidebar + obsah */
    min-height: 100vh;      /* plná výška obrazovky pro vertikální centrování */
}


/* Sekce whyMe */
.section.whyMe {
    margin: auto;           /* centrování X i Y */
    max-width: 900px;       /* maximální šířka obsahu */
    padding: 20px;
    text-align: center;     /* zarovnání textu */
}

/* Obsah uvnitř whyMe (fotka + text) */
.whyMe-content {
    display: flex;
    align-items: center;    /* vertikální zarovnání fotky + textu */
    justify-content: center; /* horizontální centrování */
    gap: 30px;              /* mezera mezi fotkou a textem */
    flex-wrap: wrap;        /* pokud je obrazovka úzká, text pod fotkou */
}

.whyMe-content div:first-child img {
    max-width: 250px;
    height: auto;
}

/* how it Works*/

.howItWorks{
    justify-items: center;
    padding: 10px 0;
    
}

.howItWorksBTNsection{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.howItWorksBTN {
    margin-top:20px;
    padding:10px 20px;
    border:none;
    background: linear-gradient(to right, #737373, #1F1F1F);
    color:white;
    cursor:pointer;
    border-radius:4px;
    text-decoration: none;
}

.howItWorks ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.steps {
    max-width: 600px;
    margin: 20px auto;
    padding: 0;
}

.steps li {
    margin-bottom: 20px;
}

.step-title {
    display: block;
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 1rem 1rem;
    border-bottom: 2px solid #D7261E;
    padding-bottom: 3px;
}

.steps p {
    margin: 0;
    color: #ccc;
}

h4 span {
    color: #D7261E;
    font-weight: bold;
}

/* Contact */

.contact{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:80px;
}

.contact-text{
    max-width:400px;
    line-height:1.6;

    
}

.contactBolder{
    font-weight: bold;
    margin-bottom: 15px;
}


.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:18px;
}

.icon{
    font-size:22px;
}

/* order */
.containerOrder  {
    display: flex;
    min-height: 100vh;
}

.sectionOrder {
    margin: auto;       
    max-width: 800px;  
    padding: 20px;      
}

/* pricing */
.containerPricing {
    display: flex;
    min-height: 80vh;
}


.sectionPricing {
    margin: auto;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

.pricing-list {
    max-width: 600px;
    margin: 20px auto;
}

.item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #444;

    span {
        margin-left: 2rem;
    }
}

.item span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item span:first-child::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #D7261E;
    border-radius: 50%;
    display: inline-block;
}

.bundles {
    display: flex;
    margin-top: 2rem;
}

.discounts {
    color: #D7261E;
    font-size: 1.5rem;
    margin: auto 0 auto 10px;
    font-weight: bolder;

}

/* FAQ */

.faq-list {
    max-width: 700px;
    margin: 20px auto;
}

.faq-item {
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
}

/* Otazník */
.faq-item::before {
    content: "?";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: #D7261E;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-weight: bold;
}

/* Otázka */
.faq-question {
    display: block;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

/* Odpověď */
.faq-item p {
    margin: 0;
    color: #ccc;
}

/* reviws */

.reviews {
    text-align: center;
}

.review-box {
    max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    background: #222;
    border-radius: 10px;
    position: relative;
}

.review-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
}

.review-name {
    color: #D7261E;
    font-weight: bold;
}

/* Footer */

.footer{
    margin-top: 5rem;
}

.siteBoard {

}

.footerLinks{
    display:flex;
    gap:30px;
    justify-content:center;
    align-items:center;
    flex:1;
    
    a{
        text-decoration:none;
        color:white;
    }
}

.copyright{
    text-align: center;
    flex:1;
}


/* --- Globální zmenšení fontů a paddingů pro menší obrazovky --- */
@media (max-width: 1024px) {
    body {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 32px !important;
        margin-left: 0 !important;
    }

    .hero p {
        font-size: 16px !important;
        margin-left: 0 !important;
    }

    .sluzba, .service {
        padding: 15px;
    }

    .cenik {
        margin: 0 2rem;
        gap: 15px;
    }

    .whyMe-content div:first-child img {
        max-width: 180px;
    }
}

@media (max-width: 768px) {

    .navbar {
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 15px;
        position: relative;
    }

    .hamburger {
        display: flex; /* viditelný hamburger */
    }

    /* Menu pod logo */
    .navbarContainer {
        position: relative;  /* přirozené pod logo */
        width: 100%;
        background: #111;
        flex-direction: column;
        align-items: center;
        display: none; /* skryté do kliknutí */
        padding: 10px 0;
    }

    .navbarContainer.show {
        display: flex; /* zobrazení po kliknutí */
    }

    .navbar-links {
        width: 100%;
    }

    .navbar-links li {
        padding: 10px 0;
        text-align: center;
    }

    .order-btn {
        margin: 15px 0 0 0;
        width: 80%;
        text-align: center;
    }
}


/* --- Mobilní zařízení --- */
@media (max-width: 768px) {
    /* Navbar se schová do hamburgeru */
    .navbar {
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #111;
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
        z-index: 100;
    }

    .navbar-links.show {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
    }

    .hamburger div {
        width: 25px;
        height: 3px;
        background: white;
    }

    /* Content */
    .content {
        margin-left: 0;
        width: 100%;
    }

    .hero {
        padding: 50px 15px;
        text-align: center;
    }

    .hero h1 {
        font-size: 26px !important;
    }

    .hero p {
        font-size: 14px !important;
    }

    .hero button {
        width: 80%;
        font-size: 14px;
        padding: 10px 0;
        margin: 15px auto 0 auto;
    }

    /* Sekce whyMe vertikálně */
    .whyMe-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .whyMe-content div:first-child img {
        max-width: 150px;
    }

    /* Sluzby a services */
    .sluzby, .services, .cenik {
        flex-direction: column;
        gap: 10px;
        margin: 0 1rem;
    }

    .sluzba, .service {
        padding: 12px;
    }

    /* Tlačítka */
    .order-btn, .howItWorksBTN, .howMeButton, .cenikBTN {
        width: 90%;
        font-size: 14px;
        padding: 10px 0;
        margin: 10px auto;
    }

    /* Kontakt */
    .contact {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }
}

/* --- Extra malé zařízení --- */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 20px !important;
    }

    .hero p {
        font-size: 12px !important;
    }

    .whyMe-content div:first-child img {
        max-width: 120px;
    }

    .order-btn, .howItWorksBTN, .howMeButton, .cenikBTN {
        width: 95%;
        font-size: 13px;
        padding: 8px 0;
    }

    .sluzba, .service {
        padding: 10px;
    }
}