:root {

  /*  Aromatic Fruits™ Brand Colors  */
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --font-color: rgb(51, 51, 51);
    --background-color:#dca8e9;
    --aro-brand-lavender: rgb(220, 168, 233);                                                                                                                                                                                 
    --aro-brand-green: #096d27;
    --aro-brand-lightblue: #0068f1;
    --aro-brand-iceblue: #bce6fb;
    --aro-brand-purple: #2e1c8c;
    --aro-brand-deep-purple: #32155e;
    --aro-brand-gold: #be9009;
    --aro-brand-illustratorgold: #be9109;
    --aro-brand-earth-bone:  #C3B292;
    --aro-brand-sand-bone: rgb(211, 200, 175);
    --aro-brand-soft-bone: rgb(231, 220, 196);
    --aro-brand-bone: #D6CBB0;
    --blue-Ilike: rgb(74, 123, 200);     
    --aro-brand-logo-cymk-blue: #00a1dd;
    --possible-purple: rgb(205, 18, 226);
    --wave-color-2: #510165;
    --wave-color-3: rgb(179, 5, 222);
    --banner-color: rgb(222, 157, 238);
    --aliceblue: #f0f8ff;  
    --ink: #1a0b4a;        /* deep plum/indigo */
    --ink-soft: #3a2b72;
    --bone: #efe2c5;       /* soft bone */
    --bone-soft: #f7f0dd;
    --accent: #26a4ff;     /* blue from “House” text */
    --bg-main: #fdfaf5;
    --aro-sky:        #37a9ff;
    --aro-radius-lg:  20px;
    --aro-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.06);
    --aro-soft-bone-alt: #f0ddc3;

      /* Radiuses */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
     
}

/* Reset borders and margins from Bootstrap classes */
.border, .border-top, .border-bottom, .border-left, .border-right {
    border: none !important;
}

html {
    font-size: 16px;
    position: relative;
    height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}


body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


@keyframes smooth {
    0% {
        transform: translateX(-2000px);
    }

    100% {
        transform: translateX(0px);
    }
}


@keyframes fade-in-from-top {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    50% {
        opacity: 0.5;
        color: #FF66B3;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

#countdown-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#countdown {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--aro-brand-gold);
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
    animation: blink 2s ease-in-out infinite;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--bone-soft);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 500;
    margin-top: 5px;
}

.site-header {
    display: flex;
    justify-content: center;
    height: 1px;
}


.site-header, body, footer {
    background-color:var(--ink);
}

#header-underconstruction {
    display: flex;
    flex-flow: column wrap;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 600;
    color: var(--aro-brand-soft-bone);
    align-content: center;
    text-shadow: 1px 1px 13px rgba(0, 0, 0, 0.5), -2px 3px 6px rgba(16, 16, 242, 0.3);
    animation: smooth 2.5s;
    animation-timing-function: linear;
}

#brick-wall {
    width: 145px;
    height: 95px;
    background-color: none;
    border: 0;
}

    #brick-wall.animate {
        animation: smooth 2.5s;
        animation-timing-function: linear;
    }

#row-1, #row-2, #row-3, #row-4, #row-5, #row-6 {
    display: flex;
}


.brick {
    width: 25px;
    height: 15px;
    background-color: #ba2f2f;
    box-shadow: -2px 1px 5px 1px rgba(0, 0, 0, 0.5);
    border-radius: 1px 3px;
    margin: 1.75px;
    visibility: hidden;
    position: relative;
}

.brick.appear {
    visibility: visible;
}

.brick.drop-straight {
    animation: brick-fall-straight 0.7s ease-in forwards;
}

.brick.drop-tumble {
    animation: brick-fall-tumble 1.2s ease-in forwards;
}

@keyframes brick-fall-straight {
    0% {
        transform: translate(var(--start-x), var(--start-y));
    }
    85% {
        transform: translate(0, 0);
    }
    92% {
        transform: translate(0, 3px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes brick-fall-tumble {
    0% {
        transform: translate(var(--start-x), var(--start-y)) rotate(0deg);
    }
    30% {
        transform: translate(calc(var(--start-x) * 0.7), calc(var(--start-y) * 0.3)) rotate(90deg);
    }
    60% {
        transform: translate(calc(var(--start-x) * 0.3), calc(var(--start-y) * 0.1)) rotate(180deg);
    }
    80% {
        transform: translate(0, 0) rotate(270deg);
    }
    90% {
        transform: translate(0, 3px) rotate(350deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

#site-progress {
    width: 100%;
    height: 25px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#site-progress::-webkit-progress-bar {
    background-color: var(--bone-soft);
    border-radius: 5px;
    overflow: hidden;
}

#site-progress::-webkit-progress-value {
    background-color: var(--aro-brand-lightblue);
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-size: 1rem 1rem;
    animation: progress-bar-stripes 1s linear infinite;
    border-radius: 5px;
}

#site-progress::-moz-progress-bar {
    background-color: var(--aro-brand-lightblue);
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-size: 1rem 1rem;
    animation: progress-bar-stripes 1s linear infinite;
    border-radius: 5px;
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }
    100% {
        background-position: 0 0;
    }
}

.progress {
    height: 25px;
    background-color: beige;
    border-radius: 5px;
}

.progress-bar {
    background-color: var(--aro-brand-lightblue);
}

#progress-bar-container {
    padding: 10px 10px 0px 10px;
}


#copyright {
    display: flex;
    justify-content: center;
    align-content: center;
    color: var(--bone-soft);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 22px;
    font-weight: 550;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
   
}
