/* ========== Variables & Reset ========== */
:root {
    --primary-color: #0c4a6e;
    /* Deep ocean blue */
    --secondary-color: #e0f2fe;
    /* Light blue */
    --accent-color: #0ea5e9;
    /* Summer sky blue */
    --text-color: #000000;
    --text-light: #111;
    --bg-light: #f0f9ff;
    --bg-dark: #ffffff;
    --font-main: 'Zen Kaku Gothic New', sans-serif;
    --font-en: 'Quicksand', sans-serif;
    --font-hand: 'Caveat', cursive;
    --font-hand2: 'Kiwi Maru', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.section-subtitle {
    font-family: var(--font-hand);
    text-align: center;
    font-size: 4rem;
    /* Increased size to match handwriting feel */
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transform: rotate(-3deg);
    /* Slight tilt for handwriting feel */
}

.text-white {
    color: #ffffff;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: #ffffff;
}

.bg-primary {
    background: #2e8a64 url('img/primary_bg.jpg') center center no-repeat;
    background-size: cover;
}

.bg-secondary {
    background-color: var(--secondary-color);
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 60px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled .logo,
.header.scrolled .nav-list a {
    color: var(--primary-color);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    padding-left: 16px;
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    transition: 0.4s ease;
    opacity: 1;
}

.nav-list a:hover {
    text-decoration: underline;
}

/* ========== Hamburger Menu ========== */
.hamburger {
    display: none;
}

/* ========== Hero Section ========== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: var(--primary-color);
    overflow: hidden;
    background-image: url('img/main_bg.jpg');
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.parallax-layers {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    /* background-color: #e0faff; */
    /* fallback sky color */
}

.parallax-layers .layer {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    pointer-events: none;
}

.layer-sky {
    z-index: 1;
    transform: scale(1.1);
    animation: pan-sky 30s linear infinite alternate;
}

.layer-person {
    z-index: 5;
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: 80% !important;
    object-fit: contain;
    object-position: left bottom;
    transition: 0.4s ease;
}

.effect-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle-effect {
    z-index: 6;
    background-image: url('img/dot.png');
    background-size: cover;
    opacity: 0.8;
    animation: drift-slow 20s linear infinite;
    mix-blend-mode: screen;
}

.dynamic-leaf {
    z-index: 7;
    background-image: url('img/leaf.png');
    background-repeat: no-repeat;
    opacity: 0;
    animation: dynamic-drift linear infinite;
}

@keyframes pan-sky {
    0% {
        transform: scale(1.1) translateX(-2%);
    }

    100% {
        transform: scale(1.1) translateX(2%);
    }
}

@keyframes drift-slow {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -200px -200px;
    }
}

@keyframes dynamic-drift {
    0% {
        background-position: -20% -20%;
        opacity: 0;
    }

    15% {
        opacity: 0.8;
    }

    85% {
        opacity: 0.8;
    }

    100% {
        background-position: 120% 120%;
        opacity: 0;
    }
}

@keyframes slight-bob {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

.hero-content {
    width: 80%;
    max-width: 650px;
    padding: 50px 40px;
    left: 10%;
    top: 12%;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(-5deg);
    position: absolute;
    text-align: center;
}

.hero-stamp {
    position: absolute;
    top: 30px;
    left: -60px;
    width: 30%;
    height: auto;
    pointer-events: none;
    transform: rotate(-20deg);
    opacity: 0.7;
}

.hero-subtitle {
    font-family: var(--font-hand);
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-hand2);
    letter-spacing: -3px;
    text-shadow: 0 2px 10px rgb(255, 255, 255),0 2px 10px rgb(255, 255, 255);
}

.hero-title .highlight {
    font-size: 1.8rem;
    display: block;
    margin-top: 30px;
}
.hero-title .highlight br {
    display: none;
}

.hero-date {
    margin-bottom: 10px;
}

.hero-date .date {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
    display: inline-block;
    padding: 4px 30px;
    background: var(--primary-color);
    border-radius: 12px;
    text-shadow: none;
    /* remove for clarity */
}

.date-highlight {
    font-size: 4rem;
    margin: 0 5px;
    font-weight: 700;
}

.hero-btn {
    position: absolute;
    bottom: 12%;
    z-index: 11;
    font-size: 1.2rem;
}

.scroll-down {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #fff;
    z-index: 10;
    font-weight: 700;
}

.scroll-down::after {
    content: '';
    width: 2px;
    height: 50px;
    background-color: #fff;
    margin-top: 10px;
    animation: scroll 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ========== Profile & Message Section ========== */
.section.profile {
  background-image: 
    url("img/message_bg.png"),
    url("img/message_bg_leaf1.png"),
    url("img/message_bg_leaf2.png");

  background-position:
    center top,
    left top,
    right bottom;

  background-size:
    100% auto,
    auto auto,
    auto auto;

  background-repeat:
    no-repeat,
    no-repeat,
    no-repeat;
}

.profile-inner {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.profile-message {
    padding: 20px;
}

.profile-message h4 {
    font-family: var(--font-en);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.message-text {
    font-size: 1.05rem;
    line-height: 2;
}

.message-greeting {
    font-size: 1.2rem;
    font-weight: 700;
}

.profile-info-box {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.profile-image-wrap {
    flex: 1;
    min-width: 450px;
}

.profile-img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.profile-details {
    flex: 2;
}

.profile-name {
    font-size: 2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: var(--primary-color);
}

.profile-name span {
    font-family: var(--font-en);
    font-size: 1.1rem;
}

.profile-name span.kana {
    color: var(--accent-color);
}

.profile-meta {
    margin-bottom: 20px;
    color: var(--text-light);
}

.profile-meta li {
    margin-bottom: 5px;
}

.profile-desc {
    margin-bottom: 30px;
    line-height: 1.8;
}

.biography h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.biography h5::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    background-color: var(--accent-color);
    margin-right: 10px;
}

.bio-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.bio-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}


/* ========== Travel Fee Section ========== */
.section.fee {
    background: url('img/fee_bg.jpg') center center no-repeat;
    background-size: cover;
}
.fee-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
    justify-content: space-between;
}

.fee-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    flex: 1;
    width: 80%;
    max-width: 480px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.fee-card:hover {
    transform: translateY(-5px);
}

.fee-type {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.fee-type span {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 400;
}

.fee-price-box {
    margin-top: 20px;
}

.fee-label {
    color: var(--text-light);
    margin-bottom: 5px;
}

.fee-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--font-en);
}

.fee-amount span {
    font-size: 1rem;
    font-family: var(--font-main);
    font-weight: 400;
    margin-left: 5px;
}
.fee-amount span.tax {
    display: block;
}

.fee-info-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.fee-info-box h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
}

.fee-includes {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.fee-includes h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.note-list {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px dashed #ddd;
}

.note-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-color);
}

.note-list li::before {
    content: '※';
    position: absolute;
    left: 0;
}

.note-list li.star::before {
    content: '★';
    position: absolute;
    left: 0;
}

.status-message {
    background-color: #f9f9f9;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    font-size: 0.9rem;
}

.status-message p {
    margin-bottom: 15px;
}

.status-message p:last-child {
    margin-bottom: 0;
}

.contact-note {
    font-weight: bold;
    margin-top: 15px;
}


/* ========== Schedule Section ========== */
.section.schedule {
    background: url('img/schedule_bg.jpg') center top no-repeat;
    background-size: 100% auto;
}

.schedule-note {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-day {
    margin-bottom: 50px;
}

.day-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.day-title-sub {
    display: inline-block;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-left: -40px;
    padding: 5px 20px;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #ddd;
    z-index: -1;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -35px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: 2px solid #fff;
    z-index: 1;
}

.timeline-item.highlight-item::before {
    background-color: var(--accent-color);
    box-shadow: 0 0 0 4px #fff;
}

.timeline-time {
    font-family: var(--font-en);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timeline-content h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.timeline-content img {
    max-width: 360px;
    width: 90%;
    height: auto;
    margin-top: 10px;
    border-radius: 8px;
}

.timeline-day-column {
    display: flex;
    flex-wrap:wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.timeline-day-column .timeline {
    width: 48%;
}

.mt-5 {
    margin-top: 5rem;
}

.top_photoarea {
	display: flex;
	width: 100vw;
	height: 450px;
	margin: 0 calc(50% - 50vw) 0;
	margin-top: 60px;
	padding: 0;
	overflow: hidden;
	align-items: center;
}
.top_photoarea ul {
	display: flex;
	margin: 0;
	padding: 0;
	animation: loop-slide 60s infinite linear 1s both;
	list-style: none;
}
.top_photoarea li {
	display: block;
	width: 400px;
	height: 300px;
	margin-right: 40px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 16px;
}
.top_photoarea li:nth-child(2n) {
	margin-top: 50px;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

p.comment {
    font-size: 0.85rem;
}

/* ========== Hotel Section ========== */
.hotel {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        url('img/hotel_bg.jpg?20260311');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hotel-info {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.hotel-img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px;
}

.hotel-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.hotel-url {
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.hotel-desc {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
}

/* ========== Reservation Section ========== */
.reservation {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.reservation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/dot.png');
    background-size: cover;
    opacity: 0.2;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.res-box {
    margin-top: 30px;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.res-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.res-btn {
    font-size: 1.3rem;
    padding: 20px 60px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.res-btn:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(2px);
}

.res-box ul.note-list {
    text-align: left;
}

.res-box ul.note-list li .dl {
    margin: 10px 0;
}

.res-box ul.note-list li .dl a {
    position: relative;
    text-decoration: underline;
    color: var(--accent-color);
}

.res-box ul.note-list li .dl a::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 13px;
    margin-right: 3px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 80% 50%);
    clip-path: polygon(0 0, 0% 100%, 80% 50%);
    background-color: var(--accent-color);
    transition: 0.5s;
}

/* ========== Footer ========== */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 30px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-company {
    text-align: center;
}

.footer-company .number {
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
}

.footer-company p {
    line-height: 1.3;
    text-align: center;
}

.footer-company .link {
    text-align: center;
    margin: 10px auto;
}

.footer-company .link-btn {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
    width: 90%;
    margin: 0 auto 10px auto;
    padding: 0.5em 15px;
    border: 1px solid #fff;
    border-radius: 4px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
    overflow: hidden;
}

.footer-company .link-btn::after {
    content: "";
    display: block;
    width: 8px;
    height: 13px;
    -webkit-clip-path: polygon(0 0, 0% 100%, 80% 50%);
    clip-path: polygon(0 0, 0% 100%, 80% 50%);
    background-color: #fff;
    transition: 0.5s;
}

.footer-coop {
    margin-bottom: 30px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    display: inline-block;
    color: #ccc;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.copyright {
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* ========== Animations & Utility ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: 0.4s ease;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* ========== Responsive ========== */
@media (max-width: 1098px) {
    .layer-person {
        height: 60% !important;
    }

    .hero-content {
        max-width: 500px;
        padding: 30px 20px 20px 20px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-title .highlight {
        font-size: 1.5rem;
    }

    .date-highlight {
        font-size: 2rem;
    }

    .hero-date .date {
        font-size: 1.5rem;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-subtitle {
        font-size: 2.5rem;
    }

    .header-inner {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .header {
        padding: 15px 0;
        background-color: #2e8a64;
    }

    .logo,
    .nav-list a {
        color: #fff;
    }

    /* Mobile Nav Overlay */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #2e8a64;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nav-list a {
        font-size: 1.5rem;
    }

    /* Hamburger Icon */
    .hamburger {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1000;
        padding: 0;
    }

    .hamburger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #fff;
        left: 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 9px;
    }

    .hamburger span:nth-child(3) {
        bottom: 0;
    }

    /* Hamburger Active State */
    .hamburger.is-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.is-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .layer-person {
        height: 55% !important;

    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title .highlight {
        margin-top: 15px;
        font-size: 1.2rem;
    }
    .hero-title .highlight br {
        display: inline;
    }

    .date-highlight {
        font-size: 1.8rem;
    }

    .hero-date .date {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .section.profile {
      background-image: 
        url("img/message_bg.png"),
        url("img/message_bg_leaf1.png"),
        url("img/message_bg_leaf2.png");

      background-position:
        center top,
        left top,
        right bottom;

      background-size:
        100% auto,
        20% auto,
        auto auto;

      background-repeat:
        no-repeat,
        no-repeat,
        no-repeat;
    }

    .profile-info-box {
        flex-direction: column;
        align-items: center;

    }

    .profile-image-wrap {
        min-width: auto;
    }

    .profile-img {
        max-width: 300px;
        margin: 0 auto;
    }

    .fee-cards {
        flex-direction: column;
        align-items: center;
    }

    .timeline::before {
        left: 5px;
    }

    .timeline {
        padding-left: 25px;
    }

    .timeline-item::before {
        left: -26px;
    }

    .timeline-day-column {
        display: block;
    }
    .timeline-day-column .timeline {
        width: 100%;
    }

    .res-btn {
        font-size: 1.1rem;
        padding: 20px;
    }
}