* { margin:0; padding:0; box-sizing:border-box; font-family:Arial,sans-serif; }
body { background-color:#111; color:#fff; line-height:1.6; }

/* Layout wrapper */
.wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    position: fixed; /* fixné umiestnenie */
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background-color: #111;
    padding: 20px;
    box-sizing: border-box;
    display: flex; /* pridáme flex */
    flex-direction: column;
    justify-content: space-between; /* horný obsah hore, footer dole */
}

.sidebar-top {
    display: flex;
    flex-direction: column;
    align-items: center; /* logo + menu na stred */
}

.sidebar .logo img {
    width: 150px;
    margin-bottom:30px;
}

.sidebar .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.sidebar .menu a {
    text-align: center;
    margin-bottom: 15px;
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
}

.sidebar-footer p {
    text-align: center;
    color: #ffc107;
    font-weight: bold;
    font-size: 0.9rem;
    margin: 0;
}

.sidebar .menu a:hover {
    color:#fff;
}


/* Main content */
.content {
    margin-left: 270px; /* trochu viac ako šírka sidebaru, nech je medzera */
    padding: 20px;
}


.btn {
    display: inline-block;
    background-color: #ffc107;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #e0a800;
}



/* Hero sekcia */
.hero-section {
    background-image: url('images/workshop1.jpg');
    background-size: cover;       /* obrázok vyplní celú sekciu */
    background-position: center;  /* stred obrázku zarovnaný so stredom sekcie */
    background-repeat: no-repeat; /* obrázok sa nebude opakovať */
    min-height: 500px;            /* výška sekcie, nastav podľa potreby */
    display: flex;
    align-items: center;          /* vertikálne centrovanie textu */
    justify-content: center;      /* horizontálne centrovanie textu */
    text-align: center;
}

.hero-text {
    background: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 10px;
    max-width: 1000px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 50px;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero-section .hero-text .highlight {
    color: #ffc107;      /* žltá farba */
    font-size: 1.8rem;   /* väčšie čísla */
    font-weight: bold;
    display: block;      /* pod sebou */
    margin: 5px 0;
}

/* Sekcie pod hero */
section {
    padding: 50px 40px;
}

section h2 {
    font-size:2rem;
    color:#ffc107;
    margin-bottom:20px;
    border-bottom:2px solid #ffc107;
    display:inline-block;
    padding-bottom:5px;
}

/* Footer */
footer {
    background:#000;
    color:#ffc107;
    text-align:center;
    padding:20px;
    width: 100%;
    clear:both;
}

.service-overview {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    align-items: flex-start;
}

.service-left {
    flex: 1 1 300px;
    text-align: center;
    margin-bottom: 20px;
}

.service-left h2 {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 20px;
}

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.service-right {
    flex: 2 1 400px;
    padding-left: 30px;
}

.service-right p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.service-right ul {
    list-style-type: disc;
    margin-left: 70px;
    margin-bottom: 20px;
}

.service-right ul li {
    margin-bottom: 10px;
}

.service-right .btn {
    margin-left: 70px;
}


.our-work-section {
    display: flex;
    align-items: center;
    gap: 30px; /* medzera medzi obrázkom a textom */
    padding: 50px 40px;
}

.our-work-left {
    flex: 0 0 45%; /* obrázok zaberie 45% */
}

.our-work-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.our-work-right {
    flex: 1; /* text zaberie zvyšok */
}

.our-work-right p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.our-work-right .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffc107;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .our-work-section {
        flex-direction: column;
    }

    .our-work-left,
    .our-work-right {
        flex: 1 1 100%;
    }

    .our-work-right {
        margin-top: 20px;
    }
}




/* Tepovanie sekcia */
.tepovanie-section {
    margin: 50px 0;
}

.tepovanie-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap; /* pre menšie obrazovky */
    align-items: flex-start;
}

.tepovanie-left {
    flex: 1 1 45%;
}

.tepovanie-left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 5px;
}

.tepovanie-right {
    flex: 1 1 50%;
}

.tepovanie-title {
    color: #ffc107; /* žltý nadpis */
    font-size: 2rem;
    margin-bottom: 15px;
}

.tepovanie-right p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tepovanie-right ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.tepovanie-footer {
    text-align: center;
    margin-top: 30px;
}

.tepovanie-footer p {
    font-weight: bold;
}

.tepovanie-footer-img {
    max-width: 200px; /* menší obrázok */
    width: 100%;
    height: auto;
    border-radius: 5px;
}









/* ===== SLUŽBY ===== */

.services-hero {
    margin-bottom: 50px;
}

.services-hero h1 {
    color: #ffc107;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-hero p {
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.services-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.services-column {
    flex: 1 1 300px;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
}

.services-column h2 {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.4rem;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 5px;
}

.services-column ul {
    list-style: disc;
    margin-left: 20px;
}

.services-column li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.services-cta {
    text-align: center;
    margin-bottom: 30px;
}












/* rezervacia.php */

/* ==========================
   Rezervácia | Základný reset
   ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #111;
    color: #fff;
    line-height: 1.6;
}

/* ==========================
   Header
   ========================== */
header {
    background: #111;
    color: #ffc107;
    text-align: center;
    padding: 40px 20px;
}
header h1 {
    font-size: 3rem;
    margin-top: 30px;
}
header p {
    font-size: 1.2rem;
}

/* ==========================
   Main obsah
   ========================== */
main {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Odstup sekcií */
section {
    margin-bottom: 50px;
}
section h2 {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffc107;
    display: inline-block;
    padding-bottom: 5px;
}
section p,
section ul {
    font-size: 1rem;
    margin-bottom: 15px;
}
section ul li {
    margin-left: 20px;
    list-style-type: disc;
}

/* ==========================
   Formulár
   ========================== */
.reservation-info {
    max-width: 500px;       /* rovnaká šírka ako formulár */
    margin: 0 auto 30px auto; /* centrovanie a spodný margin */
    font-size: 16px;
    line-height: 1.5;
    text-align: center;     /* centrovanie textu */
    color: #fff;            /* biely text */
}

form {
    background: #222;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto 40px auto; /* centrovaný a spodný margin */
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="date"],
form select,
form input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

form input[type="submit"] {
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

form input[type="submit"]:hover {
    background-color: #e0a800;
}

/* Flatpickr plné dni */
input.flatpickr-input.full-day {
    background-color: #ff4444;
    color: #fff;
    font-weight: bold;
}

/* ==========================
   Mapa a text vedľa seba
   ========================== */
.map-text-wrapper {
    display: flex;
    flex-wrap: wrap; /* pre mobilnú responzivitu */
    gap: 20px;
    margin-top: 40px;
}

.map-text-wrapper .map-container,
.map-text-wrapper .map-text {
    flex: 1 1 45%; /* cca pol na pol */
    min-width: 300px; /* aby sa nezlomilo pri menších obrazovkách */
}

.map-container iframe {
    width: 100%;
    height: 545px;
    border: 0;
    border-radius: 10px;
}

/* Text vedľa mapy */
.map-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

/* ==========================
   Vyskakovacie okno
   ========================== */
#alertBox {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-radius: 5px;
    z-index: 1000;
    font-weight: bold;
}

/* ==========================
   Footer
   ========================== */
footer {
    background: #111;
    color: #ffc107;
    text-align: center;
    font-size: 1.2rem;
    padding: 20px;
}

/* ==========================
   Flatpickr input
   ========================== */
.flatpickr-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
}

/* druhy form*/

.contact-map-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
    align-items: flex-start;
}

.map-container {
    flex: 1 1 400px;
    max-width: 400px;
}

.contact-form-container {
    flex: 1 1 400px;
    max-width: 400px;
}

.contact-form-container p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form-container form {
    background: #222;
    padding: 20px;
    border-radius: 10px;
}

.contact-form-container form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form-container form input,
.contact-form-container form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
}

.contact-form-container form input[type="submit"] {
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

.contact-form-container form input[type="submit"]:hover {
    background-color: #e0a800;
}

.success-msg {
    color: #28a745;
    font-weight: bold;
    margin-bottom: 15px;
}

.error-msg {
    color: #ff4444;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    max-width: 1100px; /* šírka stránky */
    margin: 50px auto;  /* odsadenie od obsahu a footeru */
    gap: 20px;          /* medzera medzi kartami */
    flex-wrap: wrap;    /* ak sa zmenší obrazovka, karty pôjdu pod seba */
}

.contact-card {
    background:#ffc107;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1;               /* aby boli karty rovnomerne široké */
    min-width: 250px;      /* minimalna šírka karty */
    color: #222;
}

.contact-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.contact-card h3 {
    margin-bottom: 10px;
    color: #222;
}

.contact-card p {
    font-size: 1rem;
    line-height: 1.5;
}











/*nasapraca*/

.gallery-left .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-item .image-wrapper {
    width: 100%;
    height: 250px;       /* pevná výška = štvorcový tvar */
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.grid-item .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* obrázok vyplní celý rám */
    display: block;
}

.grid-item p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

.grid-item .service-title {
    color: #ffc107;       /* žltý nadpis */
    font-size: 1.2rem;    /* menší ako hlavný text */
    margin: 10px 0 5px;   /* odsadenie nad a pod */
    text-align: center;
    font-weight: bold;
}


.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    color: #ffffff;
    display: flex;
    justify-content: space-between; /* rozdelí ľavú a pravú skupinu */
    align-items: center;
    padding: 5px 10px;
    z-index: 9999;
    font-size: 0.9rem;
    gap: 15px;
}

/* Každá skupina je flex v riadku */
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px; /* medzera medzi ikonami v skupine */
}

.top-bar img {
    width: 20px;
    height: 20px;
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Hover efekt */
.topbar-right a:hover,
.topbar-right .topbar-info a:hover {
    color: #ffc107;          /* žltá pri hover */
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Posun obsahu stránky pod top-bar */
body {
    padding-top: 50px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .top-bar {
        flex-wrap: wrap; /* pre malý screen sa môžu prelomiť na nový riadok */
        justify-content: flex-start;
    }

    .topbar-left,
    .topbar-right {
        gap: 8px;
    }

    .top-bar img {
        width: 18px;
        height: 18px;
    }

    .top-bar a, .topbar-info {
        font-size: 0.8rem;
    }
}







