﻿
#navbar {
    background-color: #333; /* Black background color */
    position: fixed; /* Make it stick/fixed */
    top: 0; /* Stay on top */
    width: 100%; /* Full width */
    height:300px;
    transition: top 0.3s; /* Transition effect when sliding down (and up) */
    /*background: url(https://www.w3schools.com/images/lamp.jpg);*/
    /*background-image: url("https://png.pngtree.com/background/20210714/original/pngtree-blue-carbon-background-with-sport-style-and-golden-light-picture-image_1200848.jpg");*/
}

    /* Style the navbar links */
    #navbar a {
        float: left;
        display: block;
        color: white;
        text-align: center;
        padding: 15px;
        text-decoration: none;
    }

        #na/*vbar a:hover {
            background-color: #ddd;
            color: black;

            
        }*/

.nav-link.active {
    color: red;
}
#navbarSupportedContent {
    /*background-image: url("/Content/Background/bg.jpg");*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 150px;
    background: #262626;
    border: 3px solid #3c3c3c;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    font-family: sans-serif;
    font-size: 20px;
    color: #fff000;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #fff000;
    box-shadow: 0 0 20px rgba(0,0,0,.5);
}

    .ring:before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        width: 100%;
        height: 100%;
        border: 3px solid transparent;
        border-top: 3px solid #fff000;
        border-right: 3px solid #fff000;
        border-radius: 50%;
        animation: animateC 2s linear infinite;
    }

/*span {
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin: left;
    animation: animate 2s linear infinite;
}

    span:before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #fff000;
        top: -6px;
        right: -8px;
        box-shadow: 0 0 20px #fff000;
    }*/

@keyframes animateC {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*@keyframes animate {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}*/


/* The Modal (background) */
#image-viewer {
    display: none;
    position: fixed;
    z-index: 100;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

    /* Style the Image Used to Trigger the Modal */
    #image-viewer img {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    width: 50%; /* takes the 100 % width of its container (.box div)*/
    height: 100%; /* takes the 100 % height of its container (.box div)*/
}

    #image-viewer img:hover {
        opacity: 0.7;
    }



    #image-viewer .close {
        position: absolute;
        top: 15%;
        right: 20%;
        color: #f1f1f1;
        font-size: 60px;
        font-weight: bold;
        transition: 0.3s;
    }

        #image-viewer .close:hover,
        #image-viewer .close:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    height: 80%;
    max-width: 700px;
    max-height: 700px;
    animation-name: animateC;
    animation-duration: 1s;
}
#productdisplay {
    animation-name: animateCR;
    animation-duration: 1s;
}
@keyframes animateCR {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}



.glitch-wrapper {
    width: 100%;
    height: 50px;
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000000;
    position: relative;
}

.glitch {
    position: relative;
    font-size: x-large;
    font-weight: bold;
    color: #FFFFFF;
    letter-spacing: 3px;
    z-index: 1;
}

    .glitch:before,
    .glitch:after {
        display: block;
        content: attr(data-text);
      
        top: 0;
        left: 0;
        opacity: 0.8;
    }

    .glitch:before {
        animation: glitch-it 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
        color: #00FFFF;
        z-index: -1;
        position: relative;
    }

    .glitch:after {
        animation: glitch-it 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
        color: #FF00FF;
        z-index: -2;
        position: absolute;
    }

@keyframes glitch-it {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    to {
        transform: translate(0);
    }
}


/* ===== Medium WhatsApp Button ===== */
:root {
    --wa-bg: #22c55e; /* green */
    --wa-bg-hover: #16a34a;
    --wa-fg: #0a2e1c;
    --wa-ring: rgba(34,197,94,.35);
    --wa-border: #16a34a;
    --wa-shadow: 0 8px 18px rgba(22,163,74,.18);
}

@media (prefers-color-scheme: dark) {
    :root {
        --wa-shadow: 0 8px 18px rgba(0,0,0,.45);
    }
}

.wa-button {
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    text-decoration: none;
    border: 1px solid var(--wa-border);
    background: var(--wa-bg);
    color: var(--wa-fg);
    height: 36px; /* <- medium height */
    padding: 0 14px; /* <- medium padding */
    border-radius: 10px;
    font: 600 13.5px/34px Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: var(--wa-shadow);
    transition: background-color .15s ease, border-color .15s ease, transform .06s ease, box-shadow .2s ease;
}

    .wa-button:hover {
        background: var(--wa-bg-hover);
        border-color: var(--wa-bg-hover);
    }

    .wa-button:active {
        transform: translateY(1px);
    }

    .wa-button:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--wa-ring), var(--wa-shadow);
    }

    .wa-button[disabled] {
        opacity: .6;
        cursor: not-allowed;
        box-shadow: none;
    }

.wa-button__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    display: inline-block;
}

.wa-button__spinner {
    display: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(10,46,28,.35);
    border-top-color: #0a2e1c;
    animation: wa-spin .7s linear infinite;
}

.wa-button.is-busy .wa-button__spinner {
    display: inline-block;
}

@keyframes wa-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Full-width (optional on narrow screens) */
@media (max-width: 520px) {
    .wa-button--block {
        width: 100%;
        justify-content: center;
    }
}





