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

body,
html {
  height: 100%;
  /* Use Montserrat to match the clean, geometric look of the reference design */
  font-family: "Montserrat", sans-serif;
  color: #4a4542; /* Softer, warmer grey */
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Background Video Styling */
.background-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  object-fit: cover;
}

/* Light overlay to help text stand out against busy backgrounds */
.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Adjust the opacity (0.1 to 0.5) depending on how bright your background is */
  background: rgba(255, 249, 242, 0.25); /* Warm, soft overlay */
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 40px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  position: relative;
}

.left-links a {
  text-decoration: none;
  color: #4a4542;
  margin-right: 30px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.left-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #2a2522;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.left-links a:hover {
  color: #2a2522;
}

.left-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px ;
}

.logo img {
  max-height: 120px; /* Adjust based on your logo proportions */
  object-fit: contain;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.company-title {
  margin-bottom: 20px;
}

.company-title h2 {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: #383431;
  text-transform: uppercase;
}

.company-title h3 {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 6px;
  color: #635d5a;
  margin-top: 5px;
  text-transform: uppercase;
}

h1 {
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: 12px;
  margin-bottom: 20px;
  color: #383431;
}

p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #635d5a;
  margin-bottom: 45px;
  letter-spacing: 1px;
}

.notify-btn {
  background-color: rgba(74, 69, 66, 0.9);
  backdrop-filter: blur(5px);
  color: #fff;
  border: none;
  padding: 16px 45px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  border-radius: 30px; /* Gives the pill shape from the design */
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.notify-btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 300%;
  height: 300%;
  background-color: #ffffff;
  z-index: -1;
  transform: translateX(-50%);
  border-radius: 50%;
  transition: top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: #4a4542;
}

.notify-btn:hover::before {
  top: -50%;
}

footer {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

.social-links a {
  color: #4a4542;
  font-size: 1.2rem;
  margin: 0 15px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition:
    color 0.3s ease,
    transform 0.2s ease;
}

.social-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #2a2522;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  color: #2a2522;
  transform: translateY(-2px);
}

.social-links a:hover::after {
  transform: scaleX(1);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 20px;
  }
  .left-links {
    margin-bottom: 10px;
  }
  .left-links a {
    margin: 0 15px;
  }
  h1 {
    font-size: 2rem;
    letter-spacing: 4px;
  }
  .company-title h2 {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .content-wrapper {
    padding: 20px;
  }
  .background-video {
    width: 100%;
    object-fit: cover;
    object-position: left top;
  }
  .logo img {
    max-height: 90px;
  }
  .logo{
      margin-top: 20px;
  }
}
