
@font-face { font-family: 'NotoSerifTC'; src: url("/fonts/NotoSerifTC-Bold.otf") format("opentype"); } 

/* Loading 畫面樣式 */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.running-man {
    margin-bottom: 30px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Aaron Iker 風格的跑步動畫 */
.running {
    --color: #fff;
    --duration: .7s;
    transform: scale(2);
}

.running .outer {
    animation: outer var(--duration) linear infinite;
}

.running .body {
    background: var(--color);
    height: 15px;
    width: 8px;
    border-radius: 4px;
    transform-origin: 4px 11px;
    position: relative;
    transform: rotate(32deg);
    animation: body var(--duration) linear infinite;
}

.running .body:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 4px;
    bottom: 16px;
    left: 0;
    position: absolute;
    background: var(--color);
}

.running .arm,
.running .arm:before,
.running .leg,
.running .leg:before {
    content: '';
    width: var(--w, 11px);
    height: 4px;
    top: var(--t, 0);
    left: var(--l, 2px);
    border-radius: 2px;
    transform-origin: 2px 2px;
    position: absolute;
    background: var(--c, var(--color));
    transform: rotate(var(--r, 0deg));
    animation: var(--name, arm-leg) var(--duration) linear infinite;
}

.running .arm:before {
    --l: 7px;
    --name: arm-b;
}

.running .arm.front {
    --r: 24deg;
    --r-to: 164deg;
}

.running .arm.front:before {
    --r: -48deg;
    --r-to: -36deg;
}

.running .arm.behind {
    --r: 164deg;
    --r-to: 24deg;
}

.running .arm.behind:before {
    --r: -36deg;
    --r-to: -48deg;
}

.running .leg {
    --w: 12px;
    --t: 11px;
}

.running .leg:before {
    --t: 0;
    --l: 8px;
}

.running .leg.front {
    --r: 10deg;
    --r-to: 108deg;
}

.running .leg.front:before {
    --r: 18deg;
    --r-to: 76deg;
}

.running .leg.behind {
    --r: 108deg;
    --r-to: 10deg;
    --c: none;
}

.running .leg.behind:before {
    --c: var(--color);
    --r: 76deg;
    --r-to: 18deg;
}

.running .leg.behind:after {
    content: '';
    top: 0;
    right: 0;
    height: 4px;
    width: 6px;
    clip-path: polygon(2px 0, 6px 0, 6px 4px, 0 4px);
    border-radius: 0 2px 2px 0;
    position: absolute;
    background: var(--color);
}

@keyframes outer {
    50% {
        transform: translateY(0);
    }
    25%,
    75% {
        transform: translateY(4px);
    }
}

@keyframes body {
    50% {
        transform: rotate(16deg);
    }
    25%,
    75% {
        transform: rotate(24deg);
    }
}

@keyframes arm-leg {
    50% {
        transform: rotate(var(--r-to));
    }
}

@keyframes arm-b {
    30%,
    70% {
        transform: rotate(var(--r-to));
    }
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    animation: textPulse 2s ease-in-out infinite;
    margin-top: 20px;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* 全局設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
/*    font-size:1.2rem*/
}

/* 修復移動設備視窗高度問題 */
html {
    height: 100%;
    height: -webkit-fill-available;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
}


h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5,.blockquote {
  font-family: "NotoSerifTC","Open Sans","Microsoft JhengHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";letter-spacing: 3px }


/* 導航欄樣式 */
.navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    height: 60px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.has-background {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.has-background.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50 !important;
    position: fixed;
    top: 5px;
    left: 20px;
    z-index: 10000;
    text-decoration: none;
}

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
    background: transparent;
    display: block !important;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 10000;
/*    color: #333 !important;*/
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* 全屏選單樣式 */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

/* 選單背景裝飾元素 */
.fullscreen-menu::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50% 30% 40% 60%;
    transform: rotate(-15deg);
    animation: float 8s ease-in-out infinite;
}

.fullscreen-menu::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 60% 40% 30% 50%;
    transform: rotate(25deg);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-20px) rotate(-10deg); }
}

.fullscreen-menu .close-btn {
    position: fixed;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
}

.fullscreen-menu .close-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.fullscreen-menu .close-btn:hover {
    transform: rotate(90deg);
}

.fullscreen-menu .menu-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
}

.fullscreen-menu .menu-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 4rem;
}

.fullscreen-menu .logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.fullscreen-menu .logo-image img {
    max-width: 80%;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.fullscreen-menu .logo-image img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.fullscreen-menu .menu-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.fullscreen-menu .menu-items {
    text-align: left;
    position: relative;
}

.fullscreen-menu .menu-items::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.fullscreen-menu .menu-items a {
    display: block;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    margin: 1rem 0;
    padding: 1rem 2rem;
    position: relative;
    transition: all 0.4s ease;
    transform: translateX(0);
    border-left: 3px solid transparent;
}

.fullscreen-menu .menu-items a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.fullscreen-menu .menu-items a::after {
    content: '→';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.fullscreen-menu .menu-items a:hover {
    font-size: 1.4rem;
    transform: translateX(10px);
    color: #ffffff;
    border-left-color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.fullscreen-menu .menu-items a:hover::before {
    width: 100%;
}

.fullscreen-menu .menu-items a:hover::after {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

/* 選單分隔線 */
.fullscreen-menu .menu-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 1.5rem 2rem;
    position: relative;
}

/* 附加選項樣式 */
.fullscreen-menu .menu-items a.additional-menu {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    opacity: 0.9;
}

.fullscreen-menu .menu-items a.additional-menu::before {
    background: rgba(255, 255, 255, 0.08);
}

.fullscreen-menu .menu-items a.additional-menu:hover {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
}

.fullscreen-menu .menu-items a.additional-menu::after {
    content: '→';
    font-size: 1.2rem;
}

/* 裝飾性幾何元素 */
.fullscreen-menu .geometric-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.fullscreen-menu .circle-1 {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.fullscreen-menu .circle-2 {
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.fullscreen-menu .triangle {
    position: absolute;
    top: 30%;
    left: 15%;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.fullscreen-menu .line-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translate(-50%, -50%) rotate(45deg);
    animation: slide 8s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes slide {
    0%, 100% { transform: translate(-50%, -50%) rotate(45deg) scaleX(1); }
    50% { transform: translate(-50%, -50%) rotate(45deg) scaleX(1.5); }
}

/* 主要內容區域 */
.hero-section {
    height: 100vh;
    height: 100dvh; /* 動態視窗高度 */
    min-height: -webkit-fill-available;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23667eea"/><stop offset="100%" style="stop-color:%23764ba2"/></linearGradient></defs><rect width="1200" height="800" fill="url(%23grad1)"/></svg>');


    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    background: url(image/landing_bg.jpg);
    background-size: cover;
    background-position: bottom;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-content .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.hero-content .btn:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}



/* Mouse scroll effect */
.mouse {
  position: absolute;
  bottom: 40px;
  z-index: 5;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block; }
  .mouse .mouse-icon {
    display: block;
    width: 25px;
    height: 45px;
    border: 2px solid white;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    text-align: center;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out; }
  .mouse .mouse-wheel {
    height: 4px;
    margin: 2px auto 0;
    display: block;
    width: 4px;
    background-color: white;
    border-radius: 50%;
    -webkit-animation: 1.6s ease infinite wheel-up-down;
    -moz-animation: 1.6s ease infinite wheel-up-down;
    animation: 1.6s ease infinite wheel-up-down; }
  .mouse:hover .mouse-icon {
    border-color: #fff; }

@-webkit-keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0; }
  30% {
    opacity: 1; }
  100% {
    margin-top: 20px;
    opacity: 0; } }

@-moz-keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0; }
  30% {
    opacity: 1; }
  100% {
    margin-top: 20px;
    opacity: 0; } }

@keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0; }
  30% {
    opacity: 1; }
  100% {
    margin-top: 20px;
    opacity: 0; } }



/* 內容區域 */
.content-section {
    padding: 80px 0;
    min-height: 100vh;
    min-height: 100dvh;
/*
    display: flex;
    align-items: center;
*/
}

.content-section:nth-child(even) {
    background: #f1efe9;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}


/* 輪播樣式 */
.owl-carousel .item {
    padding: 1rem;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

/* 頁腳樣式 */
.footer {
    background: #333a40;
    color: #ccc;
    padding: 10rem 0;
    text-align: center;
}

.footer img{margin-left:60px;margin-bottom:1.5em}

/* 回到頂部按鈕 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e4007f;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(228, 0, 127, 0.3);
}

.back-to-top:hover {
    background: #c2006b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(228, 0, 127, 0.4);
    
}

.back-to-top:active {
    transform: translateY(0);
}

/* AOS 動畫增強 */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* 表單樣式（如果需要） */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Owl Carousel 自定義樣式 */
.owl-carousel {
    position: relative;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-carousel .owl-nav button {
    background: rgba(134, 142, 150, 0.8) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    position: absolute;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -10px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -10px;
}

.owl-carousel .owl-nav button:hover {
    background: #868e96 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.owl-carousel .owl-nav button:focus {
    outline: none !important;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 3px;
    outline: none !important;
}

.owl-carousel .owl-dots .owl-dot:focus {
    outline: none !important;
}

.owl-carousel .owl-dots .owl-dot span {
    background: rgba(134, 142, 150, 0.5) !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    display: block;
    outline: none !important;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: #868e96 !important;
    transform: scale(1.2) !important;
}

/* 輪播容器樣式 */
.owl-carousel .owl-stage-outer {
    overflow: hidden;
    border-radius: 10px;
}

.owl-carousel .item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 手機版調整 */
@media (max-width: 768px) {
    .owl-carousel .owl-nav button {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    
    .owl-carousel .owl-nav button.owl-prev {
        left: -10px;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }
}

/* 響應式設計 */
@media (max-width: 768px) {
    .loading-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .running-man {
        height: 60px;
        margin-bottom: 20px;
    }
    
    .running {
        transform: scale(1.5);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
        top: 5px;
        left: 15px;
        z-index: 10000;
        color: white !important;
    }
    
    .navbar-toggler {
        top: 12px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
        z-index: 10000;
/*        color: #333 !important;*/
    }
    
    .fullscreen-menu .close-btn {
        top: 12px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    /* 手機版選單布局 */
    .fullscreen-menu .menu-container {
        flex-direction: column;
        width: 95%;
        height: 90vh;
        padding: 2rem 0;
    }
    
    .fullscreen-menu .menu-left {
        flex: none;
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .fullscreen-menu .logo-image img {
        max-width: 60%;
    }
    
    .fullscreen-menu .menu-right {
        flex: 1;
    }
    
    .fullscreen-menu .menu-items {
        text-align: center;
    }
    
    .fullscreen-menu .menu-items a {
        font-size: 1.1rem;
        margin: 0.6rem 0;
        padding: 0.8rem 1.5rem;
    }
    
    .fullscreen-menu .menu-items a:hover {
        font-size: 1.2rem;
        transform: translateX(5px);
    }
    
    .fullscreen-menu .menu-items::before {
        display: none;
    }
    
    /* 手機版分隔線調整 */
    .fullscreen-menu .menu-divider {
        margin: 1rem 1.5rem;
    }
    
    .fullscreen-menu .menu-items a.additional-menu {
        font-size: 1rem;
    }
    
    .fullscreen-menu .menu-items a.additional-menu:hover {
        font-size: 1.1rem;
    }
    
    /* 調整裝飾元素在手機上的顯示 */
    .fullscreen-menu .circle-1 {
        width: 60px;
        height: 60px;
        top: 10%;
        right: 5%;
    }
    
    .fullscreen-menu .circle-2 {
        width: 40px;
        height: 40px;
        bottom: 15%;
        left: 5%;
    }
    
    .fullscreen-menu .triangle {
        border-left-width: 15px;
        border-right-width: 15px;
        border-bottom-width: 26px;
        top: 25%;
        left: 10%;
    }
    
    .fullscreen-menu .line-decoration {
        width: 120px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .fullscreen-menu .logo-image img {
        max-width: 70%;
    }
    
    .fullscreen-menu .menu-items a {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
    
    .fullscreen-menu .menu-items a:hover {
        font-size: 1.2rem;
    }
}