/* Základné nastavenia a reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #A35709; /* Hnedá/Zlatá - farba jedla */
    --secondary-color: #E2DFD0; /* Krémová/Béžová - pozadie, neutrálna */
    --dark-color: #313131; /* Tmavá pre text/pozadie */
    --light-color: #F8F8F8; /* Svetlá pre pozadie */
    --text-color: #555;
    --heading-color: #313131;
    --font-family-primary: 'Arial', sans-serif;
    --font-family-secondary: 'Georgia', serif; /* Pre nadpisy/špeciálne texty */
}

body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hlavička a Navigácia */
.main-header {
    background-color: #313131;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-family-secondary);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
}

.burger-menu div {
    width: 30px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 20px 100px; /* Upraviť padding pre fixnú hlavičku */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh; /* Aby zaberalo väčšinu výšky obrazovky */
    position: relative;
    z-index: 1;
}

.hero-section::before { /* Overlay pre lepšiu čitateľnosť textu */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-family: var(--font-family-secondary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-padding h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 50px;
    color: var(--heading-color);
    font-family: var(--font-family-secondary);
}

.bg-light {
    background-color: var(--secondary-color);
}

/* Tlačidlá */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #8C4707; /* Tmavší odtieň primárnej */
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* About Us */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px; /* Max šírka obrázka */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about-content p {
    flex: 2;
    min-width: 300px;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.service-item p {
    font-size: 1em;
    color: var(--text-color);
}

/* Menu */
.menu-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.menu-categories {
    text-align: center;
    margin-bottom: 40px;
}

.menu-filter-btn {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
}

.menu-filter-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.menu-filter-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.menu-item h3 {
    font-size: 1.5em;
    color: var(--heading-color);
    margin: 15px 15px 5px;
}

.menu-item p {
    font-size: 1em;
    color: var(--text-color);
    margin: 0 15px 15px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay i {
    color: #fff;
    font-size: 2.5em;
}

/* Lightbox pre galériu */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1001;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

   a[href^="tel:"] {
  color: inherit !important;
  text-decoration: none !important;
}

/* Kontakt */
.contact-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-size: 1.8em;
    color: var(--heading-color);
    margin-bottom: 25px;
    font-family: var(--font-family-secondary);
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.contact-info p i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.3em;
}

.social-icons {
    margin-top: 25px;
}

.social-icons a {
    color: var(--dark-color);
    font-size: 1.8em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    font-size: 1.8em;
    color: var(--heading-color);
    margin-bottom: 25px;
    font-family: var(--font-family-secondary);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--heading-color);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: var(--dark-color);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(163, 87, 9, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Pätička */
.main-footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.main-footer p {
    margin: 0;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}


/* Responzívny dizajn */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 60%;
        background-color: rgb(0, 0, 0);
        flex-direction: column;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        color: rgb(0, 0, 0);
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 1;
    }

    .nav-links li a {
        font-size: 1.2em;
        opacity: 1;
    }

    .burger-menu {
        display: flex;
    }

    .nav-active {
        transform: translateX(0%);
    }

    /* Animácia burger menu */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .toggle .line2 {
        opacity: 0;
    }
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    .section-padding h2 {
        font-size: 2.2em;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-padding h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .menu-filter-btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .main-footer .container {
        flex-direction: column;
    }
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

 

}