body {
	background-color: black;
	color: white;
  }
  @media screen and (prefers-color-scheme: light) {
	body {
	  background-color: white;
	  color: black;
	}
  }


header {
	background-color: #6a89cc; /* Soothing blue */
	color: white;
	padding: 100px 0;
	text-align: center;
}

.header {
	/* width:120vw; */
	/* top:-5%; */
	/* left:-5%; */
	transform:rotate(5deg);
}

.hero-section {
	background-color: #82ccdd; /* Light, friendly teal */
	color: #1e3799; /* Deep blue for contrast */
	padding: 100px 0;
	text-align: center;
}

.angled-border {
	width: 200px;
	height: 100px;
	background: linear-gradient(to bottom right, 
	  transparent 49%, 
	  #000 49%, 
	  #000 51%, 
	  transparent 51%);
  }

.cta-button {
	background-color: #f8c291; /* Warm, inviting orange */
	border: none;
	color: white;
	padding: 15px 30px;
	font-size: 20px;
	margin-top: 20px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.cta-button:hover {
	background-color: #e55039; /* Darker orange for hover effect */
}

.form-section {
	padding: 50px 0;
	background-color: #ffffff;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.footer {
	background-color: #4a69bd; /* Deep, calming blue */
	color: white;
	padding: 20px;
	text-align: center;
}

.bright-bg {
	background-color: #fad390; /* Soft, cheerful yellow */
	color: black;
}

.bright-border {
	border-color: #e55039 !important; /* Warm, vibrant red */
}

#itemsList {
	margin: 20px 0;
	padding: 0;
	font-size: 1.2em;
	list-style-type: none;
}

#itemsList li {
	padding: 10px;
	border-radius:20px;
	background-color: #f8c291; /* Light, warm orange */
	margin-bottom: 5px;
	border: 1px solid #e55039; /* Warm, vibrant red */
	transition: background-color 0.3s ease;
}

#itemsList li:hover, #itemsList li.current {
	background-color: #e55039; /* Darker orange for hover effect */
	color: white;
}

#countdown {
	font-weight: bold;
	font-size: 1.4em;
	color: #e55039; /* Warm, vibrant red */
}

#frontend-notification {
	position: fixed;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	color: #000;
	background: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

header {
    position: relative;
    background: linear-gradient(90deg, #6a89cc, #82ccdd, #6a89cc); /* Gradient background */
    color: white;
    padding: 100px 0;
    text-align: center;
    overflow: hidden; /* Hide overflowing lines */
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Start lines off-screen */
    width: 200%; /* Double width for smooth animation */
    height: 100%;
    background: repeating-linear-gradient(
        -133deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.2) 200px,
        rgba(255, 255, 255, 0.2) 30px); /* White lines */
    animation: flyLines 15s linear infinite; /* Animation for lines */
}



@keyframes flyLines {
    0% {
        transform: translateX(0); /* Start from the left */
    }
    100% {
        transform: translateX(50%); /* Move to the right */
    }
}



footer {
    position: relative;
    background: linear-gradient(90deg, #6a89cc, #82ccdd, #6a89cc); /* Gradient background */
    color: white;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    clip-path: ellipse(100% 100% at 50% 0%); /* Initial shape */
}

footer::before {
    content: '';
    position: absolute;
    top: -10px; /* Adjust to control wave height */
    left: 0;
    width: 100%;
    height: 20px; /* Wave height */
    background: inherit; /* Match header background */
    clip-path: ellipse(50% 20% at 0% 50%); /* Wavy effect */
}

footer::after {
    content: '';
    position: absolute;
    top: -20px; /* Adjust to control wave depth */
    left: 0;
    width: 100%;
    height: 40px; /* Wave depth */
    background: #f4f7f6; /* Match body background */
    clip-path: ellipse(50% 30% at 0% 5%); /* Wavy effect */
}

#itemsList li p {
	display:none;
}

#itemsList li.current p,
#itemsList li:active p,
#itemsList li:focus p,
#itemsList li:hover p {
	display: inline-block;
	animation: heights 3s linear;
}


        /* Custom CSS for animation */
@keyframes heights {
	0% { height:0; }
	100% { height: fit-content; }
}
