/* General Setup & Logo Colors */
:root {
  --primary-peach: #ffe9d5; /* Main color */
  --primary-brown: #000; /* Light background color */
  --bg-color: #000;
  --text-main: #2a4534;
  --text-muted: #ffe9d5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jost", sans-serif;
  background-color: var(--bg-color);
  min-height: 100vh;
  display: flex;

  align-items: center;
  justify-content: center;
  position: relative;
}

/* Main Container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100vw;
  height: 100vh;
  max-width: 1200px;
  text-align: center;
  padding: 60px;
  /* border-radius: 0px; */
  box-shadow: 0 20px 50px rgba(129, 100, 76, 0.08);
  position: relative;
}

/* Logo Area */
.logo-container {
  margin-bottom: 50px;
}

.logo-container img {
  max-width: 150px;
  height: auto;
}

/* Typography */
h1 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

h1 span {
  color: #fff;
}

p.subtitle {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 50px;
}

/* Button */
.btn-explore {
  display: inline-block;
  background-color: #2a4534;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 18px 50px;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-bottom: 60px;
}

.btn-explore:hover {
  background-color: #1f3025;
  color: #ffffff;
}

/* Footer / Contact / Social Media */
.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(129, 100, 76, 0.1);
  padding-top: 35px;
  flex-wrap: wrap;
  gap: 25px;
}

.contact-info {
  display: flex;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: var(--primary-peach);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  /* background-color: var(--text-main); */
  /* border-radius: 50%; */
  color: var(--primary-beatch);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background-color: var(--primary-peach);
  color: #fff;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  /* background-color: var(--text-main); */
  color: var(--primary-peach);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover {
  background-color: var(--primary-peach);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 850px) {
  h1 {
    font-size: 2.5rem;
  }
  .footer-section {
    flex-direction: column;
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 40px 20px;
  }
  h1 {
    font-size: 2rem;
  }
  .btn-explore {
    padding: 15px 35px;
    font-size: 1.1rem;
  }
}
.videoBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.videoBg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.622);
  z-index: 1;
}

.videoBg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
