@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
img {
    width: 100%;
    vertical-align: bottom;
}
body {
    font-family: "Dancing Script", cursive;
    letter-spacing: 0.025em;
    line-height: 1.8;
    margin: 0;
}
/* header */
header {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    position: fixed;
    backdrop-filter: blur(30px);
    box-shadow: 0px 2px 3px;
    z-index: 999;
    opacity: 0.8;
}
a:hover {
    filter: brightness(1.5);
}
.rogo {
    margin: 20px;
    margin-right: 300px;
    height: 100px;
    width: 100px;
}
h1 {
    margin-bottom: 30px;
}
@media (min-width: 767px) {
    header nav ul {
        display: flex;
        gap: 70px;
        margin-left: 50px;
        align-items: baseline;
        padding-right: 20px;
    }
}

header nav ul li {
    position: relative;
    color: #6e6457;
}
header .index ul li::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../img/home.png);
    background-size: cover;
    position: absolute;
    top: 0;
    left: -40px;
}
header .index ul li:nth-child(2):before {
    background-image: url(../img/menu01.png);
}
header .index ul li:nth-child(3):before {
    background-image: url(../img/event.png);
}
header .index ul li:nth-child(4):before {
    background-image: url(../img/access\ .png);
}

.ham {
    width: 40px;
    height: 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: fixed;
    top: 10px;
    right: 10px;
}
.ham span {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 3px;
    background-color: #000;
    transition: 1s;
}
#menubar nav {
    width: 100%;
    height: 100vh;
    background: #cfdedf;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 1s;
    pointer-events: none;
}
#menubar nav.open {
    opacity: 1;
    pointer-events: all;
}
.ham.open span:first-child {
    transform: translateY(10px) rotate(45deg);
}
.ham.open span:nth-child(2) {
    opacity: 0;
}
.ham.open span:last-child {
    transform: translateY(-10px) rotate(-45deg);
}
.index {
    display: none;
}

@media screen and (min-width: 767px) {
    header nav ul li {
        display: block;
    }
    div.ham {
        display: none;
    }
    .hero {
        width: 100%;
    }
    .inner {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        gap: 50px;
    }
    .inner02 {
        display: flex;
        width: 100%;

        gap: 50px;
    }
    header nav ul {
        display: block;
    }
    .index ul {
        display: flex;
    }
    .index {
        display: block;
    }
}

/* main */

main {
    padding: 30px;
}
/* Ensure there's enough space between the fixed header and the page title */
main h1 {
    font-weight: 400;
    text-align: center;
    /* increased to clear the fixed header and global nav */
    margin-top: 140px;
    color: #6e6457;
}

/* Slightly smaller top margin on narrow screens to avoid excessive whitespace */
@media (max-width: 766px) {
    main h1 {
        margin-top: 120px;
        padding-top: 10px;
    }
}

body {
    font-weight: 400;
}

main {
    position: relative;
}
main .hero {
    width: 450px;
    object-fit: cover;
    margin: 50px auto 0;
}
main div h2 {
    color: #a2997f;
}
main .inner {
    width: 990px;
    margin: 50px auto 0;
}
main .inner02 {
    width: 990px;
    margin: 50px auto 0;
}
/* Add space above h2 headings to separate them from preceding content */
main h2 {
    margin: 70px 0 20px; /* increased top margin */
}
@media (max-width: 766px) {
    main h2 {
        margin: 50px 0 16px; /* slightly smaller on narrow screens */
    }
}
main p {
    margin: 0 15px;
    font-size: medium;
}
main p img {
    width: 300px;
    margin: 10px auto 0;
    padding: 10px 10px;
    border-radius: 50px;
    box-shadow: 10px 10px #6e6457;
}
.btn {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 50px auto;
    padding: 10px 10px;
    border: 2px solid #6e6457;
    background-color: #6e6457;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 10px;
    text-align: center;
}
.btn:hover {
    background-color: #6e6457;
    opacity: 0.7;
}
.btn.b-text {
    display: block;
    text-align: center;

    padding-right: 15px;
    font-size: 20px;
    border-radius: 10px;
    color: #cfdedf;
}
.btn.b-text::after {
    content: "";
    position: absolute;
    top: o;
    bottom: 0;
    right: 0;
    margin: auto;
    transform: 45deg;

    box-sizing: border-box;
    width: 100px;
    height: 14px;
    transition: 0.3s;
}
.b-text {
    font-size: larger;
    text-align: center;
    padding-left: 150px;
    color: #a2997f;
}

/* slick */
.slider-2 .slick-slide {
    width: 600px;
    height: 400px;
    margin: 0 40px;
    position: relative;
    overflow: hidden;
}
.slider-2 .slick-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-2 .slick-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.4;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
    position: absolute;
    top: 180px;
    z-index: 1;
    filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.16));
}
.slider-2 .slick-arrow::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #09000d;
    border-width: 3px 3px 0 0;
    position: absolute;
    top: 24px;
    transform: rotate(45deg);
}
.slider-2 .slick-next {
    right: 0;
}
.slider-2 .slick-prev {
    left: 0;
}
.slider-2 .slick-next::before {
    left: 20px;
}
.slider-2 .slick-prev::before {
    border-width: 0 0 3px 3px;
    right: 22px;
}
.dots-2 .slick-dots {
    text-align: center;
}
.dots-2 .slick-dots li {
    display: inline-block;
}
.dots-2 .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    margin: 6px;
    font-size: 0;
    padding: 0;
    border: 0;
    outline: none;
    cursor: pointer;
    background: #bcbcbc;
    border-radius: 50%;
}

@media (min-width: 767px) {
    .main.inner {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    main .hero {
        width: 100%;
        object-fit: cover;
        background-position: center;
    }
    main p img {
        width: 500px;
        padding: 0 10px;
        border-radius: 50px;
        box-shadow: 10px 10px #6e6457;
    }
    .inner,
    .inner02 {
        display: flex;
        justify-content: space-around;
    }
}

/* footer */
footer {
    background-color: #cfdedf;
}
footer p,
h3 {
    text-align: center;
}
footer p {
    font-size: x-small;
}

----------------------------------------------------------------
 /* access */

 /* main */
div.pan {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    text-align: center;
    font-size: large;
    margin-bottom: 50px;
}
div.pan li:not(:last-child)::after {
    content: ">";
    margin: 0.6em;
}
div ol {
    display: flex;
}

.access01 {
    padding: 60px 20px;
}

.access01 h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #6e6457;
}

.access01-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.access01-text {
    font-size: 1rem;
    color: #a2997f;
    line-height: 1.8;
}
.access01 h3 {
    color: #6e6457;
}
.access01-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

@media (min-width: 767px) {
    iframe {
        width: 800px;
        text-align: center;
    }
}

/* footer */
footer {
    background-color: #cfdedf;
}
footer p,
h3 {
    text-align: center;
    gap: 5px;
}

--------------------------------------------------------------------------------------------
/* menu */

.menu01 {
    background-color: white;
    color: #f5f0e1;
    padding: 60px 20px;
    text-align: center;
}

.menu01 h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #6e6457;
    width: 100px;
}
.menu-item h2 {
    padding-top: 100px;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 20px #6e6457;
    transition: transform 0.3s ease;
    opacity: 1;
}
.opacity a:hover .menu-item {
    opacity: 0.5;
}
.menu-item h3 {
    margin-top: 15px;
    font-size: 1.1rem;
    font-family: "Dancing Script", cursive;
    color: #a2997f;
}

.record-frame {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    border: 5px solid #cfdedf;
    overflow: hidden;
    box-shadow: inset 0 0 10px #a2997f;
    transition: transform 0.6s ease;
}

.record-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.menu-item:hover .record-frame {
    transform: rotate(360deg);
}

------------------------------------------------------------------
/* event */
.event {
    max-width: 600px;
    margin: 0 auto;
    padding: 2em;
    background-color: #fefaf6;
    border: 2px dashed #c8a37e;
    border-radius: 10px;
    font-family: "Helvetica Neue", sans-serif;
    color: #6e6457;
}

.event h2 {
    text-align: center;
    color: #a2997f;
    margin-top: 120px;
}
.event p {
    margin: 50px 50px;
}
.event h3 {
    color: #a2997f;
    margin-bottom: 10px;
}
.event ul {
    font-size: small;
}
.event-form input,
.event-form textarea {
    width: 100%;
    padding: 10px;
    margin: 0.5em 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.event-form button {
    background-color: #a2997f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

.event-form button:hover {
    background-color: #cfdedf;
}
.event-img img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 50px;
}
.btnshine {
    position: relative;
}
.btnshine::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    transform: skewX(-25deg);
}
.btnshine:hover::before {
    animation: shine 0.7s;
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
@media (min-width: 767px) {
    .event-img {
        width: 600px;
        text-align: center;
        margin: 0 auto;
    }
    .event-form {
        width: 600px;
        text-align: center;
    }

    .form-event {
        width: 600px;
        text-align: center;
        margin: 0 auto;
    }
    .event p {
        align-items: center;
    }
}

.rogo {
    animation: spin 5s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.note {
    position: absolute;
    color: #f5f0e1;
    font-size: 1.5em;
    opacity: 0;
    animation: floatNote 4s ease-in-out infinite;
    pointer-events: none;
}
.note1 {
    left: 10%;
    animation-delay: 0s;
}
.note2 {
    left: 50%;
    animation-delay: 1.5s;
}
.note3 {
    left: 30%;
    animation-delay: 3s;
}
@keyframes floatNote {
    0% {
        bottom: 0;
        opacity: 0;
        transform: translateY(-20px) scale(1.2) rotate(15deg);
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
