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

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

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



.site-wrapper
    {
        height: 100vh;
        width: 100vw;
        background-color: var(--bgColor);
        font-size: 12px;
    }

header
    {
        position: absolute;
        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(0, 5vw, 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;
                        }
                }
        }

    footer
        {
            position: absolute;
            bottom: 50px;
            left: 0;
            width: 100%;
            height: 50px;
            display: flex;
            flex-direction: column;
            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;
                }
                
                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 */
                }

                #randomize-bg-btn 
                {
                  padding: 10px 20px;
                  color: var(--textMain);
                  background-color: rgba(0, 0, 0, 0.3);
                  border: none;
                  border-radius: 5px;
                  cursor: pointer;
                  margin: 20px auto;
                  font-family: var(--headerFont), serif;
                  transition: background-color 0.3s, color 0.3s;
                }
                #randomize-bg-btn:hover 
                {
                  background-color: var(--textMain);
                  color: var(--bgColor);
                }
        }

        .footer-wrapper
            {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                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;
                }

            .footer-wrapper
            {
                flex-direction: row;
                align-items: center;
                justify-content: space-around;
            }
            .footer-content
                {
                    font-size: 1vw;
                }
    }






section {
  position: relative;
  width: calc(min(67rem, 95%));
  margin: 0 auto;
  min-height: 100vh;
  column-gap: 3rem;
  /* padding-block: min(20vh, 3rem); */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.swiper-container{
  position: relative;
}

.swiper {
  width: 100%;
  padding: 110px 0 155px 0;

}

.swiper-slide 
{
  position: relative;
  width: 10rem;
  height: 21rem;
  display: flex;
  flex-direction: column;
  align-items: self-start;
}

.swiper-slide .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 100%;
}

.slide-title {
  position: absolute;
  top: 0;
  padding: 10px 0;
  background-color: var(--bgSlide);
  font-family: var(--headerFont), serif;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  z-index: 10;
  width: 100%;
  border-radius: 0px 0px 5px 5px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1rem;
}

.comp-btn
{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  color: var(--textMain);
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--headerFont), serif;
  transition: background-color 0.3s, color 0.3s;
}
.comp-btn:hover 
{
  background-color: var(--textMain);
  color: var(--bgColor);
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
  border: 2px solid #000;
}
.swiper-pagination-bullet-active {
  background: blue;
}

.swiper-button-prev {
  background-color: white;
  border-radius: 50%;
  color: #000;
  top: 47%;
  width: 30px;
  height: 30px;
 
}

.swiper-button-prev::after {
  content: "";
}

.swiper-button-prev .bx {
  font-size: 25px;
}

.swiper-button-next {
  background-color: white;
  border-radius: 50%;
  color: #000;
  top: 47%;
  width: 30px;
  height: 30px;
}
.swiper-button-next::after {
  content: "";
}
.swiper-button-next .bx {
  font-size: 25px;
}

.bx img {
  margin-top: 8px;
  width: 25px;
  height: 25px;
}

.swiper-button-prev .bx img {
  transform: rotate(180deg);
}