body {
  background-color: black;
}

.christmas-lights-row {
    background: transparent;
    margin-bottom: -23px;
  z-index: 999999;
}

@-webkit-keyframes flash-1{
    0%, 100%{
        background: #f02241;
        box-shadow: 0px 4.66667px 24px 3px #f02241;
    }
    50%{
        background: rgba(240, 34, 65, 0.4);
        box-shadow: 0px 4.66667px 24px 3px rgba(240, 35, 65, .02);
    }
}
@keyframes flash-1{
    0%,
  100% {
    background: #f02241;
    box-shadow: 0px 4.66667px 24px 3px #f02241;
  }
  50% {
    background: rgba(240, 34, 65, 0.4);
    box-shadow: 0px 4.66667px 24px 3px rgba(240, 35, 65, 0.2);
  }
}
@-webkit-keyframes flash-2{
    0%,
    100%{
        background: #42b261;
        box-shadow: 0px 4.66667px 24px 3px #42b261;
    }
    50%{
        background: rgba(66, 178, 97, 0.4);
        box-shadow: 0px 4.6667px 24px 3px rgba(66, 178, 97, 0.2);
    }
}
@keyframes flash-2{
    0%,
  100% {
    background: #42b261;
    box-shadow: 0px 4.66667px 24px 3px #42b261;
  }
  50% {
    background: rgba(66, 178, 97, 0.4);
    box-shadow: 0px 4.66667px 24px 3px rgba(66, 178, 97, 0.2);
  }
}

.lights-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  padding: 3px 0px 0px 0px;
  background: none !important;
}

.christmas-light-red,
.christmas-light-green {
  width: 20px;
    height: 20px;
    border-radius: 90%;
  padding: 0px 5px;
}

.christmas-light-red {
  background-color: red;
}

.christmas-light-green {
  background-color: green;
}

/* Add more styling for different screen sizes */
@media only screen and (max-width: 600px) {
  .christmas-light-red,
  .christmas-light-green {
    width: 15px; /* Adjust for smaller screens */
    height: 30px; /* Adjust for smaller screens */
  }
}

/* Animation styles */
.christmas-light-red, .christmas-light-green {
  position: relative;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  animation-direction: alternate;
}

.christmas-light-red, .christmas-light-green:before {
    content: "";
    position: sticky;
    background: #222;
    width: 15px;
    height: 15px;
    border-radius: 90%;
    top: -4.66667px;
    left: 1px;
}

.christmas-light-red:after, .christmas-light-green:after {
  content: "";
  top: -15px;
  left: 7px;
  position: absolute;
  width: 52px;
  height: 18.66667px;
  border-bottom: solid #222 2px;
  border-radius: 50%;
}

.christmas-light-red:last-child:after,
.christmas-light-green:last-child:after {
  content: none;
}

/* Adjust these styles accordingly to the keyframes in your previous code */
.christmas-light-red {
  animation-name: flash-1;
  animation-duration: 2s;
}

.christmas-light-green {
  animation-name: flash-2;
  animation-duration: 1.5s;
}

.christmas-light-red {
    animation-name: flash-1, color-transition;
    animation-duration: 2s, 3s;
}

.christmas-light-green {
    animation-name: flash-2, color-transition;
    animation-duration: 1.5s, 3s;
}

@keyframes color-transition {
    0%, 100% {
        filter: brightness(1.2);
    }
    50% {
        filter: brightness(0.8);
    }
}

.snowflake {
    position: fixed; /* Use fixed to allow falling across the viewport */
    top: -10px; /* Start just above the viewport */
    background: white;
    border-radius: 50%;
    opacity: 0.8; /* Slight transparency for realism */
    animation: snow 5s linear infinite;
    z-index: 1000; /* Ensure it's above other elements */
}

@keyframes snow {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(30px); /* Fall to the bottom of the viewport */
        opacity: 0; /* Fade out for smoother removal */
    }
}


@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,900');


/* General Styles */

body {
	background: #171E2B;
	font-family: 'Source Sans Pro', sans-serif;
}

.sections {
	padding: 40px 12vw;
	@media (min-width: 960px) {
  	padding: 40px calc( (100% - 600px)/2 );
	}
}

.container {
	width: 100%;
}

svg {
	width: 100%;
	max-height: 100vh;
}

#cat {
	opacity: 0;
	cursor: pointer;
}

.shadow-2, .shadow-1 {
	opacity: 0;
}

/* Footer */

footer {
	@extend .sections;
	background-color: #171E2B;
	color: white;
}

.footer__title {
	font-weight: bold;
	font-size: 30px;
	margin-top: 40px;
}

.footer__subtitle {
	font-size: 22px;
	color: #FFDF9F;
}

.footer__parragraph {
	line-height: 1.5em;
	font-size: 22px;
	a {
		color: #FFDF9F;
	}
}

.footer__list {
	@extend .footer__parragraph;
}

.copyright {
	@extend .footer__parragraph;
	text-align: center;
	border-top: 1px dashed rgba(white,.15);
	padding: 10px 0;
	margin: 40px auto;
}

#catForest {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 350px;        /* poți modifica dimensiunea */
    height: auto;
    z-index: 100;        /* peste fundal, sub fulgi */
    pointer-events: none; /* ca să nu blocheze click-urile */
}