396 lines
9.2 KiB
CSS
396 lines
9.2 KiB
CSS
|
|
html, h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Orbitron', sans-serif;
|
|
}
|
|
|
|
html, body, a, button {
|
|
cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAAb5JREFUWEftl/1NAzEQhV/5/y8DugA6gA6gA+gAOkA6gA6gA+gA6gA6ACpIB3Sg/MhZco0skVwS88/lJcnP5HO+S5K9Vqo9gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/gP8B/g-), auto;
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
background-color: #000010;
|
|
color: #FFFFFF;
|
|
font-family: 'Orbitron', sans-serif;
|
|
}
|
|
|
|
.navbar {
|
|
background-color: rgba(16, 16, 32, 0.8);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.navbar-brand, .nav-link {
|
|
color: #FFFFFF !important;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: #00BFFF !important;
|
|
}
|
|
|
|
.hero {
|
|
height: 100vh;
|
|
background: url('https://preview.redd.it/1920x1080-futuristic-digital-art-of-men-and-city-at-night-v0-vni5e3auiyw91.jpg?auto=webp&s=6393927bf49cec89bf66e020a914be54c8edc7c3') no-repeat center center/cover;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero-overlay {
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
padding: 2rem;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 4rem;
|
|
font-weight: 700;
|
|
background: linear-gradient(45deg, #00BFFF, #FF00FF);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: linear-gradient(45deg, #00BFFF, #FF00FF);
|
|
border: none;
|
|
padding: 0.75rem 1.5rem;
|
|
font-weight: 700;
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.section {
|
|
padding: 6rem 0;
|
|
}
|
|
|
|
.exhibit-card {
|
|
background-color: #101020;
|
|
border: 1px solid #00BFFF;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
transition: transform 0.8s ease-out, opacity 0.8s ease-out, box-shadow 0.3s;
|
|
box-shadow: 0 0 5px #00BFFF, 0 0 10px #00BFFF, 0 0 15px #00BFFF;
|
|
opacity: 0; /* Start hidden */
|
|
}
|
|
|
|
.exhibit-card.hidden-left {
|
|
transform: translateX(-100px);
|
|
}
|
|
|
|
.exhibit-card.hidden-right {
|
|
transform: translateX(100px);
|
|
}
|
|
|
|
.exhibit-card.hidden-bottom {
|
|
transform: translateY(100px);
|
|
}
|
|
|
|
.exhibit-card.visible {
|
|
opacity: 1;
|
|
transform: translateX(0) translateY(0);
|
|
}
|
|
|
|
.exhibit-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 0 15px #FF00FF, 0 0 25px #FF00FF, 0 0 35px #FF00FF;
|
|
}
|
|
|
|
.exhibit-card img {
|
|
width: 100%;
|
|
aspect-ratio: 4 / 3;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.exhibit-card .card-body {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.exhibit-card .card-title {
|
|
color: #FFFFFF;
|
|
text-shadow: 0 0 5px #FFFFFF, 0 0 10px #00BFFF, 0 0 15px #00BFFF;
|
|
}
|
|
|
|
.exhibit-card .card-text {
|
|
color: #E0E0E0;
|
|
text-shadow: 0 0 3px #FFFFFF, 0 0 8px #00BFFF;
|
|
}
|
|
|
|
section h2 {
|
|
color: #FFFFFF;
|
|
text-shadow: 0 0 8px #FFFFFF, 0 0 15px #00BFFF, 0 0 20px #00BFFF;
|
|
}
|
|
|
|
.full-width-section {
|
|
height: 70vh;
|
|
background-size: cover;
|
|
background-position: center;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.full-width-section .overlay-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
color: white;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
padding: 2rem;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.full-width-section::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
z-index: 1;
|
|
}
|
|
|
|
#tickets {
|
|
position: relative;
|
|
background: #000000 !important;
|
|
}
|
|
|
|
#tickets::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
z-index: 1;
|
|
}
|
|
|
|
#tickets .container {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
#tickets .ticket-form-container {
|
|
background-color: #000000 !important;
|
|
padding: 2rem;
|
|
border-radius: 8px;
|
|
border: 1px solid #00BFFF;
|
|
box-shadow: 0 0 15px #00BFFF;
|
|
}
|
|
|
|
.ticket-form-container .form-label {
|
|
color: #FFFFFF;
|
|
text-shadow: 0 0 5px #FFFFFF, 0 0 10px #00BFFF;
|
|
}
|
|
|
|
/* Date Picker */
|
|
.ticket-form-container .form-control[type="date"] {
|
|
color-scheme: dark;
|
|
position: relative;
|
|
}
|
|
|
|
/* Calendar Icon Styling */
|
|
.ticket-form-container .form-control[type="date"]::-webkit-calendar-picker-indicator {
|
|
cursor: pointer;
|
|
opacity: 1;
|
|
filter: invert(80%) sepia(100%) saturate(300%) hue-rotate(280deg) drop-shadow(0 0 6px #ff00ff); /* Glowing pink icon */
|
|
transition: filter 0.3s ease;
|
|
}
|
|
|
|
.ticket-form-container .form-control[type="date"]::-webkit-calendar-picker-indicator:hover {
|
|
filter: invert(90%) sepia(100%) saturate(500%) hue-rotate(180deg) drop-shadow(0 0 10px #00BFFF); /* Glowing cyan on hover */
|
|
}
|
|
|
|
/* --- Flatpickr Neon Theme --- */
|
|
|
|
.flatpickr-calendar {
|
|
background: #0a001f;
|
|
border: 1px solid #ff00ff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 15px #ff00ff;
|
|
width: 300px;
|
|
font-family: 'Orbitron', sans-serif;
|
|
}
|
|
|
|
.flatpickr-months .flatpickr-month {
|
|
color: #fff;
|
|
fill: #fff;
|
|
text-shadow: 0 0 5px #ff00ff;
|
|
}
|
|
|
|
.flatpickr-months .flatpickr-prev-month,
|
|
.flatpickr-months .flatpickr-next-month {
|
|
color: #ff00ff;
|
|
fill: #ff00ff;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.flatpickr-months .flatpickr-prev-month:hover,
|
|
.flatpickr-months .flatpickr-next-month:hover {
|
|
color: #00BFFF;
|
|
fill: #00BFFF;
|
|
}
|
|
|
|
.flatpickr-current-month .flatpickr-monthDropdown-months {
|
|
background: #0a001f;
|
|
border: 1px solid #ff00ff;
|
|
color: #fff;
|
|
}
|
|
|
|
.flatpickr-current-month .numInput {
|
|
background: transparent;
|
|
color: #fff;
|
|
border: none;
|
|
text-shadow: 0 0 5px #ff00ff;
|
|
}
|
|
|
|
.flatpickr-weekdays {
|
|
background: #101020;
|
|
}
|
|
|
|
span.flatpickr-weekday {
|
|
color: #ff00ff;
|
|
font-weight: bold;
|
|
text-shadow: 0 0 3px #ff00ff;
|
|
}
|
|
|
|
.flatpickr-day {
|
|
color: #ccc;
|
|
border: 1px solid transparent;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.flatpickr-day:hover {
|
|
background: #101020;
|
|
border-color: #00BFFF;
|
|
color: #00BFFF;
|
|
}
|
|
|
|
.flatpickr-day.today {
|
|
border-color: #ff00ff;
|
|
color: #ff00ff;
|
|
text-shadow: 0 0 5px #ff00ff;
|
|
}
|
|
|
|
.flatpickr-day.selected,
|
|
.flatpickr-day.startRange,
|
|
.flatpickr-day.endRange {
|
|
background: #ff00ff;
|
|
border-color: #ff00ff;
|
|
color: #000;
|
|
box-shadow: 0 0 10px #ff00ff;
|
|
}
|
|
|
|
.flatpickr-day.disabled,
|
|
.flatpickr-day.prevMonthDay,
|
|
.flatpickr-day.nextMonthDay {
|
|
color: #444;
|
|
}
|
|
|
|
.holo-relics-img {
|
|
object-position: top;
|
|
}
|
|
|
|
/* --- Choices.js Neon Theme --- */
|
|
|
|
.choices {
|
|
margin-bottom: 1rem;
|
|
font-family: 'Orbitron', sans-serif;
|
|
}
|
|
|
|
.choices__inner {
|
|
background-color: #0a001f;
|
|
color: #BC13FE; /* MODIFIED: Neon Purple */
|
|
border: 1px solid #ff00ff;
|
|
box-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff,
|
|
inset 0 0 5px rgba(255, 0, 255, 0.5);
|
|
border-radius: 8px;
|
|
padding: .375rem .75rem;
|
|
transition: all 0.3s ease;
|
|
min-height: auto;
|
|
}
|
|
|
|
.choices.is-open .choices__inner {
|
|
border-color: #00BFFF;
|
|
box-shadow: 0 0 10px #00BFFF, 0 0 20px #00BFFF, 0 0 40px #00BFFF,
|
|
inset 0 0 10px rgba(0, 191, 255, 0.6);
|
|
}
|
|
|
|
.choices__list--dropdown {
|
|
background-color: #0a001f;
|
|
border: 1px solid #00BFFF;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 15px #00BFFF;
|
|
margin-top: 5px;
|
|
color: #39FF14; /* MODIFIED: Neon Green */
|
|
}
|
|
|
|
.choices__item {
|
|
padding: 10px;
|
|
}
|
|
|
|
.choices__item--selectable.is-highlighted {
|
|
background-color: #BC13FE; /* MODIFIED: Neon Purple */
|
|
color: #000; /* MODIFIED: Black */
|
|
}
|
|
|
|
.choices__list [role=option] {
|
|
color: #39FF14; /* MODIFIED: Neon Green */
|
|
}
|
|
|
|
.choices__list--dropdown .choices__item--selectable.is-highlighted {
|
|
background-color: #BC13FE; /* MODIFIED: Neon Purple */
|
|
color: #000; /* MODIFIED: Black */
|
|
}
|
|
|
|
.choices__pointer {
|
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff00ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 16px 12px;
|
|
height: 100%;
|
|
width: 20px;
|
|
margin-top: 0;
|
|
border: none;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.choices.is-open .choices__pointer {
|
|
transform: rotate(-180deg);
|
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300BFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
|
|
}
|
|
|
|
.choices__item--choice {
|
|
padding: 0.5rem 1rem;
|
|
}
|
|
|
|
#music-toggle {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
z-index: 1000;
|
|
cursor: pointer;
|
|
background-color: rgba(16, 16, 32, 0.8);
|
|
padding: 1rem;
|
|
border-radius: 50%;
|
|
border: 1px solid #00BFFF;
|
|
box-shadow: 0 0 15px #00BFFF;
|
|
width: 50px;
|
|
height: 50px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#music-toggle i {
|
|
font-size: 20px;
|
|
color: #FFFFFF;
|
|
text-shadow: 0 0 5px #FFFFFF, 0 0 10px #00BFFF;
|
|
}
|