:root {
    /* ===============================
       🎯 Breakpoints
   =============================== */
    --bp-xs: 0px;
    --bp-sm: 576px;
    --bp-md: 768px;
    --bp-lg: 992px;
    --bp-xl: 1200px;
    --bp-xxl: 1400px;
    --bp-xxxl: 1600px;
    --bp-ultra: 1920px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
    transition: all 0.3s ease;
    background: #F5F5F5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

@media (min-width: 992px) {
    .header {
        padding: 1.5rem 1rem;
    }
}

.logo {
    font-weight: bold;
    color: #cc9429;
    text-decoration: none;
    white-space: nowrap;
    font-size: 25px;
    line-height: 1;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Scrollnutý stav */
.header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.header.scrolled .nav-links a {
    color: #000;
}

.header.scrolled .nav-links a:hover {
    color: #cc9429;
}

.nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    padding: 20px;
}

@media (min-width: 992px) {
    .nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        margin: 0;
        padding-left: 2rem;
        padding-right: 3rem;
        position: relative;
        right: unset;
        height: unset;
        background: transparent;
        flex-direction: row;
        padding-top: 0;
        padding-bottom: 0;
        gap: 0;
        transition: unset;
    }
}

.nav.show {
    right: 0;
}

.toggle-button {
    position: relative;
    z-index: 15;
    cursor: pointer;
}

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

@media (min-width: 992px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
}

@media (min-width: 1200px) {
    .nav-links {
        gap: 1.5rem;
    }
}

.nav-links li {
    border-bottom: 1px solid #cc9429;
}

@media (min-width: 992px) {
    .nav-links li {
        border-bottom: none;
    }
}

.nav-links a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 15px 0;
}

@media (min-width: 992px) {
    .nav-links a {
        padding: 0;
    }
}

.nav-links a:hover {
    color: #cc9429;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

@media (min-width: 992px) {
    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 220px;
        box-shadow: 0 8px 16px rgb(0, 0, 0);
        border-radius: 8px;
        overflow: hidden;
        margin-top: 10px;
        z-index: 1000;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.dropdown-content a {
    padding: 2px 0;
    font-size: 14px;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-content,
    .dropdown-content:hover {
        display: block;
    }
}

@media (min-width: 992px) {
    .dropdown::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 15px;
        background: transparent;
        z-index: 999;
    }
}

@media (min-width: 992px) {
    .dropdown-content a {
        display: block;
        padding: 12px 16px;
        border-bottom: 1px solid #f0f0f0;
    }
}

.dropdown-content a:last-child {
    border-bottom: none;
}

@media (min-width: 992px) {
    .dropdown > a::after {
        content: "";
        display: inline-block;
        margin-left: 0.375rem;
        vertical-align: middle;
        border-top: 0.3rem solid;
        border-right: 0.3rem solid transparent;
        border-left: 0.3rem solid transparent;
    }
}

.dropdown > a::after {
    transition: transform 0.2s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    height: 70vh;
    background-image: url('img/IMG_0845.JPEG');
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 30px;

    @media (min-width: 992px) {
        height: 100vh;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero .container {
    max-width: 1920px;
    width: 100%;
}

.hero .article-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 10px;
}

.hero .article {
    background: #fff;
    padding: 10px;
    max-width: 40vw;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .hero .article:last-child {
        display: none;
    }
}

.hero .article a {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}

.hero .article .article-img {
    max-height: unset;
    height: 100px;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
}

@media (min-width: 768px) {
    .hero .article .article-img {
        flex: 0 1 100px;
    }
}

@media (min-width: 992px) {
    .hero .article .article-img {
        max-height: unset;
    }
}

.hero .article .article-img img {
    border-radius: 5px;
    object-fit: cover;
}

.hero .article .article-time {
    font-size: 12px;
    margin-bottom: 0.5rem;
    color: #000;
}

.hero .article .article-title {
    font-size: 18px;
    margin-bottom: 0.5rem;
    max-height: 2.6875rem;
    overflow: hidden;
}

.hero .article .article-desc {
    font-size: 12px;
    display: -webkit-box;        /* fallback pro WebKit */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;       /* počet řádků */
    line-clamp: 3;               /* moderní syntax (specifikace) */
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.hero .article .article-sublink {
    font-size: 12px;
    color: #cc9429;
    margin-bottom: 0.5rem;
}

.hero .article .article-money {
    font-size: 12px;
}

.article .article-sublink {
    color: #cc9429;
}

.article-money {
    font-size: 14px;
}

/* Kontakt */
.contact {
    padding-top: 50px;
    background: #1a1a1a;
    color: #fff;
    max-width: 100%;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

.contact h2 {
    color: #fff;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap; /* aby se na mobilu složilo pod sebe */
}

.contact-info {
    flex: 1 1 300px;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
    gap: 1rem;
    font-size: 1rem;
}

.fa-solid, .fas {
    font-weight: 900;
    font-size: 22px;
    color: #cc9429;
}

.contact-item div {
    color: #adb5bd;
    line-height: 1.6;
}

.contact-item strong {
    color: #fff;
    display: block;
    margin-bottom: 0.3rem;
}

/* Instagram profil – úprava pozice embed */
.instagram-wrapper {
    flex: 1 1 300px;
    display: flex;
    justify-content: flex-end; /* Instagram vpravo */
}


/* Footer */
.footer {
    background: #36383c;
    color: #f4f1eb;
    text-align: center;
    padding: 1.5rem;
}

.footer p {
    opacity: 0.8;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 1rem;
}

.facebook-icon {
    width: 30px;
    height: auto;
    vertical-align: middle;
    border-radius: 50%;
    align-items: center;
    transition: opacity 0.3s ease;
}

.facebook-icon:hover {
    opacity: 0.8;
}

.instagram-icon {
    width: 37px;
    height: auto;
    vertical-align: middle;
    transition: opacity 0.3s ease;
}

.instagram-icon:hover {
    opacity: 0.8;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.social-icon:hover {
    background-color: #cc9429;
    color: #222;
    transform: translateY(-5px);
}

/* Hamburger */

.hamburger {
    all: unset;
    display: flex;
    justify-content: flex-end;
    font-size: 2rem;
    color: #cc9429;
    cursor: pointer;
    line-height: 1;

    @media (min-width: 992px) {
        display: none;
    }
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.instrument-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.instrument {
    display: flex;
    flex-direction: column;
    gap: 20px 30px;
}

.instrument-title {
    color: #cc9429;
    font-size: 2.5rem;
}

.instrument .instrument-img {
    min-width: 200px;
    max-width: 250px;
}

@media (min-width: 768px) {
    .instrument .instrument-img {
        flex: 0 1 200px;
    }
}

.instrument .instrument-img img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.instrument .instrument-p:not(:last-child) {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .instrument {
        flex-direction: row;
    }
}

.article-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.article {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-direction: column;
}

@media (min-width: 768px) {
    .article {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .article-img {
        flex: 0 1 200px;
    }
}

.article-img img {
    border-radius: 10px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-img a {
    border-radius: 10px;
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 200px;
}

@media (min-width: 768px) {
    .article-img a {
        height: unset;
        max-height: 170px;
    }
}

.article-right {
    flex: 1;
}

.article-title {
    color: #cc9429;
    text-align: left;
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-title a {
    color: #cc9429;
    text-decoration: none;
}

.article-title a:hover {
    text-decoration: underline;
}

.article-desc {
    font-size: 14px;
    line-height: 1.5;
}

.article-subdesc a,
.article-money,
.article-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-subdesc a i,
.article-money i,
.article-time i {
    font-size: 14px;
    text-decoration: none;
}

.article-time,
.article-subdesc a {
    font-size: 0.875rem;
}

.article-subdesc a span,
.article-money span,
.article-time span {
    display: inline-block;
    text-align: center;
    width: 15px;
    flex-shrink: 0;
}

.google-calendar {
    position: relative;
    height: 0;
    width: 100%;
    padding-bottom: 50%;
    margin-top: 3rem;
}

.google-calendar iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
