body{
margin:0;
font-family:Arial, sans-serif;
background:#000;
color:white;
}

/* HEADER */

.site-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:black;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
width:100%;
}

.logo img{
height:50px;
}

/* NAVIGATION */

nav ul{
list-style:none;
display:flex;
gap:30px;
margin:0;
padding:0;
align-items:center;
}

nav a{
color:white;
text-decoration:none;
font-size:16px;
transition:color 0.3s;
}

nav a:hover{
color:#007bff;
}


/* DROPDOWN MENU */
.dropdown {
  position: relative;
}

/* hide by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background: #111;
  padding: 10px 0;
  min-width: 220px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  z-index: 1000;
}


/* spacing for items */
.dropdown-menu li {
  padding: 8px 20px;
}

/* highlight on hover */
.dropdown-menu li:hover {
  background: #111; 
}

/* visible class that JS will toggle */
.dropdown-menu.show {
  display: block;
}

/*Event Stage & Platform */

/* SERVICE HERO SECTION */
.service-hero {
padding: 120px 20px 70px;
background: rgba(0,0,0,0.03);
border-bottom: 1px solid rgba(0,0,0,0.06);
text-align: center;
}

/* center container */
.service-hero-inner {
max-width: 600px;
margin: auto;
}

/* title styling */
.service-title {
font-size: 50px;
font-weight: 700;
letter-spacing: 0.5px;
color: #007bff;
margin-bottom: 18px;
}

/* Divider */
.service-divider {
width: 60px;
height: 3px;
background: #007bff;
margin: auto;
border-radius: 3px;
opacity: 0.85;
}

.service-title {
animation: fadeUp 1s ease;
}

@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(20px);
}

to {
opacity: 1;
transform: translateY(0);
}

}
.service-content {
max-width: 900px;
margin: auto;
padding: 40px 20px;
font-size: 18px;
line-height: 1.7;
}

.service-gallery {
padding: 40px 20px;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.gallery-grid img {
width: 100%;
border-radius: 6px;
cursor: pointer;
transition: transform 0.3s ease;
}

.gallery-grid img:hover {
transform: scale(1.05);
}
/* LIGHTBOX */

.lightbox {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.95);
justify-content: center;
align-items: center;
}

.lightbox-img {
max-width: 90%;
max-height: 85%;
border-radius: 6px;
}

.lightbox-close {
position: absolute;
top: 30px;
right: 40px;
font-size: 40px;
color: white;
cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
position: absolute;
top: 50%;
font-size: 50px;
color: white;
cursor: pointer;
padding: 20px;
user-select: none;
}

.lightbox-prev {
left: 40px;
}

.lightbox-next {
right: 40px;
}

/* HERO SECTION */

.hero {
  text-align: center;
  padding: 40px 20px 10px;
}

.hero h1{
font-size:56px;
letter-spacing:2px;
margin-bottom:10px;
color: #007bff;
}

.tagline{
font-size:20px;
margin-top:10px;
margin-bottom: 0px;
opacity:0.85;
letter-spacing:1px; 
}

.tagline span {
  margin: 0 8px;
}


/* SLIDESHOW */

.slideshow {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  margin: 40px auto;
}


.slide {
  display: none;
  width: 80%;      
  max-width: 900px;
  height: auto;
}

.slide.active {
  display: block;
}


/* FOOTER */

.site-footer{
background:#050505;
padding:40px 60px;
margin-top:60px;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:40px;
}

.footer-socials svg{
width:24px;
height:24px;
fill:white;
margin-right:15px;
cursor:pointer;
}

.footer-socials svg:hover{
fill:#007bff;
}

.footer-bottom{
margin-top:30px;
border-top:1px solid #222;
padding-top:15px;
font-size:14px;
opacity:0.7;
}