

:root {
    
    --bg-cream: #f9f5f0;    
    --card-white: #ffffff;  
    --text-dark: #2d2424;   
    --accent-yellow: #ffe600; 
    --accent-blue: #00a8ff;
    --accent-orange: #ff7f50;
    --accent-green: #2ecc71;
}


* {
    font-family: 'Fredoka', sans-serif ;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
}



.hero-wrapper {
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-card-rounded {
    background-color: var(--card-white);
    border-radius: 40px; 
   
    padding: clamp(20px, 4vw, 60px); 
    
    width: 100%;
    max-width: 1200px;
    
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}


.hero-big-title {
    font-family: 'Titan One';
   
    font-size: clamp(2rem, 5vw, 4.5rem); 
    line-height: 1;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 600;
    line-height: 1.4;
    color: #666;
    margin-bottom: 20px;
}


.badge-rotate {
    display: inline-block;
    background-color: var(--accent-green);
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.4em;
    padding: 0.3em 0.8em;
    border-radius: 50px;
    vertical-align: middle;
    transform: rotate(-8deg) translateY(-0.2em);
    margin: 0 0.2em;
    border: 2px solid white;
}

.badge-rotate.orange {
    background-color: var(--accent-orange);
    transform: rotate(8deg) translateY(-0.1em);
}


.btn-chunky {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    font-family: 'Titan One';
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    padding: 0.8em 2em;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 0 #e6ce00;


    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.1s, box-shadow 0.1s;
}

.btn-chunky:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #e6ce00;
    color: var(--text-dark);
}

.btn-chunky:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #e6ce00;
}

.hero-image-container {
    background-color: var(--accent-yellow);
    border-radius: 30px;
    width: 100%;
    
   
    aspect-ratio: 16 / 9; 
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    
   
    overflow: visible; 
}


.hero-stack-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero-stack-img {
    position: absolute;
    width: 65%;
    aspect-ratio: 4 / 3; 
    object-fit: cover; 
    border-radius: 20px;
    border: 4px solid #fff; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.img-back {
    z-index: 1;
    transform: rotate(-10deg) translate(-10px, 10px) scale(0.9);
    filter: brightness(0.9);
}


.img-front {
    z-index: 2;
    transform: rotate(5deg) translate(10px, -10px) scale(1);
}


.hero-image-container:hover .img-back {
    transform: rotate(-20deg) translate(-40px, 20px) scale(1);
    filter: brightness(1);
    z-index: 3;
}

.hero-image-container:hover .img-front {
    transform: rotate(10deg) translate(40px, -20px) scale(1.1);
}


.slogan-section {
    padding: 60px 0;
    background-color: var(--bg-cream);
}


.slogan-title {
    font-family: 'Titan One';
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    line-height: 1.1;
    text-transform: uppercase;
}


.title-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    color: white;
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 10px;
    font-size: 1.5rem;
}


.slogan-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    padding: 12px 20px;
    border-radius: 50px;
    
    font-family: 'Titan One';
    font-size: 1rem;
    color: var(--text-dark);
    text-transform: uppercase;
    
    transition: transform 0.2s;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.slogan-pill:hover {
    transform: scale(1.05);
}


.pill-number {
    background-color: var(--text-dark);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
}


.bg-pastel-brown { background-color: #d7ccc8; } 
.bg-pastel-purple { background-color: #d1c4e9; }
.bg-pastel-teal { background-color: #b2dfdb; }  
.bg-pastel-grey { background-color: #eceff1; }  
.bg-pastel-yellow { background-color: #fff9c4; }
.bg-pastel-peach { background-color: #ffccbc; } 




.product-section {
    padding: 80px 0;
    background-color: #fff;
}


.product-card-soft {
    background-color: var(--bg-cream);
    border-radius: 40px;
    padding: 25px;
    height: 100%;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
}


.product-card-soft:hover {
    transform: translateY(-10px);
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    background-color: #fff;
}


.card-img-box {
    background-color: #fff;
    border-radius: 30px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.03);
}

.card-img-product {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card-soft:hover .card-img-product {
    transform: scale(1.1) rotate(3deg);
}


.product-title {
    font-family: 'Titan One';
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.product-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 20px;
   
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.price-tag {
    font-family: 'Titan One';
    font-size: 1.3rem;
    color: var(--accent-orange);
}

.btn-icon-circle {
    width: 45px;
    height: 45px;
    background-color: var(--text-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-icon-circle:hover {
    background-color: var(--accent-green);
    color: var(--bg-cream);
}

.partner-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}


.partner-card-soft {
    background-color: #fff;
    border-radius: 30px;
    height: 140px;
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    
   
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    border: 2px solid transparent;
    
    transition: all 0.3s ease;
}


.partner-card-soft:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--accent-purple);
}


.partner-logo-img {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    
   
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}


.partner-card-soft:hover .partner-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}


.partner-text-placeholder {
    font-family: 'Titan One';
    color: #ccc;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.partner-card-soft:hover .partner-text-placeholder {
    color: var(--accent-purple);
}




.event-section {
    padding: 80px 0;
   
    background-color: #fff; 
    border-top: 2px dashed #eee;
}


.event-card-chunky {
    background-color: var(--bg-cream);
    border-radius: 40px;
    padding: 20px;
    margin: 20px 60px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}


.event-img-box {
    border-radius: 30px;
    overflow: hidden;
    height: 300px;
    width: 100%;
    position: relative;
    background-color: #fff;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card-chunky:hover .event-img {
    transform: scale(1.05);
}


.event-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.event-date-badge {
    display: inline-block;
    background-color: var(--accent-orange);
    color: white;
    font-family: 'Fredoka', sans-serif;
    padding: 6px 12px;


    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 15px;
    width: fit-content;
}

.event-title {
    font-family: 'Titan One';
    font-size: 1.8rem;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.event-desc {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
   
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.carousel-control-chunky {
    width: 50px;
    height: 50px;
    background-color: var(--accent-purple);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 0 #8c73d6;
    transition: transform 0.1s, box-shadow 0.1s;
}

.carousel-control-chunky:hover {
    background-color: var(--accent-purple);
    transform: translateY(-52%);
    box-shadow: 0 6px 0 #8c73d6;
    opacity: 1;
}

.carousel-control-chunky:active {
    transform: translateY(-48%);
    box-shadow: 0 0 0 #8c73d6;
}

.carousel-control-prev { left: 0; }
.carousel-control-next { right: 0; }



.page-header-container {
    padding: 60px 0 40px;
    text-align: center;
}

.page-title-big {
    font-family: 'Titan One';
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 20px;
}


.search-box-chunky {
    position: relative;
    max-width: 420px;
    margin: 0 auto 40px;
}

.form-control-chunky {
    width: 100%;
    border: var(--brutal-border) !important;
    box-shadow: var(--brutal-shadow) !important;
    border-radius: 15px !important; 
    padding: 12px 20px;
    padding-right: 55px; 
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: #fff;
}

.form-control-chunky:focus {
    transform: translate(-2px, -2px);
    box-shadow: var(--brutal-shadow-lg) !important;
    outline: none;
}

.btn-search-icon {
    position: absolute;
    right: 12px; 
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-color: var(--accent-yellow);
    border: 2px solid #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.1s ease;
    cursor: pointer;
}

.btn-search-icon:hover {
    background-color: var(--text-dark);
    color: var(--accent-yellow);
}

.btn-search-icon:active {
    transform: translateY(-50%) translate(2px, 2px);
}

.category-dropdown-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}


.brutal-dropdown-btn {
    min-width: 250px;
    border: 3px solid #000 !important;
    background-color: var(--accent-yellow) !important;
    color: var(--text-dark) !important;
    box-shadow: 4px 4px 0px #000 !important;
    border-radius: 15px !important;
    font-family: 'Titan One';
    padding: 12px 25px !important;
    transition: all 0.2s ease;
}

.brutal-dropdown-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000 !important;
}


.brutal-dropdown-menu {
    background-color: var(--bg-cream);
    border: 3px solid #000;
    box-shadow: 8px 8px 0px #000;
    border-radius: 15px;
    padding: 10px;
    margin-top: 10px !important;
    min-width: 100%;
}


.brutal-item {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 5px;
    transition: all 0.2s;
}

.brutal-item:hover {
    background-color: var(--accent-purple);
    color: var(--accent-yellow);
    transform: scale(1.02);
}


.brutal-item.active {
    background-color: var(--text-dark) !important;
    color: var(--accent-yellow) !important;
}

.btn-filter-pill.active {
    background-color: var(--text-dark);
    color: var(--accent-yellow);
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 var(--text-dark);
}

.cat-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-yellow);
    border: 3px solid #000;
    box-shadow: 3px 3px 0px #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: 0.1s;
}

.cat-nav-btn:active {
    box-shadow: 0px 0px 0px #000;
    transform: translateY(-50%) translate(3px, 3px);
}

.cat-nav-btn.prev { left: 0; }
.cat-nav-btn.next { right: 0; }





.btn-filter-pill {
    background-color: var(--accent-green);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    border-radius: 30px;
    padding: 10px 25px;
    font-family: 'Titan One';
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
   
    box-shadow: 4px 4px 0px var(--text-dark); 
    margin-bottom: 10px;
}


.btn-filter-pill:hover {
    color: var(--text-dark);
    background-color: var(--accent-yellow);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--text-dark);
}


.btn-filter-pill.active {
    background-color: var(--text-dark);
    color: var(--accent-yellow);
    border-color: var(--text-dark);
    box-shadow: 0px 0px 0px var(--text-dark);
    transform: translate(2px, 2px);
}


.btn-filter-pill.active:hover {
    opacity: 0.9;
}

.carousel-nav-mobile {
    display: none;
}   



.poyana-wave {
    fill: #6ae1f3 !important;
}

.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}







.wave-divider[style*="rotate(180deg)"] .fish-container {
    
    animation: swim-across-reverse 20s linear infinite !important;
    transform: rotate(180deg); 
    transform-origin: center;
}

@keyframes swim-across-reverse {
    from { transform: translateX(1500px) scale(0.8) rotate(180deg); }
    to { transform: translateX(-100px) scale(0.8) rotate(180deg); }
}

.grad-hero-slogan { fill: url(#grad1); }
.grad-slogan-product { fill: url(#grad2); }
.grad-product-partner { fill: url(#grad3); }
.grad-partner-event { fill: url(#grad4); }


section {
    margin-top: -1px; 
    border-bottom: none !important;
}

.moving-wave {
    animation: wave-move 10s linear infinite;
}



.event-card-soft {
  box-shadow: 6px 6px 0 #000;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.event-card-soft:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 #000;
}

.event-split__media {
  height: 100%;
  min-height: 220px;
  background: #f8f8f8;
  border-right: 3px solid #000;
}


.event-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-split__placeholder{
  height: 100%;
  min-height: 260px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.event-split__desc{
  display: -webkit-box;
  -webkit-line-clamp: 4;     
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-modal {
  max-height: 90vh;
}

.event-modal__body {
  display: flex;
  flex-direction: column;
  max-height: calc(90vh - 120px);
}

.event-modal__media {
  height: 280px;              
  border-bottom: 3px solid #000;
  background: #f8f8f8;
}

@media (max-width: 576px){
  .event-modal__media{ height: 220px; }
}

.event-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;          
  display: block;
}

.event-modal__placeholder{
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
}


.event-modal__desc {
  flex: 1;
  overflow: auto;
  min-height: 0;
  padding-right: 6px;         
}


.event-modal__desc::-webkit-scrollbar {
  width: 10px;
}
.event-modal__desc::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 10px;
}
.event-modal__desc::-webkit-scrollbar-track {
  background: #eee;
}

#eventModal .modal-body{
  max-height: 80vh;
  overflow-y: auto;
}


.event-modal__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;              
}

@keyframes wave-move {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}

@media (max-width: 768px) {

   .cat-nav-btn {
        display: none !important;
    }

   
   .brutal-dropdown-btn {
        width: 100%; 
        font-size: 0.9rem;
    }
  
    .category-slider-container {
        padding: 0; 
    }
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

   
    .event-card-chunky {
        margin: 0;
        border-radius: 25px;
        padding: 15px;
    }

    .event-img-box {
        height: 200px;
        border-radius: 20px;
        margin-bottom: 15px;
    }

    .event-title {
        font-size: 1.5rem;
    }

    .carousel-nav-mobile {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .carousel-control-chunky {
        position: static;
        transform: none;
    }

    .desktop-nav {
        display: none;
    }

    .search-box-chunky {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .product-card-soft {
        padding: 20px !important;
        margin-bottom: 10px;
        box-shadow: 6px 6px 0px #000 !important;
        border-radius: 30px !important;
    }


    .card-img-box {
        height: 200px !important;
        margin-bottom: 15px !important;
        border-radius: 20px !important;
    }

    .card-img-product {
        max-width: 70%; 
    }

    .product-title {
        font-size: 1.4rem !important;
        text-align: center;
    }

    .product-desc {
        display: block !important; 
        text-align: center;
        margin-bottom: 15px;
    }

    .price-tag {
        font-size: 1.2rem !important;
    }
}




@media (max-width: 991.98px) {
    
   
    .carousel-control-prev, 
    .carousel-control-next {
        display: none !important;
    }

   
    .carousel-nav-mobile {
        display: flex !important;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        position: relative;
        z-index: 10;
    }

   
  .carousel-nav-mobile .carousel-control-chunky {
    display: flex !important;
    align-items: center !important;     
    justify-content: center !important;  
    padding: 0 !important;              
    line-height: 1 !important;          
    position: static;
    transform: none;
    
   
    width: 50px !important; 
    height: 50px !important;
    border-radius: 50% !important;
}
   
    .product-card-soft {
        margin-bottom: 20px;
        box-shadow: 6px 6px 0px #000 !important;
    }

    .carousel-nav-mobile .carousel-control-chunky i {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
}