/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body, html {
  height: 100%;
  color: #fff;
  position: relative;
  overflow-x: hidden;
}

/* Video Background */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

body::before {
  content: "";
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.5);
  z-index:0;
}

.site-content {
  position: relative;
  z-index: 1;
}

/* Hero Section */
header {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

header h1 {
  font-size: 3em;
  color: gold;
  text-shadow: 2px 2px 4px #000;
}

header p {
  font-size: 1.5em;
  margin: 20px 0;
}

.btn {
  padding: 15px 30px;
  background: gold;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #ffcc00;
}

/* Services Section */
#services {
  padding: 60px 20px;
  background: rgba(0,0,0,0.6);
  text-align: center;
}

#services h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: gold;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  width: 250px;
}

/* Gallery Section */
.gallery {
  padding: 60px 20px;
  text-align: center;
  background: rgba(0,0,0,0.5);
}

.gallery h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: gold;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.gallery-grid img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid gold;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.1);
}

/* Contact Section */
#contact {
  padding: 60px 20px;
  text-align: center;
  background: rgba(0,0,0,0.6);
}

#contact a {
  color: gold;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background: rgba(0,0,0,0.7);
  color: gold;
}
