/* :root {
    --primaryBackground: #fffffe;
    --headline: #094067;
    --paragraph: #5f6c7b;
    --button:#3da9fc;
    --buttonText: #fffffe;
    --stroke: #094067;
    --main: #fffffe;
    --highlight:#3da9fc;
    --secondary: #90b4ce;
    --tertiary: #ef4565;
} */

/* :root {
    --primaryBackground: #faeee7;
    --headline: #33272a;
    --paragraph: #594a4e;
    --button:#ff8ba7;
    --buttonText: #33272a;
    --stroke: #33272a;
    --main: #fffffe;
    --highlight:#ff8ba7;
    --secondary: #ffc6c7;
    --tertiary: #c3f0ca;
} */
 
:root {
    --primaryBackground: #eff0f3;
    --headline: #0d0d0d;
    --paragraph: #2a2a2a;
    --button:#ff8e3c;
    --buttonText: #0d0d0d;
    --stroke: #0d0d0d;
    --main: #eff0f3;
    --highlight:#ff8e3c;
    --secondary: #fffffe;
    --tertiary: #d9376e;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Libertinus Serif", serif;
}

body {
   min-height: 100vh;
   width: 100%;
   font-size: 16px;
   background: var(--primaryBackground);
   color: var(--paragraph);
   display: flex;
   flex-direction: column;  
   zoom: 0.75;
}
.content {
    width: 100%;
    zoom: 150%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    display: block;  /* Override flex from container */
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    font-size: 1rem;
}

.balanced {
    text-align: justify;
    hyphens: auto;
}


h1, h2, h3, h4, h5, h6 {
    font-family: "Libertinus Serif", serif;
    color: var(--headline);
}


.header{
    width: 100%;
    text-align: center;
    padding: 24px;
    background-color: var(--secondary);
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.15);
} 

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .filters select {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
  }
  .filters button {
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: var(--tertiary);
    cursor: pointer;
  }
  

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;    
}


.item-container {
    position: relative;
    margin: 24px;
    width: 320px;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.15);
    /* cursor: pointer; */
    border: 2px solid var(--stroke);
    background-color: var(--secondary);

}

.img-container, .body-container {
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;  
}

.img-container{
    width: 100%;
}

.body-container{
    position: relative;
}

.overlay{
    position: relative;
    width: 100%;
    height: 250px;
    background-color: var(--highlight);
    opacity: 0;
    transition: height linear 0.4s, opacity linear 0.2s;
}

.item-container:hover .overlay{
    opacity: 1;
    height: 50px;

}

.event-info {
    background-color: var(--primaryBackground);
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    padding: 4px;
    height: 1000px;
}

.title,.price,.info-date{
    color: var(--highlight);
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 12px;
}

.info{
    letter-spacing: 0.5px;
    margin-bottom: 6px;

}

.seperator{
    width: 20;
    height: 6px;
    background-color: var(--highlight);
    margin-bottom: 16px;
}

.additional-info{
    border-top: 1px solid #ccc;
    margin-top: 12px;
    padding: 28px;
    padding-bottom: 0;
}

.additional-info .info{
    font-size: 0.9em;
    margin-bottom: 20px;
    text-align: center;
}

.info i{
    color: var(--highlight);
    font-size: 1.1em;
    margin-right: 4px;
}

.info span{
    color:#17537a;
    font-weight: bold;
}

.action {
    color: var(--primaryBackground);
    border: 3px solid #fff;
    background-color: var(--button);
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%);
    width: 60%;
    outline:none;
    cursor: pointer;
    padding:12px;
    text-transform: uppercase;
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 2px;
    transition: background-color 0.4s,top 0.4s;;
}

.item-container:hover .action{
    top: 5px;

}

.action:hover{
    background-color: rgba(255, 255, 255, 0.2);
}

.hidden {
  display: none;
}

.month-header {
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-bottom: 3px solid var(--main);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--buttonText);
}

.navbar {
    background-color: var(--tertiary);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    color: var(--stroke);
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--stroke);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--highlight);
}

.nav-link.active {
    color: var(--main);  /* Gold highlight for current page */
    font-weight: bold;
}