@import url(https://fonts.googleapis.com/css2?family=Agu+Display&family=Sedan:wght@400;600&display=swap);

@keyframes fade {
    0% {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.separation {
    position: fixed;
    top: 0
}

@media screen and (max-width:1118px) {
    .nav__menu {
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top .4s, opacity .3s;
        background-color: var(--main-color);
        z-index: 90
    }

    .dropdown__menu {
        position: static;
        background-color: var(--main-color-light);
        width: 100%
    }

    .dropdown__item.active .dropdown__menu {
        max-height: 1000px;
        transition: max-height .4s ease-in
    }
}

@media screen and (max-width:767px) {

    .dropdown__link,
    .dropdown__sublink,
    .nav__link {
        font-size: 28px;
        padding: 1.25rem 1.2rem
    }

    .dropdown__arrow {
        font-size: 1.5rem
    }

    .nav__logo {
        font-size: 20px
    }

    .nav__burger,
    .nav__close {
        font-size: 1.5rem
    }
}


:root {
    --main-color: hsla(275, 91, 13, 1);
    --main-color-light: hsl(271, 96%, 91%);
    --main-color-lighten: hsl(313, 92%, 95%);
    --body-font: 'Agu Display', sans-serif;
    --alternative-font: 'Sedan', sans-serif;
    --normal-font-size: 4.5rem;
    --font-regular: 600;
    --font-semi-bold: 800
}

a {
    color: #8C0F48;
    transition: color .3s;
    text-decoration: none
}

a:hover {
    color: #df04f7;
    text-decoration: underline
}

.large-icon {
    font-size: 2rem
}

@media screen and (min-width:1024px) {
    :root {
        --normal-font-size: 2m
    }
}

body {
    align-content: center;
    font-family: Agu Display, sans-serif;
    line-height: 1.6;
    padding: 20px;
    justify-content: center;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

ul {
    list-style: none
}

.header {
    z-index: 1000
}

@media screen and (max-width:1118px) {
    .nav__menu {
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top .4s, opacity .3s
    }

    .nav__menu::-webkit-scrollbar {
        width: 0
    }

    .nav__list {
        background-color: var(--main-color);
        padding-top: 1rem
    }
}

.nav__link:hover {
    font: bolder
}

.dropdown__link i,
.dropdown__sublink i,
.nav__logo i {
    font-size: 1.25rem;
    font-weight: initial
}

@media screen and (max-width:340px) {
    .container {
        margin-inline: 1rem
    }

    .nav__link {
        padding-inline: 1rem
    }
}

@media screen and (min-width:1118px) {
    .container {
        margin-inline: auto
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between
    }

    .nav__toggle {
        display: none
    }

    .nav__list {
        height: 100%;
        display: flex;
        column-gap: 3rem
    }

    .nav__link {
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: .25rem
    }

    .nav__link:hover {
        background-color: transparent;
        color: var(--main-color-light)
    }

    .dropdown__item,
    .dropdown__subitem {
        position: relative
    }

    .dropdown__menu {
        position: absolute;
        left: 0;
        top: 6rem
    }

    .dropdown__menu,
    .dropdown__submenu {
        max-height: initial;
        overflow: initial;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s, top .3s
    }

    .dropdown__link,
    .dropdown__sublink {
        padding-inline: 1rem 3.5rem
    }

    .dropdown__subitem .dropdown__link {
        padding-inline: 1rem
    }

    .dropdown__submenu {
        position: absolute;
        left: 100%;
        top: .5rem
    }

    .dropdown__item:hover .dropdown__menu {
        opacity: 1;
        top: 5.5rem;
        pointer-events: initial;
        transition: top .3s
    }

    .dropdown__subitem:hover>.dropdown__submenu {
        opacity: 1;
        top: 0;
        pointer-events: initial;
        transition: top .3s
    }
}

.numbertext,
.text {
    padding: 8px 12px;
    position: absolute
}

.text {
    color: #000000;
    font-size: 15px;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.numbertext {
    color: #ffffff;
    font-size: 12px;
    top: 0
}

.active,
.dot:hover {
    background-color: var(--main-color)
}

.fade {
    animation-name: fade;
    animation-duration: 3.5s
}

.year-section {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: fit-content
}

.year-header {
    background-color: var(--main-color);
    padding: 10px 15px;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    color: var(--white-color)
}

.year-header:hover {
    background-color: var(--main-color-light);
    transition: background-color .3s ease
}

.year-indicator {
    margin-left: 10px
}

.year-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    height: fit-content;
    padding-left: .5cm
}

.active-content {
    max-height: fit-content;
    overflow: visible
}

.intro {
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 4px solid var(--main-color)
}

.pdf-icon:before {
    content: "📄"
}

.year-indicator {
    float: right;
    font-weight: 700
}

.calendar-container {
    max-width: 1200px;
    margin: 0 auto
}

.calendar-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px
}

.month-container {
    flex: 1 0 calc(33.333% - 20px);
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(38, 7, 7, .1)
}

.month {
    background-color: var(--main-color);
    color: #fff;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 18px
}

.events-container {
    padding: 15px
}

.cal-event {
    padding: 10px;
    margin-bottom: 10px;
    background-color: #ffdbfb;
    border-left: 4px solid var(--main-color-light);
    border-radius: 4px
}

.cal-event:last-child {
    margin-bottom: 0
}

.date {
    font: 600;
    margin-bottom: 10px
}

.description {
    font-size: 14px;
    color: #282727
}

@media (max-width:900px) {
    .month-container {
        flex: 1 0 calc(50% - 20px)
    }
}

@media (max-width:600px) {
    .month-container {
        flex: 1 0 calc(100% - 20px)
    }
}

/* Table Styles */
/* Simple two-column table */
.table-container {
    display: flex;
    justify-content: center;
}

table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

th,
td {
    border: 1px solid #ccc;
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
}

thead th {
    background-color: #270340;
    color: #fff;
    font-weight: 600;
}

tbody tr:nth-child(even) {
    background-color: #f5e0ff;
}

.footer-section h3 {
    color: var(--white-color);
    color: rgb(23, 0, 23);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--main-color-light)
}

@media screen and (max-width:768px) {
    .footer-section {
        flex: 100%;
        margin-bottom: 2rem
    }

    .footer-container {
        flex-direction: column
    }
}

.time-line {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: var(--body-font)
}

.time-line h2 {
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 12px 20px;
    margin: 30px 0 15px;
    font-size: 24px;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .1)
}

.time-line>ul {
    padding-left: 0;
    list-style-type: none
}

.time-line>ul>li {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative
}

.time-line .date {
    font-weight: 700;
    color: var(--main-color);
    font-size: 18px;
    display: inline-block;
    margin-right: 10px
}

.time-line .title {
    font-weight: 700;
    color: var(--main-color-light)
}

.time-line>ul>li>ul {
    margin-top: 10px;
    margin-left: 25px;
    list-style-type: circle;
    padding-left: 20px
}

.time-line>ul>li>ul>li {
    margin-bottom: 8px;
    font-size: .95em
}

.time-line>ul>li>ul>li>ul {
    margin-top: 5px;
    list-style-type: disc;
    padding-left: 20px;
    font-size: .9em
}

@media screen and (max-width:767px) {

    .time-line .date,
    .time-line .title {
        font-size: 20px;
        display: block;
        margin-bottom: 5px
    }

    .time-line>ul>li>ul {
        margin-left: 15px
    }

    .time-line>ul>li>ul>li {
        margin-bottom: 12px
    }
}

@media screen and (max-width:600px) {
    table {
        border: 0
    }

    .year-header {
        font-size: 16px;
        padding: 8px 10px
    }

    .year-content {
        padding: 10px
    }
}

@media screen and (max-width:768px) {
    .footer-section {
        flex: 100%;
        margin-bottom: 2rem
    }

    .footer-container {
        flex-direction: column
    }
}

:root {
    --header-height: 3.5rem;
    --main-color: hsl(312, 100%, 12%);
    --main-color-light: hsl(304, 37%, 68%);
    --main-color-lighten: hsl(313, 92%, 95%);
    --white-color: #fff;
    --body-color: hsl(0, 0%, 100%);
    --body-font: "Agu Display", sans-serif;
    --normal-font-size: 1rem;
    --font-regular: 400;
    --font-semi-bold: 600;
    --z-tooltip: 10;
    --z-fixed: 100
}

@media screen and (min-width:1024px) {
    :root {
        --normal-font-size: 1.2rem
    }
}

*,
.mySlides img {
    margin: 0;
    padding: 0
}

* {
    box-sizing: border-box
}

.container {
    max-width: max-content;
    margin-inline: 1.5rem
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--main-color);
    box-shadow: 0 2px 16px rgba(14, 20, 32, 0.3);
    z-index: var(--z-fixed)
}

.main-bod {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 3rem;
    margin-top: 100px;
    flex: 1
}

.center-div {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    max-width: fit-content
}

.nav {
    height: var(--header-height)
}

.footer-section a,
.nav__burger,
.nav__close,
.nav__logo {
    color: var(--white-color)
}

.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-weight: var(--font-semi-bold);
    -webkit-tap-highlight-color: transparent
}

.footer-section a:hover,
.nav__logo:hover {
    color: var(--main-color-light)
}

.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px
}

.nav__burger,
.nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    cursor: pointer;
    transition: opacity .1s, transform .4s
}

.nav__close {
    opacity: 0
}

@media screen and (max-width:1118px) {
    .nav__menu {
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top .4s, opacity .3s;
        background-color: var(--main-color);
        z-index: 90
    }

    .nav__menu::-webkit-scrollbar {
        width: 0
    }

    .nav__list {
        background-color: var(--main-color);
        padding-top: 1rem
    }

    .dropdown__menu {
        position: static;
        background-color: var(--main-color-light);
        width: 100%
    }

    .dropdown__item.active .dropdown__menu {
        max-height: 1000px;
        transition: max-height .4s ease-in
    }
}

@media screen and (max-width:767px) {

    .dropdown__link,
    .nav__link {
        color: #fff;
        background-color: var(--main-color)
    }

    .dropdown__sublink {
        font-size: 18px;
        padding: 1.25rem 1.2rem
    }

    .dropdown__arrow {
        font-size: 1.5rem
    }
}

.nav__logo {
    font-size: 20px
}

.nav__burger,
.nav__close {
    font-size: 1.5rem
}

.nav__link,
.nav__link:hover {
    background-color: var(--main-color)
}

.nav__link {
    color: #fff;
    font-size: large;
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s
}

.nav__link:hover {
    font-weight: bolder;
    color: var(--main-color-light) !important
}

.show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial
}

.show-icon .nav__burger,
.show-icon .nav__close {
    opacity: 0;
    transform: rotate(90deg)
}

.show-icon .nav__close {
    opacity: 1
}

.dropdown__item {
    cursor: pointer
}

.dropdown__arrow {
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s
}

.dropdown__link {
    background-color: var(--main-color-light)
}

.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s
}

.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--main-color)
}

.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out
}

.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in
}

.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg)
}

.dropdown__add {
    margin-left: auto
}

.dropdown__sublink {
    background-color: var(--main-color-lighten)
}

.mySlides {
    display: none;
    width: 100%;
    position: relative
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    background: 0 0
}

.mySlides img {
    width: 100%;
    height: auto;
    display: block
}

.prev {
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transition: .6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, .5);
    z-index: 10
}

.dot,
.next,
.prev {
    cursor: pointer
}

.next {
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transition: .6s ease;
    user-select: none;
    background-color: rgba(0, 0, 0, .5);
    z-index: 10;
    right: 0;
    border-radius: 3px 0 0 3px
}

.next:hover,
.prev:hover {
    background-color: rgba(0, 0, 0, .8)
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color .6s ease
}

.dot.active,
.dot:hover {
    background-color: #cc8fc8
}

.dots-container {
    text-align: center;
    margin-top: 20px
}

.mySlides.fade {
    animation: fade 1s
}

.footer {
    color: var(--white-color);
    padding: 2rem 0;
    margin-top: 3rem;
    width: 100%;
    clear: both
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
    padding-right: 20px
}

.footer-section p {
    color: purple;
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: .8rem
}

.footer-section ul {
    color: purple;
    list-style: none;
    padding: 0
}

.footer-section ul li {
    margin-bottom: .5rem
}

.footer-section a {
    text-decoration: none;
    transition: color .3s
}

.footer-section a:hover {
    text-decoration: underline
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--main-color-light);
    color: var(--white-color);
    transition: background-color .3s
}

.social-icons a:hover {
    background-color: var(--white-color);
    color: var(--main-color)
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--main-color-light);
    width: 100%
}

.footer-bottom p {
    font-size: 1.2rem;
    color: #3f0336
}

@media screen and (max-width:340px) {
    .container {
        margin-inline: 1rem
    }

    .nav__link {
        padding-inline: 1rem
    }
}

@media screen and (min-width:1118px) {
    .container {
        margin-inline: auto
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between
    }

    .nav__toggle {
        display: none
    }

    .nav__list {
        height: 100%;
        display: flex;
        column-gap: 3rem
    }

    .nav__link {
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: .25rem
    }

    .nav__link:hover {
        background-color: transparent
    }

    .dropdown__item,
    .dropdown__subitem {
        position: relative
    }

    .dropdown__menu {
        position: absolute;
        left: 0;
        top: 6rem
    }

    .dropdown__menu,
    .dropdown__submenu {
        max-height: initial;
        overflow: initial;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s, top .3s
    }

    .dropdown__link,
    .dropdown__sublink {
        padding-inline: 1rem 3.5rem
    }

    .dropdown__subitem .dropdown__link {
        padding-inline: 1rem
    }

    .dropdown__submenu {
        position: absolute;
        left: 100%;
        top: .5rem
    }

    .dropdown__item:hover .dropdown__menu {
        opacity: 1;
        top: 5.5rem;
        pointer-events: initial;
        transition: top .3s
    }

    .dropdown__subitem:hover {
        color: #ff0 !important
    }

    .dropdown__subitem:hover>.dropdown__submenu {
        opacity: 1;
        top: 0;
        pointer-events: initial;
        transition: top .3s
    }
}

@media screen and (max-width:768px) {
    .footer-section {
        flex: 100%;
        margin-bottom: 2rem
    }

    .footer-container {
        flex-direction: column
    }
}

.orchidist-gallery {
    margin: 40px auto;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

.gallery-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 2.2em;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .1)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto
}

.orchidist-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
    transition: all .3s ease;
    border: 3px solid transparent;
    position: relative
}

.orchidist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
    border-color: #6c5ce7
}

.orchidist-photo {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #ddd, #f0f0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: #666;
    position: relative;
    overflow: hidden
}

.orchidist-photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, .1)0, rgba(161, 196, 253, .1) 100%)
}

.orchidist-photo i {
    position: relative;
    z-index: 1
}

.orchidist-info {
    padding: 20px;
    text-align: center
}

.orchidist-name {
    font-weight: 700;
    font-size: 1.1em;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3
}

.orchidist-year {
    color: #6c5ce7;
    font-weight: 600;
    font-size: .95em;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.placeholder-note {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(108, 92, 231, .1);
    border-radius: 8px;
    color: #6c5ce7;
    font-style: italic;
    border-left: 4px solid #6c5ce7
}

@media (max-width:768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px
    }

    .orchidist-photo {
        height: 150px;
        font-size: 2.5em
    }

    .gallery-title {
        font-size: 1.8em
    }
}