@font-face{
    font-family: "Bounded";
    src: url(../ttf/Bounded-Variable.ttf)

}
body{
    font-family: "Bounded", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff5ee;
}

*{
    font-family: "Bounded", sans-serif;
}

@media (max-width: 768px){
    .navbar{
        position: fixed;
        bottom: 0;
        top: auto;
        width: 100%;
        margin: 0 !important;
        border-radius: 0 !important;
    }
}

.navbar{
    background-color: #2E0910;
}

.navbar-brand{
    color: #fff5ee;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75em;
    cursor: pointer;
}

.navbar-brand:hover{
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 12px #ffd9b3);
}

.navbar-brand:hover img{
    transform: scale(1.05) rotate(-2deg);
}

.navbar-brand strong{
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-link{
    color: #fff5ee !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover{
    color: #ffd9b3 !important;
    text-shadow: 0 0 8px rgba(255, 217, 179, 0.6);
    transform: scale(1.02);
}

@media (max-width: 768px){
    .nav-link:hover{
        transform: scale(1);
    }
}

/* dropdown */
.dropdown-menu {
    background-color: #2E0910;
    border: 1px solid #ffd9b3;
    border-radius: 15px;
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideInDropdown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 10px !important;
}

@keyframes slideInDropdown {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: #fff5ee;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(255, 217, 179, 0.1);
    color: #ffd9b3;
    border-left-color: #ffd9b3;
    padding-left: 2rem;
    background-image: linear-gradient(90deg, rgba(255, 217, 179, 0.1) 0%, transparent 100%);
}
/* Banner styling */
.banner {
    height: 600px;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    background: rgba(46, 9, 16, 0.75);
    border-radius: 20px;
    padding: 2em;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 217, 179, 0.3);
    bottom: 5%;
    max-width: 600px;
    margin: 0 auto;
    left: 0;
    right: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.carousel-caption h5 {
    color: #fff5ee;
    font-weight: 700;
    font-size: 2em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1em;
}

@media (max-width: 768px) {
    .banner {
        height: 500px;
    }
    
    .carousel-caption {
        bottom: 5%;
        padding: 1.5em;
        width: 85%;
        margin: 0 auto;
    }
    
    .carousel-caption h5 {
        font-size: 1.4em;
        margin-bottom: 0.8em;
    }
    
    .cta-banner {
        padding: 0.6em 1.5em;
        font-size: 1em;
        width: 100%;
    }
}

.cta-banner{
    background: linear-gradient(135deg, #fff5ee 0%, #ffd9b3 100%);
    color: #2E0910;
    border: 2px solid #2E0910;
    padding: 0.85em 2.5em;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 2.5em;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(46, 9, 16, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    letter-spacing: 0.7px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-banner:hover::before{
    left: 100%;
}

.cta-banner:hover{
    background: linear-gradient(135deg, #ffd9b3 0%, #ffb380 100%);
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(46, 9, 16, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: #2E0910;
    letter-spacing: 1px;
}

.cta-banner:active{
    transform: scale(0.96);
    box-shadow: 0 2px 8px rgba(46, 9, 16, 0.25), inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* kosik */
.cart-item{
    display: flex;
    align-items: center;
    margin-left: 1em;
    height: 100%;
    padding-right: 1em;
}

.cart-link{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff5ee !important;
    transition: all 0.3s ease;
    padding: 0.5em 0.5em !important;
    height: 100%;
}

.cart-link i{
    font-size: 1.4em;
    transition: all 0.3s ease;
    color: #fff5ee;
}

.cart-link:hover i{
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 0 4px rgba(255, 245, 238, 0.2));
}

.cart-badge{
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 3s infinite;
}

@keyframes pulse{
    0%, 100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.05);
    }
}

.cart-link:hover{
    background-color: rgba(255, 245, 238, 0.05);
    border-radius: 50%;
}

/* Styly pro produktové karty */
.product-card {
    border: 2px solid #2E0910;
    border-radius: 15px;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 9, 16, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 9, 16, 0.2);
}

.product-image {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 1em;
    object-fit: contain;
    height: 250px;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.product-name {
    font-weight: 700;
    color: #2E0910;
}

.product-price {
    font-weight: bold;
    color: #2E0910;
    font-size: 1.25em;
    margin-bottom: 1em;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #2E0910 0%, #4a151e 100%);
    color: #fff5ee;
    border: 2px solid #2E0910;
    padding: 0.75em 1.5em;
    font-weight: bold;
    border-radius: 2.5em;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(46, 9, 16, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #4a151e 0%, #2E0910 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 9, 16, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: #fff5ee;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 0.75em;
    justify-content: flex-start;
    margin-bottom: 1em;
}

.sleva {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.2em;
    margin: 0;
    order: -1;
}

.sedasleva {
    color: #2E0910;
    text-decoration: line-through;
    opacity: 0.6;
    margin: 0;
    font-size: 0.95em;
}

/* Badge pro předprodej */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
    padding: 0.5em 1em;
    border-radius: 2.5em;
    font-weight: bold;
    font-size: 0.85em;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* footer */
.map{
    width: 100%;
    height: 30vh;
}

.wcm_foto{
    width: 20%;
}

/* Info Window Styling */
.info-window {
    width: 280px;
    padding: 1.2em;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    align-items: center;
}

.info-window img {
    width: 70%;
    border-radius: 6px;
}

.info-window h5 {
    color: #2E0910;
    font-weight: 700;
    margin: 0;
    font-size: 1em;
}

.info-window p {
    color: #2E0910;
    margin: 0;
    font-size: 0.9em;
    line-height: 1.4;
}

.info-window a {
    display: inline-block;
    background: linear-gradient(135deg, #2E0910 0%, #4a151e 100%);
    color: #fff5ee;
    padding: 0.6em 1.2em;
    border-radius: 2em;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.info-window a:hover {
    background: linear-gradient(135deg, #4a151e 0%, #2E0910 100%);
    transform: scale(1.05);
}

footer{
    background-color: #2E0910;
    color: #fff5ee;
    margin-top: 3em;
}

.footer-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em;
}

.footer-lane {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
}

.footer-info h3,
.footer-contact h3,
.footer-newsletter h3 {
    color: #ffd9b3;
    font-weight: 700;
    margin-bottom: 1em;
    font-size: 1.1em;
}

.footer-info ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info li,
.footer-contact li {
    margin-bottom: 0.5em;
}

.footer-info a,
.footer-contact a,
.footer-fyzcon a {
    color: #fff5ee;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-info a:hover,
.footer-contact a:hover,
.footer-fyzcon a:hover {
    color: #ffd9b3;
}

.footer-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5ee;
    border: 2px solid #ffd9b3;
    border-radius: 50%;
    font-size: 1.1em;
    color: #2E0910;
    transition: all 0.3s ease;
}

.footer-icon:hover {
    background: #ffd9b3;
    transform: scale(1.08);
    box-shadow: 0 3px 10px rgba(255, 217, 179, 0.4);
}

.footer-fyzcon p {
    margin: 0.5em 0;
    font-size: 0.95em;
}

.footer-newsletter form {
    display: flex;
    gap: 0.5em;
    margin-top: 1em;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.7em 1em;
    border: 2px solid #ffd9b3;
    border-radius: 2em;
    background-color: #fff5ee;
    color: #2E0910;
    font-weight: bold;
}

.footer-newsletter input::placeholder {
    color: #999;
}

.footer-newsletter button {
    padding: 0.7em 1.5em;
    background: linear-gradient(135deg, #ffd9b3, #ffb380);
    color: #2E0910;
    border: none;
    border-radius: 2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 217, 179, 0.4);
}

/* RESPONZIVNI FOOTER */
@media (max-width: 768px) {
    footer {
        padding: 2em 1.5em;
        margin-top: 2em;
    }

    .footer-cont{
        margin-bottom: 2em;
    }

    .footer-lane {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .footer-info h3,
    .footer-contact h3,
    .footer-newsletter h3 {
        font-size: 1em;
        margin-bottom: 0.8em;
    }

    .footer-newsletter form {
        flex-direction: column;
        gap: 0.8em;
    }

    .footer-newsletter input,
    .footer-newsletter button {
        width: 100%;
        padding: 0.65em 1em;
        font-size: 0.9em;
    }
}