:root {
    --above-menu-text: #96D323;
    --above-menu-mouse-over: #808080;
    --main-menu-a-color: #1b1b1b;
    --main-menu-mouse-over: #9F2C20;
    --main-menu-background: #951804;
    --main-menu-text: #fff;
    --main-menu-text-sel: #F67542;
    --main-menu-text-hover: #d0d0d0;
    --footer-color-background: #8F004B;
    --footer-color-text: #fff;
    --menu-image-background: url('../images/menu_back.png');
}

@font-face {
    font-family:'alittlepot';
    src:url(../fonts/alittlepot.ttf);
}

body {
    font-family: Verdana, Arial, sans-serif;
    font-weight: normal;
    font-size: medium;
}

h1 {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: green;
}

h2 {
    font-family: ALittlePot, Arial, sans-serif;
    font-size: 30px;
    font-weight: normal;
    color: #951804;
    line-height: 1.4em;
    margin: 0 0 .4em;
}

footer {
  text-align: center;
  padding: 3px;
  color: white;
    
   font-family: Verdana, Arial, sans-serif;
   font-weight: normal;
   font-size: small;
   color: var(--footer-color-text);
   /*width:1124px;*/
   margin: auto;
   background-color: var(--footer-color-background);
   /*height:102px;*/
   /*max-height:150px;*/
}

.banner-slides {
    display:none;
}

.banner-content{
    margin-left:auto;
    margin-right:auto
}
.banner-content{
    max-width:1950px
}

.animate-left{
    position:relative;
    animation:animateleft 3.2s
}

@keyframes animateleft{
    from{
        left:-250px;
        opacity:0.6
    }
    to{
        left:0;
        opacity:1
    }
}
/*
@keyframes fadeIn {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}

.fade-in-element {
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}
*/


.main-box {
    display: flex;
    width: 100%;
    background: #ffffff;
    justify-content: center;
    align-items: center;
}

.main-text-box {
    display: inline-block;
    background: #fffffe;
    width: 80%;
    margin: 7px;
    padding: 6px;
    justify-content: center;
    align-items: center;
}

.main-map-box {
    display: inline-block;
    background: #ffffff;
    width: 80%;
    max-width: 600px;
    margin: 7px;
    padding: 6px;
    justify-content: center;
    align-items: center;
}

/********** masonry grid >>>>>>>>>>>>> ******************/

.grid {
  max-width: 1460px;
}

/* clearfix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- grid-item ---- */

.grid-item {
   width: 342px;
   height:auto;
   margin: 6px;
   margin-bottom: 16px;
   padding: 4px;
   border: 1px solid grey;
   background-color: #F2F2E8;  
   float: left;
   font-family: Verdana, Arial, sans-serif;
   font-size: medium;
   color: #606060;
   border-style:solid;
   border-width:0px;
   background-color: rgb(242,242,232);
   -khtml-border-radius:4px; -ms-border-radius:4px; -o-border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px; border-radius:4px;
   -khtml-box-shadow:rgba(0,0,0,0.3) 0 1px 2px; -ms-box-shadow:rgba(0,0,0,0.3) 0 1px 2px; -o-box-shadow:rgba(0,0,0,0.3) 0 1px 2px; -moz-box-shadow:rgba(0,0,0,0.3) 0 1px 2px; -webkit-box-shadow:rgba(0,0,0,0.3) 0 1px 2px; box-shadow:rgba(0,0,0,0.3) 0 1px 2px;
}
/********** <<<<<<<<<<<<<<<< masonry grid ******************/

.responsive-img {
    width: 100%;
    height: auto; /* maintain aspect ratio */
}

.to-top-icon {
   position: fixed;
   bottom: 20px;
   right: 20px;
   z-index: 1;
}

/* Basic grid */
.shop-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Card styling */
.shop-card {
    border: 1px solid #ddd;
    padding: 15px;
    flex: 1 1 350px;
    max-width: 400px;
    box-sizing: border-box;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.shop-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.shop-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.shop-card h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
}

.shop-card p {
    font-size: 0.95em;
    line-height: 1.4;
    max-height: 15.0em; /* ~5 lines */
    overflow: hidden;
    position: relative;
}

.shop-card p.expanded {
    max-height: none;
}

.shop-card .more-toggle {
    display: block;
    margin-top: 5px;
    font-size: 0.85em;
    color: #007bff;
    cursor: pointer;
    user-select: none;
    text-decoration: underline;
}

.shop-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.shop-link:hover {
    text-decoration: underline;
}
