@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Source+Sans+Pro:wght@400;600&display=swap');


:root {
--accent-dark: #4b3e2e;
--accent-light: #a6907c;
--accent-muted: #e2d7c3;
--accent-green-dark: rgb(65, 69, 59);
--accent-green: rgba(95, 101, 85);
--accent-yellow: rgba(243, 193, 70);
--accent-yellow-mellow: rgba(231, 215, 173, 0.8);
--accent-yellow-light: rgba(243, 193, 70, 0.2);
--bg: #fefcf9;
}
@font-face {
  font-family: 'Slackey';
  src: url('/assets/fonts/Slackey-Regular.ttf') format('truetype'),
       url('/assets/fonts/Slackey-Regular.ttf') format('truetype');
}

body {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--bg);
    color: var(--accent-dark);
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    right: 2rem;
    top: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    z-index: 11;
}

.lang-link {
    color: var(--accent-yellow);
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.lang-link:hover {
    background-color: var(--accent-yellow-light);
}

.lang-current {
    color: var(--accent-yellow);
    font-weight: 600;
    padding: 0.3rem 0.6rem;
}

/* Hide top language switcher on tablet/mobile, show inside menu instead */
@media (max-width: 1080px) {
    .lang-switcher:not(.mobile-in-menu) {
        display: none;
    }
}

/* Mobile-in-menu language switcher styling */
.lang-switcher.mobile-in-menu {
    position: static;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--accent-yellow-mellow);
    margin-top: 0.5rem;

}
.mobile-in-menu{
    margin-top: 0 !important;
}
@media (min-width: 1080px) {
    .lang-switcher.mobile-in-menu {
        display: none;
    }
}
.lang-switcher.mobile-in-menu .lang-link {
    color: var(--accent-dark);
}

.lang-switcher.mobile-in-menu .lang-current {
    color: var(--accent-dark);
}

::selection{
    background-color: var(--accent-green);
    color: var(--accent-yellow);
}
strong{
    color: var(--accent-green-dark);
    font-weight: 900;
    /* text-decoration: underline var(--accent-yellow); */
    background-color: var(--accent-yellow-mellow);
}
p, ul{
    font-size: 1rem;
}
@media screen and (max-width: 600px) {
    p, ul{
        font-size: 1.2rem;
    }
}
.header-desktop{
    display: flex;
    justify-content: space-around;
    width: calc(100% - 5rem);
}
.header-desktop img{
    position: absolute;
    padding-top: 16px;
    height: 175px;
    box-shadow: none;
    filter: drop-shadow(0 4px 10px var(--accent-dark));
}
.header-mobile{
    display: none;
}
.header-mobile img{
    position: absolute;
    box-shadow: none;
    height: 130px;
    /* @media screen and (max-width: 1080px) {
        height: 145px;
    }
    @media screen and (max-width: 433px) {
        height: 125px;
    }
    @media screen and (max-width: 389px) {
        height: 86px;
    } */
}
@media (max-width:1080px) {
  .header-mobile img {
    height: 145px;
  }
}

@media (max-width:433px) {
  .header-mobile img {
    height: 125px;
  }
}

@media (max-width:389px) {
  .header-mobile img {
    height: 86px;
  }
}
header, nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--accent-green);
    position: sticky;
    top: 0;
    z-index: 10;
    /* @media screen and (max-width: 600px) {
        padding: 1rem;
    }
    @media screen and (max-width: 389px){
        padding: 0.5rem 1rem;
    } */
}

@media (max-width: 600px) {
  header, nav {
    padding: 1rem;
  }
}

@media (max-width: 389px) {
  header, nav {
    padding: 0.5rem 1rem;
  }
}
nav.mobile{
    padding: .5rem;
}
h1, h2 {
    font-family: 'Slackey', sans-serif;
    margin: 0.5rem 0;
}
/* h1{
    color: var(--accent-yellow);
    line-height: 100px;
    font-size: 2.2rem;
    @media screen and (max-width: 1080px) {
        font-size: 24px;
        line-height: 32px;
        margin-left: 150px;
    }
    @media screen and (max-width: 433px) {
        font-size: 16px;
        margin-left: 125px;
        line-height: 24px;
    }
    @media screen and (max-width: 389px) {
        font-size: 12px;
        line-height: 14px;
        margin-left: 86px;
    }
} */
 h1{
  color: #FFD400;
  color: var(--accent-yellow);
  line-height: 100px;
  font-size: 2.2rem;
}

@media (max-width:1080px){
  h1{font-size:24px;line-height:32px;margin-left:150px;}
}
@media (max-width:433px){
  h1{font-size:16px;line-height:24px;margin-left:125px;}
}
@media (max-width:389px){
  h1{font-size:12px;line-height:14px;margin-left:86px;}
}
h2{
    color: var(--accent-green);
    font-size: 3.3rem;
    /* @media screen and (max-width: 1080px) {
        text-align: center;
    }
    @media screen and (max-width: 600px) {
        font-size: 36px;
    } */
}
@media (max-width:1080px) {
  h2 {
    text-align: center;
  }
}

@media (max-width:600px) {
  h2 {
    font-size: 36px;
  }
}
ul{
    padding-left: 0;
    list-style: none;
}
li{
    padding-bottom: 16px;

}
ul.compact-ul li{
    padding-bottom: 0;
}
nav ul {
display: flex;
gap: 1rem;
list-style: none;
padding: 0;
margin: 0;
}


nav ul li a {
    text-decoration: none;
    font-weight: 600;
    color: var(--accent-dark);
    transition: color 0.3s;
}


nav ul li a:hover {
    color: var(--accent-green);
}


/* nav.mobile {
display: none;} */

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--accent-yellow);
    color: var(--accent-green);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.active{
    position: absolute;
    display: flex;
    right: 0;
    top: 3.4rem;
}
.mobile-menu a {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--accent-yellow-mellow);
    font-weight: 600;
    color: var(--accent-dark);
}
.mobile-in-menu a {
   border-bottom: none;
    border-radius: 5px;
    background-color: var(--accent-yellow-mellow);
}
/* .mobile-in-menu span{

} */

@media (max-width: 1080px) {
.header-desktop, nav.desktop {
    display: none;
}
.header-mobile, nav.mobile {
    display: flex;
}
}

.hamburger{
    color: var(--accent-yellow);
    background-color: var(--accent-green-dark);
    cursor: pointer;
    font-size: 1.6rem;
    padding: 4px;
    padding-bottom: 6px;
}


main {
    padding: 1rem 2rem 2rem 2rem;
    max-width: 960px;
    margin: 0 auto;
}
/* @media (max-width: 768px) {
    main{
        padding: 4rem 2rem 2rem 2rem;
    }
} */


img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#calendar {
    max-width: 960px;
    margin: 3rem auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    font-family: 'Source Sans Pro', sans-serif;
}


.fc {
    background-color: #fff;
    border: none;
    color: var(--accent-dark);
}


.fc-toolbar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--accent-green);
}


.fc-button {
    background: var(--accent-yellow);
    border: none;
    padding: 0.4rem 1rem;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s;
}


.fc-button:hover {
    background: var(--accent-light);
    cursor: pointer;
}


.fc-daygrid-day-number {
color: var(--accent-green);
font-weight: 600;
}


.fc-event {
    background-color: var(--accent-yellow);
    border: none;
    color: var(--accent-green) !important;
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 0.85rem;
}
#iframe-holder{
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}