body {
    font-family: "tekton-pro", sans-serif;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


#sign_up {
    border-radius: 10px;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 0px 10px 10px 0px;
    background-color: #fcf9f7;
}

::-webkit-scrollbar-thumb {
    background-color: #617458;
    min-height: 20px;
}


#main_header img {
    max-width: 200px;
}

#home h1 {
    font-family: "bilo", sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px #617458;
}

#home h2 {
    font-family: "bilo", sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px #617458;
}


.package {
    font-family: "tekton-pro", sans-serif;
    height: 500px;
}

.package h1,
h2,
h3,
h4,
h5 {
    font-family: "tekton-pro", sans-serif;
    text-shadow: none;
}

.rc {
    width: 700px;
    height: 700px;
    border-radius: 100%;
    -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
    -webkit-transform: rotate(0.000001deg);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
}

.video-circle {
    border-radius: 50%;
    object-fit: cover;
}




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



.gallery {
    position: relative;
    width: 320px;
    height: 220px;
    margin: 60px auto;
}

/* every image sits in same spot */
.gallery img {
    position: absolute;
    inset: 0;
    width: 90%;
    height: 100%;
    object-fit: cover;
    background: #fff;
    padding: 8px;
    border-radius: 12px;
    /*box-shadow: 0 10px 25px rgba(0, 0, 0, .18);*/
    box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.20);
    transition: transform .35s ease, box-shadow .35s ease;
    margin: 0px auto;
}

/* stack effect:
   last image automatically on top */
.gallery img:nth-child(1) {
    transform: rotate(-10deg) translate(-18px, 14px);
    z-index: 1;
}

.gallery img:nth-child(2) {
    transform: rotate(-6deg) translate(-10px, 8px);
    z-index: 2;
}

.gallery img:nth-child(3) {
    transform: rotate(-2deg) translate(-4px, 4px);
    z-index: 3;
}

.gallery img:nth-child(4) {
    transform: rotate(2deg) translate(4px, 2px);
    z-index: 4;
}

.gallery img:nth-child(5) {
    transform: rotate(5deg) translate(8px, -1px);
    z-index: 5;
}

.gallery img:nth-child(6) {
    transform: rotate(8deg) translate(12px, -4px);
    z-index: 6;
}

/* newest / top image hover lift */
.gallery img:last-child:hover {
    transform: translateY(-12px) rotate(3deg) scale(1.03);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .28);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
    touch-action: pan-y;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox button {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    backdrop-filter: blur(5px);
}

.lightbox button:hover {
    background: rgba(255, 255, 255, .28);
}

.close {
    top: 20px;
    right: 20px;
}

.prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.actions {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.actions button {
    position: relative;
    font-size: 15px;
}