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

:root
    {
        --textMain: rgba(255, 255, 255, 0.8);
        --textLite: rgba(255, 255, 255, 0.5);
        --bgColor: rgba(0, 0, 0, 0.9);
        --headerFont: "Cormorant Garamond";
        --bodyFont: "Crimson Text";
    }

.site-wrapper
    {

        height: 600vh;
        width: 100vw;
        background-color: var(--bgColor);
        font-size: 12px;
        overflow-x: hidden;
    }

header
    {
        position: fixed;
        top: 35px;
        left: 0;
        width: 100%;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: clamp(12px, 2vw, 24px);
        font-family: var(--headerFont), serif;
        z-index: 1000;
    }

    .logo-container
        {
            height: clamp(150px, 10vw, 200px);
            width: clamp(150px, 10vw, 200px);
            display: flex;
            align-items: center;
            justify-content: center;

            img
                {
                    height: 100%;
                    width: 100%;
                    object-fit: contain;
                }
        }
    
    .header-options
        {

            ul
                {
                    display: flex;
                    list-style: none;
                    gap: clamp(6px, 3vw, 100px);
                }
                li
                    {
                        cursor: pointer;

                        a
                            {
                                color: var(--textMain);
                                text-decoration: none;
                                letter-spacing: 3px;
                                border-radius: 5px;
                                transition: color 0.6s, background-color 0.6s ease;
                                padding: 5px 10px;
                            }

                        a:hover
                        {
                            color: var(--bgColor);
                            background-color: var(--textMain);
                            padding: 5px 10px;
                            border-radius: 5px;
                            transition: color 0.6s, background-color 0.6s ease;
                        }
                }
        }
    
/* Main formatiing section */

.travel-title 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  h1 {
    font-size: clamp(24px, 3vw, 48px);
    font-family: var(--bodyFont), serif;
    color: var(--textMain);
    font-weight: 400;
    letter-spacing: 0.4rem;
    text-align: center;
    padding-top: 5vh;
  }
.slider-section {
    height: 40vh;
    bottom: 0;
    position: fixed;
    width: 100%;
  }
  
  .wheel {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300vw;
    height: 300vw;
    max-width: 2000px;
    max-height: 2000px;
  }
  
  .wheel__card {
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: transform 0.3s ease; /* For hover effect */
  }

  .dest-local
  {
    text-align: center;
    font-size: clamp(16px, 1.5vw, 28px);
    color: var(--textMain);
    font-family: var(--bodyFont), serif;
    font-weight: 200;
    letter-spacing: 0.1rem;
    padding: 0.25rem;
  }

  .dest-date
  {
    text-align: center;
    font-size: clamp(12px, 1.1vw, 20px);
    color: var(--textMain);
    font-family: var(--bodyFont), serif;
    font-weight: 200;
    letter-spacing: 0.1rem;
    padding: 0.25rem;
  }

  .wheel__card button
  {
    margin-inline: auto;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: var(--bodyFont), serif;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .wheel__card button:hover
  {
    background-color: #333;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .wheel__card:hover {
    transform: scale(1.1); /* Zoom on hover */
    filter: brightness(1.2); /* Slight color tint */
  }
  
  img {
    width: 100%;
    pointer-events: none;
    z-index: 999;
    cursor: pointer;
    border-radius: 20px;
  }


    footer
        {
            position: fixed;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 50px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            color: var(--textLite);
            font-family: var(--headerFont), serif;
            z-index: 1000;

            span
                {
                    font-style: italic;
                    font-size: 0.6rem;
                }

                .scroll-arrow {
                    max-width: 30px;
                    text-align: center;
                    rotate: 180deg;
                }
                
                svg {
                    width: 30px;
                    max-height: 40px;
                    display: inline-block;
                }
                
                .arrow-down path {
                    stroke: white;
                    fill: transparent;
                    stroke-width: 1px;	
                    animation: arrow 2s infinite;
                    -webkit-animation: arrow 2s infinite; 
                }

                .arrow-down path.a1 {
                    animation-delay:0s;
                    -webkit-animation-delay:0s; /* Safari 和 Chrome */
                }
                
                .arrow-down path.a2 {
                    animation-delay:0.75s;
                    -webkit-animation-delay:0.75s; /* Safari 和 Chrome */
                }
                
                .arrow-down path.a3 {	
                    animation-delay:1.5s;
                    -webkit-animation-delay:1.5s; /* Safari 和 Chrome */
                }
        }

        .footer-wrapper
            {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: 2vw;
                width: 100%;
            }

            .footer-content
                {
                    font-size: 0.8rem;
                    color: var(--textLite);
                    text-align: center;
                    font-family: var(--bodyFont), serif;
                    margin-top: 10px;
                }

@keyframes arrow
    {
        0% {opacity:0}
        40% {opacity:.8}
        80% {opacity:0}
        100% {opacity:0}
    }


/* Media Queries */

@media (min-width: 650px)
    {
        .site-wrapper
            {
                font-size: 1.5vw;
            }

            header
                {
                    flex-direction: row;
                    justify-content: start;
                }
            
            .wheel
                {
                    top: -50px;
                }

            .footer-content
                {
                    font-size: 1vw;
                }
    }