:root {
 /* Colours */
 --accent-color: #F62E24;
 --black: #000000;
 --light-gray: #F8F9FA;
 --orange-color: #FF9720;
 --primary-color: #000000;
 --secondary-color: #004237;
 --yellow-color: #FFC90B;
 --white: #FFFFFF;
 /* Bento colours */
 --cor1: #6A4C93;
 --cor2: #1982C4;
 --cor3: #8AC926;
 --cor4: #FFC90B;
 --cor5: #FF595E;
 --cor6: #5C2D91;
 /* Fonts */
 --heading-font: "Luckiest Guy", cursive, "Times New Roman", cursive, sans-serif;
 --primary-font: "Outfit", sans-serif, "Arial", "Helvetica", sans-serif;
 /* Transitions */
 --transition-default: all 0.15s ease-out 0.15s;
}
/* Selection */ ::selection {
 background-color: var(--accent-color);
 color: var(--white);
}
/* =====================================================
   Common
===================================================== */
html, body {
 font-family: var(--primary-font);
 scroll-behavior: smooth;
}
body {
 overflow-x: hidden;
}
/* Typography */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
 font-family: var(--heading-font);
 text-transform: uppercase;
}
a {
 color: var(--primary-color);
 display: inline-block;
}
blockquote {
 border-left: 3px solid var(--primary-color);
 margin: 1rem 0 0 1rem;
 padding: 1rem 0 1rem 1.5rem;
}
blockquote sup {
 color: var(--accent-color);
}
.bigger {
 font-size: clamp(1.2rem, 4vw, 1.8rem);
 line-height: 1.2;
}
/* Interactive elements */
button:focus:not(:focus-visible) {
 box-shadow: none;
}
/* Layout */
.wrapper {
 overflow-x: hidden;
}
/* Lists */
ul {
 list-style: none;
 margin: 0;
 padding: 0;
}
/* Media */
img {
 display: block;
 height: auto;
 max-width: 100%;
 width: 100%;
}
/* =====================================================
   Animation effects
===================================================== */
/* Background gradient animation */
.gradient-background {
 overflow: hidden;
 position: relative;
}
.gradient-background::before {
 animation: rotate 30s linear infinite;
 aspect-ratio: 1/1;
 background: conic-gradient(#F62E24, #FF851B, #FFDD00, #2ECC40, #0074D9, #B00DC9, #F62E24);
 background-color: #0074D9;
 border-radius: 50%;
 content: "";
 position: absolute;
 transform-origin: center;
 width: 300%;
 z-index: 0;
}
@keyframes rotate {
 to {
  transform: rotate(360deg);
 }
}
/* Fireflies animation */
.fireflies {
 height: 100%;
 left: 0;
 position: absolute;
 top: 0;
 width: 100%;
 z-index: 0;
}
.firefly {
 animation: twinkle ease-in-out infinite;
 background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
 border-radius: 50%;
 height: 6px;
 opacity: 0;
 position: absolute;
 width: 6px;
}
@keyframes twinkle {
 0% {
  opacity: 0;
  transform: translate(0, 0);
 }
 50% {
  opacity: 1;
 }
 100% {
  opacity: 0;
  transform: translate(var(--x, 0), var(--y, 0));
 }
}
/* Ink Trail Mouse Cursor Effect */
.ink-effect-container {
 bottom: 0;
 left: 0;
 pointer-events: none;
 position: fixed;
 right: 0;
 top: 0;
 z-index: 50;
}
.ink-drop {
 animation: fade-out 2s forwards;
 border-radius: 50%;
 opacity: 0.8;
 position: absolute;
 transform: translate(-50%, -50%);
}
@keyframes fade-out {
 0% {
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(1);
 }
 100% {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.5);
 }
}
/* Upgrade carousel transition */
.carousel-inner {
 transform: translateZ(0);
 will-change: transform;
}
.carousel-item {
 inset: 0;
 position: absolute;
}
.carousel-item.active {
 position: relative;
 z-index: 1;
}
.carousel-control-next-icon {
 background-image: url("../img/content/arrow-right.svg");
 height: 4rem;
 width: 100%;
}
.carousel-control-prev-icon {
 background-image: url("../img/content/arrow-left.svg");
 height: 4rem;
 width: 100%;
}
/* =====================================================
   Navigation
===================================================== */
.header {
 left: 0;
 position: absolute;
 top: 0;
 width: 100%;
 z-index: 9;
}
.header .lang {
 display: flex;
 justify-content: end;
 line-height: 2.5rem;
 margin-left: auto;
 margin-right: auto;
 max-width: 1336px;
 padding-left: 2.5rem;
 padding-right: 2.5rem;
}
.header .lang a {
 font-weight: 700;
 padding-left: 1rem;
 padding-right: 1rem;
 text-decoration: none;
}
.header .lang a:hover {
 text-decoration: underline;
}
.header .lang a.active {
 color: #B30000;
}
/* =====================================================
   Hero
===================================================== */
.hero-section {
 align-items: center;
 display: flex;
 height: 100%;
 justify-content: center;
 margin: 0 auto;
 max-width: 1336px;
 min-height: 900px;
 width: 100%;
}
.hero-section .grid {
 display: grid;
 gap: 2.5rem;
 grid-template-columns: repeat(4, 1fr);
 grid-template-rows: repeat(4, 1fr);
 height: 100svh;
 padding: 2.5rem;
 width: 100%;
}
.hero-section .grid .grid-item {
 align-items: center;
 border-radius: 1.5rem;
 display: flex;
 justify-content: center;
 padding: 2.5rem;
 position: relative;
}
.hero-section .grid .grid-item.agenda, .hero-section .grid .grid-item.gallery {
 background-color: #72DDF9;
 grid-column: span 2;
 grid-row: span 1;
 text-decoration: none;
}
.hero-section .grid .grid-item.agenda .heading h2, .hero-section .grid .grid-item.gallery .heading h2, .calendar-section .heading h3 {
 line-height: 1.1;
 margin-bottom: 0;
 text-align: center;
 text-shadow: 0 0.1em 0.25vw #000, 0.05em -0.03em 0 #000, 0.05em 0.005em 0 #000, 0em 0.08em 0 #000, 0.05em 0.08em 0 #000, 0px -0.03em 0 #000, -0.03em -0.03em 0 #000, -0.03em 0.08em 0 #000, -0.03em 0 0 #000;
}
.hero-section .grid .grid-item.agenda .heading h2, .hero-section .grid .grid-item.gallery .heading h2 {
 color: var(--white);
 font-size: clamp(1.2rem, 8.5vw, 2.5rem);
}
.hero-section .grid .grid-item.agenda::before, .hero-section .grid .grid-item.gallery::before {
 border-color: #72DDF9 transparent transparent transparent;
 border-style: solid;
 border-width: 20px 10px 0 10px;
 bottom: -20px;
 content: "";
 height: 0px;
 left: 50%;
 position: absolute;
 transform: translateX(-50%) rotate(0deg);
 width: 0px;
}
.hero-section .grid .grid-item.credits {
 background-color: #72DDF9;
 grid-column: span 2;
 grid-row: span 1;
}
.hero-section .grid .grid-item.credits p {
 margin-bottom: 0;
 text-align: center;
}
.hero-section .grid .grid-item.hero-image {
 grid-column: span 2;
 grid-row: span 4;
 height: 100%;
 padding: 1.5rem;
}
.hero-section .grid .grid-item.hero-image img {
 object-fit: contain;
 object-position: center;
 position: relative;
 transform: scale(1.35);
 z-index: 1;
}
.hero-section .grid .grid-item.hero-social {
 background-color: #F0ED17;
 grid-column: span 2;
 grid-row: span 1;
}
.hero-section .grid .grid-item.hero-text {
 background-color: #BCFE1C;
 grid-column: span 2;
 grid-row: span 2;
 min-height: 300px;
 text-align: center;
}
.hero-section .grid .grid-item.hero-text p {
 max-width: 480px;
}
.hero-section .grid .grid-item.hero-text p:last-of-type {
 margin-bottom: 0;
}
.hero-section .grid .grid-item.hero-text:before {
 border-color: #BCFE1C transparent transparent transparent;
 border-style: solid;
 border-width: 20px 10px 0 10px;
 bottom: -20px;
 content: "";
 height: 0px;
 left: 50%;
 position: absolute;
 transform: translateX(-50%) rotate(0deg);
 width: 0px;
}
.hero-section .grid .social-links {
 display: flex;
 gap: 1rem;
 justify-content: space-between;
 margin: 0;
 padding: 0;
 width: 100%;
}
.hero-section .grid .social-links a {
 align-items: center;
 cursor: pointer;
 display: flex;
 justify-content: center;
 width: 100%;
}
.hero-section .grid .social-links li {
 flex: 1;
 text-align: center;
}
.hero-section .grid .social-links img {
 max-width: 96px;
 object-fit: contain;
 object-position: center;
 width: 65%;
}
.hero-section .carousel {
 z-index: 2;
}
.hero-section .heading h1 {
 color: var(--white);
 font-size: clamp(1.5rem, 6.5vw, 2.8rem);
 line-height: 1.1;
 margin-bottom: 1rem;
 padding: 0 0.5rem;
 text-align: center;
 text-shadow: 0 0.1em 0.25vw #000, 0.05em -0.03em 0 #000, 0.05em 0.005em 0 #000, 0em 0.08em 0 #000, 0.05em 0.08em 0 #000, 0px -0.03em 0 #000, -0.03em -0.03em 0 #000, -0.03em 0.08em 0 #000, -0.03em 0 0 #000;
}
.hero-section .heading h1 span {
 display: block;
}
@media (max-width: 40em) {
 .hero-section .grid .social-links {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
 }
 .hero-section .grid .social-links li {
  width: 100%;
 }
 .hero-section .grid .social-links img {
  margin: 1rem 0;
 }
}
/* =====================================================
   Bento Mansory Gallery
===================================================== */
.masonry-gallery {
 margin: 0 auto;
 max-width: 1336px;
 padding: 2.5rem;
 width: 100%;
}
.masonry-gallery .heading {
 display: block;
 text-align: center;
}
.masonry-gallery .heading h2 {
 color: var(--cor4);
 font-size: clamp(2rem, 10vw, 3.5rem);
 line-height: 1.1;
 text-align: center;
 text-shadow: 0 0.1em 0.25vw #000, 0.05em -0.03em 0 #000, 0.05em 0.005em 0 #000, 0em 0.08em 0 #000, 0.05em 0.08em 0 #000, 0px -0.03em 0 #000, -0.03em -0.03em 0 #000, -0.03em 0.08em 0 #000, -0.03em 0 0 #000;
}
.masonry-gallery__grid {
 display: grid;
 gap: 2rem;
 grid-auto-flow: dense;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.masonry-gallery__item {
 border-radius: 1.5rem;
 overflow: hidden;
 position: relative;
 transition: transform 0.3s ease;
}
.masonry-gallery__item:hover {
 transform: scale(1.05);
}
.masonry-gallery__item--large {
 grid-column: span 2;
 grid-row: span 2;
}
.masonry-gallery__item--medium {
 grid-column: span 1;
 grid-row: span 1;
}
.masonry-gallery__item--small {
 grid-column: span 1;
 grid-row: span 1;
}
.masonry-gallery__image {
 aspect-ratio: 1/1;
 border-radius: 0.5rem;
 display: block;
 height: 100%;
 object-fit: cover;
 width: 100%;
}
.masonry-gallery__caption {
 background: none;
 bottom: 0;
 color: var(--white);
 left: 0;
 opacity: 0;
 padding: 1rem;
 position: absolute;
 right: 0;
 transform: translateY(100%);
 transition: transform 0.3s ease, opacity 0.3s ease;
 border-bottom-left-radius: 0.5rem;
 border-bottom-right-radius: 0.5rem;
}
.masonry-gallery__item:hover .masonry-gallery__caption {
 opacity: 1;
 transform: translateY(0);
}
.masonry-gallery__title {
 color: var(--white);
 font-size: clamp(1.25rem, 3.5vw, 1.8rem);
 margin-bottom: 0;
 text-shadow: 0 0.1em 0.25vw #000, 0.05em -0.03em 0 #000, 0.05em 0.005em 0 #000, 0em 0.08em 0 #000, 0.05em 0.08em 0 #000, 0px -0.03em 0 #000, -0.03em -0.03em 0 #000, -0.03em 0.08em 0 #000, -0.03em 0 0 #000;
}
.masonry-gallery__description {
 font-size: clamp(1rem, 2vw, 1.25rem);
 line-height: 1.1;
 margin: 0;
 text-shadow: 0 2px 2px rgba(0, 0, 0, 1);
}
@media (max-width: 768px) {
 .masonry-gallery__grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 }
 .masonry-gallery__item--large {
  grid-column: span 1;
  grid-row: span 1;
 }
}
@media (max-width: 576px) {
 .masonry-gallery__grid {
  grid-template-columns: 1fr;
 }
}
/* =====================================================
   Content
===================================================== */
.agenda-section {
 align-items: center;
 display: flex;
 justify-content: center;
 margin: 0px auto;
 max-width: 1336px;
 width: 100%;
}
.agenda-section .grid {
 display: grid;
 gap: 2.5rem;
 grid-template-columns: repeat(1, 1fr);
 grid-template-rows: repeat(1, 1fr);
 height: 100%;
 padding: 2.5rem;
 width: 100%;
}
.agenda-section .grid .grid-item {
 align-items: center;
 border-radius: 1.5rem;
 display: flex;
 justify-content: center;
 padding: 2.5rem;
 position: relative;
}
.agenda-section .grid .grid-item.agenda {
 background-color: #F0ED17;
 grid-column: span 1;
 grid-row: span 1;
}
.agenda-section .heading {
 display: block;
 text-align: center;
}
.agenda-section .heading h2 {
 color: var(--white);
 font-size: clamp(1.2rem, 8.5vw, 2.5rem);
 line-height: 1.1;
 margin-bottom: 0;
 text-align: center;
 text-shadow: 0 0.1em 0.25vw #000, 0.05em -0.03em 0 #000, 0.05em 0.005em 0 #000, 0em 0.08em 0 #000, 0.05em 0.08em 0 #000, 0px -0.03em 0 #000, -0.03em -0.03em 0 #000, -0.03em 0.08em 0 #000, -0.03em 0 0 #000;
}
/* =====================================================
   Events Calendar
===================================================== */
.calendar-section {
 align-items: center;
 display: flex;
 justify-content: center;
 margin: 0px auto;
 max-width: 1336px;
 width: 100%;
}
.calendar-section .grid {
 display: grid;
 gap: 2.5rem;
 grid-template-columns: repeat(1, 1fr);
 grid-template-rows: repeat(1, 1fr);
 height: 100%;
 padding: 2.5rem;
 width: 100%;
}
.calendar-section .grid .grid-item {
 align-items: center;
 border-radius: 1.5rem;
 display: flex;
 justify-content: center;
 padding: 2.5rem;
 position: relative;
}
.calendar-section .grid .grid-item.calendar {
 background: linear-gradient(135deg, #FFC313 0%, #FA5423 100%);
 grid-column: span 1;
 grid-row: span 1;
}
.calendar-section .heading h3 {
 color: var(--cor4);
 font-size: clamp(1.2rem, 8.5vw, 2.5rem);
}
.calendar-container {
 background: var(--white);
 border-radius: 1.5rem;
 margin: 0 auto;
 padding: 1.5rem;
}
.calendar-grid {
 --calendar-day-row-height: 3rem;
 --calendar-header-row-height: 2.5rem;
 display: grid;
 gap: 10px;
 grid-template-columns: repeat(7, 1fr);
 grid-template-rows: var(--calendar-header-row-height) repeat(6, var(--calendar-day-row-height));
 margin-top: 1.5rem;
}
.calendar-day {
 align-items: center;
 background: var(--light-gray);
 border: 2px solid transparent;
 border-radius: 0.75rem;
 cursor: pointer;
 display: flex;
 font-weight: 700;
 justify-content: center;
 min-height: var(--calendar-day-row-height);
 padding: 0.5rem 0;
 position: relative;
 transition: all 0.3s ease;
 font-size: clamp(1.2rem, 2.5vw, 1.35rem);
}
.calendar-day:hover {
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 transform: translateY(-2px);
}
.calendar-day.other-month {
 background: transparent;
 color: #CCC;
}
.calendar-day.today {
 background: var(--white);
 color: var(--cor2);
}
.calendar-day.full-occupied {
 background: var(--accent-color);
 border: 2px solid var(--accent-color);
 color: var(--white);
}
.calendar-day.half-occupied-morning {
 background: var(--yellow-color);
 border: 2px solid var(--yellow-color);
 color: var(--white);
}
.calendar-day.half-occupied-afternoon {
 background: var(--orange-color);
 border: 2px solid var(--orange-color);
 color: var(--white);
}
.calendar-day.today, .calendar-day.full-occupied.today, .calendar-day.half-occupied-morning.today, .calendar-day.half-occupied-afternoon.today {
 border: 2px solid var(--cor2);
}
.calendar-day-header {
 align-items: center;
 color: var(--cor2);
 display: flex;
 font-weight: 700;
 justify-content: center;
 min-height: var(--calendar-header-row-height);
 padding: 0.5rem;
 text-align: center;
 font-size: clamp(0.75rem, 3vw, 1.2rem);
}
.calendar-header {
 margin-bottom: 1.5rem;
 text-align: center;
}
.calendar-header h2 {
 color: var(--cor2);
 font-weight: 700;
 margin-bottom: 10px;
}
.calendar-section .carousel-control-next {
 right: -7rem;
 transform: translateY(20%);
}
.calendar-section .carousel-control-prev {
 left: -7rem;
 transform: translateY(20%);
}
.legend {
 background: var(--light-gray);
 border-radius: 1rem;
 margin-top: 1.5rem;
 padding: 20px;
}
.legend-item {
 align-items: center;
 display: flex;
 margin-bottom: 0.25rem;
 margin-top: 0.25rem;
 width: 50%;
}
.legend-color {
 align-content: center;
 aspect-ratio: 1 / 1;
 border: 2px solid;
 border-radius: 0.5rem;
 color: var(--white);
 display: flex;
 font-weight: 700;
 justify-content: center;
 line-height: calc(1.5rem - 4px);
 margin-right: 0.5rem;
 position: relative;
 width: 1.5rem;
 flex-shrink: 0;
}
.legend-color.full-occupied {
 background: var(--accent-color);
 border-color: var(--accent-color);
}
.legend-color.half-occupied-morning {
 background: var(--yellow-color);
 border-color: var(--yellow-color);
}
.legend-color.half-occupied-afternoon {
 background: var(--orange-color);
 border-color: var(--orange-color);
}
.legend-color.today {
 background: var(--white);
 border-color: var(--cor2);
 color: var(--cor2);
}
.legend-items {
 display: flex;
 flex-wrap: wrap;
}
.legend-text {
 color: #333;
}
.legend-title {
 color: var(--cor2);
 font-size: 1.2rem;
 font-weight: 700;
 margin-bottom: 1rem;
}
@media (max-width: 48em) {
 .calendar-container {
  border-radius: 1rem;
  padding: 0.5rem;
  width: 100%;
 }
 .calendar-section .grid {
  padding: 1.5rem;
 }
 .calendar-section .grid .grid-item {
  padding: 0.5rem;
 }
 .calendar-day {
  border-radius: 0.5rem;
 }
 .calendar-grid {
  --calendar-day-row-height: 2.5rem;
  --calendar-header-row-height: 1.75rem;
 }
 .calendar-day-header {
  padding: 0;
 }
 .carousel-control-prev, .carousel-control-next {
  display: none;
 }
}
/* =====================================================
   Footer
===================================================== */
.footer {
 align-items: center;
 display: flex;
 justify-content: center;
 margin: 0px auto;
 max-width: 1336px;
 width: 100%;
}
.footer .grid {
 display: grid;
 gap: 2.5rem;
 grid-template-columns: repeat(1, 1fr);
 grid-template-rows: repeat(1, 1fr);
 height: 100%;
 padding: 2.5rem;
 width: 100%;
}
.footer .grid .grid-item {
 align-items: center;
 border-radius: 1.5rem;
 display: flex;
 justify-content: center;
 padding: 2.5rem;
 position: relative;
}
.footer .grid .grid-item.credits {
 background-color: #72DDF9;
 grid-column: span 1;
 grid-row: span 1;
}
.footer .grid .grid-item.credits p {
 margin-bottom: 0;
 text-align: center;
}
/* =====================================================
   Media queries
===================================================== */
@media screen and (max-width: 74.9375em) {
 html, body {
  height: auto;
 }
 .hero-section {
  min-height: auto;
 }
 .hero-section .grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: auto;
  padding: 2.5rem 1.5rem;
 }
 .hero-section .grid .grid-item {
  flex-shrink: 0;
  min-height: auto;
  width: 100%;
 }
 .hero-section .grid .grid-item.hero-image, .hero-section .grid .grid-item.hero-text {
  height: auto;
 }
 .hero-section .grid .grid-item.hero-text {
  min-height: fit-content;
 }
 .hero-section .grid .grid-item.hero-image img {
  max-width: 480px;
  transform: scale(1.2);
 }
 .hero-section .grid .grid-item.credits span {
  display: block;
 }
 .bento-section .grid .grid-item {
  aspect-ratio: 1;
  background-position: center;
 }
}
@media screen and (min-width: 75em) {
 .hero-section .carousel {
  top: -5vh;
 }
 .hero-section .carousel-control-next, .hero-section .carousel-control-prev {
  bottom: 0;
  top: auto;
  transform: translateY(150%);
  width: 50%;
 }
}
/**/
