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

body {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  background-color: #000;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.main-container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.glass-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 2rem;
  max-width: 900px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  animation: fadeUp 1.2s ease-out;
  align-items: center;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header .brand-name {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1;
}
.header .tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.6em;
  color: #e1b929;
  font-weight: 500;
  margin-top: -2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}
.content::before, .content::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.content::before {
  right: 100%;
  margin-right: 30px;
}
.content::after {
  left: 100%;
  margin-left: 30px;
}
.content .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #ffffff;
  opacity: 0.9;
}
.content .separator {
  width: 2px;
  height: 40px;
  background-color: #e1b929;
  margin: 0;
}
.content .description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer {
  margin-top: 2rem;
}
.footer .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  border: 2px solid #e1b929;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.4s ease;
  background: transparent;
  border-radius: 50px;
}
.footer .contact-btn:hover {
  background: #e1b929;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(225, 185, 41, 0.4);
  transform: translateY(-2px);
}
.footer .contact-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .contact-btn .icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .header .brand-name {
    font-size: 3rem;
  }
  .header .tagline {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
  }
  .content .main-title {
    font-size: 1.5rem;
  }
  .content::before, .content::after {
    display: none;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */