/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Arial', sans-serif;
background-color: #000;
color: #fff;
text-align: center;
line-height: 1.5;

background-image: url(/image/bg3.png);
background-size: 35%;
background-position: center;
background-repeat: no-repeat;
}

/* Header */
.header {
padding: 2rem 0;
}

.header h1 {
font-size: 3rem;
font-weight: bold;
letter-spacing: 2px;
margin-bottom: 1rem;
font-family: cursive;
}

.navigation a {
color: #fff;
text-decoration: none;
font-size: 19px;
font-weight: 300;

letter-spacing: 1px;
transition: color 0.3s;
padding-left: 11px;
}

.navigation a:hover {
color: #00ffff;
}


/* Mobile Navigation */
.mobile-nav {
display: none;
position: relative;
}

.hamburger {
position: relative;
width: 30px;
height: 20px;
border: none;
background: none;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: space-between;
z-index: 11;
}

.hamburger span {
display: block;
width: 100%;
height: 2px;
background-color: #413c3c;
border-radius: 4px;
transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
transform: rotate(45deg);
position: absolute;
top: 10px;
}

.hamburger.active span:nth-child(2) {
opacity: 0;
/* Hide the middle bar */
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg);
position: absolute;
top: 10px;
}

.mobile-menu {
display: flex;
flex-direction: column;
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 40%;
background-color: rgba(0, 0, 0,0.84);
padding: 1rem;
text-align: center;
z-index: 10;
transition: right 0.4s ease;
}

.mobile-menu.active {
right: 0;
}

.mobile-menu a {
text-decoration: none;
color: #8f108f;
  font-family: monospace;
font-size: 22px;
font-weight: bold;
margin-bottom: 10px;
}

.mobile-menu a:hover {
color: aqua;
}


.mobile-nav.active .mobile-menu {
display: flex;
}

/* Intro Text */
.intro-text {
margin: 2rem 0;
font-size: 1.2rem;
text-transform: uppercase;
letter-spacing: 1px;
color: #ddd;
}

/* Tour List */
.tour-list {
max-width: 800px;
margin: 0 auto;
padding: 0 1rem;
}

.tour-item {
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid #444;
padding: 1rem 0;
}

.tour-item:last-child {
border-bottom: 1px solid #444;
}

.tour-info {
text-align: left;
flex: 1;
}

.date {
font-size: 1rem;
font-weight: bold;
color: #ccc;
margin-bottom: 0.5rem;
text-transform: uppercase;
}

.venue {
font-size: 1.1rem;
margin-bottom: 0.3rem;
}

.location {
font-size: 0.9rem;
color: #777;
}

/* Buttons */
.tour-actions {
display: flex;
gap: 0.5rem;
}

.rsvp-btn,
.tickets-btn {
padding: 0.5rem 1rem;
font-size: 0.9rem;
text-transform: uppercase;
border: none;
cursor: pointer;
transition: background-color 0.3s;
}

.rsvp-btn {
background-color: #333;
color: #fff;
}

.rsvp-btn:hover {
background-color: #00ffff;
color: #000;
}

.tickets-btn {
background-color: #fff;
color: #000;
}

.tickets-btn:hover {
background-color: #00ffff;
color: #000;
}

/* Request a Show */
.request-show {
display: inline-block;
margin: 2rem 0;
color: #00ffff;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 1px;
text-decoration: none;
transition: color 0.3s;
}

.request-show:hover {
color: #fff;
}

.book-now {
display: inline-block;
margin: 2rem 0;
color: #00ffff;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 1px;
text-decoration: none;
transition: color 0.3s;
}

.book-now:hover {
color: #fff;
}

/* Footer */
.footer {
padding: 2rem 0;
}

.footer .socials a {
color: #fff;
margin: 0 0.5rem;
font-size: 1.5rem;
transition: color 0.3s;
}

.footer .socials a:hover {
color: #00ffff;
}

/* Responsive Design */
@media (max-width: 768px) {
.tour-item {
flex-direction: column;
align-items: flex-start;
}

header .navigation {
display: none;
}

.mobile-nav {
display: block;
}

.hamburger {
font-size: 1.8rem;
background: none;
border: none;
color: rgb(250, 231, 231);
cursor: pointer;
position: absolute;
top: -80px;
right: 11px;
}

.tour-actions {
margin-top: 1rem;
}

.date,
.venue,
.location {
text-align: left;
}
}

@media (max-width: 480px) {

header .navigation {
display: none;
}

.mobile-nav {
display: block;
}

.hamburger {
font-size: 1.8rem;
background: none;
border: none;
color: rgb(250, 231, 231);
cursor: pointer;
position: absolute;
top: -175px;
right: 11px;
}
}
