body {
    font-family: 'Poppins', sans-serif;
  }

  #loginPage {
    display: none;
  }
  .hero {
    color: white;
    padding: 100px 20px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  .hero p {
    font-size: 1.25rem;
  }
  .btn-yellow {
    background-color: #facc15;
    color: black;
    font-weight: 600;
  }
  .btn-yellow:hover {
    background-color: #eab308;
  }

html, body,.modal-content {
  max-width: 100%;
  overflow-x: hidden;
}

  .card:hover {
    transform: scale(1.02);
    transition: 0.3s ease-in-out;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  }
@media (max-width: 576px) {
  .modal-dialog {
    margin: 1rem;
  }
}
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .about p {
    font-size: 1rem;
  }

  .card-title {
    font-size: 1.1rem;
  }
}
.nav-link:hover {
  color: gold;
}
#img-fluid{
  max-width: 120px;

}
#loginPage .card {
  max-width: 400px;
  width: 90vw;
}

@keyframes grow-and-shrink {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}

.welcomeMessage{
  animation: grow-and-shrink 2000ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
#mainPage{
  display: none;
}


/* ===== Global Styles ===== */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== Video Background ===== */
.video-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Navbar ===== */
.navbar {
    padding: 0.5rem 1rem;
}

.navbar .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(0,0,0,0.4); /* optional overlay effect on video */
    text-shadow: 0px 2px 8px rgba(0,0,0,0.7);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn-warning {
    font-weight: bold;
}

/* ===== Sections ===== */
section {
    padding: 4rem 0;
}

section.bg-light {
    background-color: #f8f9fa !important;
}

section h2 {
    margin-bottom: 2rem;
}

section p {
    font-size: 1rem;
}

/* ===== "What's Inside BeelForge" Cards ===== */
section .row > div {
    margin-bottom: 2rem;
}

section h5 {
    margin-bottom: 0.5rem;
}

/* ===== Offcanvas Menu ===== */
.offcanvas-body a.nav-link {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.offcanvas-header h5 {
    font-size: 1.25rem;
}

.social-icons .twitter i {
  color: #1DA1F2;
}

.social-icons .linkedin i {
  color: #0077B5; 
}
.social-icons .github i {
  color: #ffffff;
}
.social-icons a:hover i {
  opacity: 0.8;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

body.dark-mode {
  background-color: black;
  color: white;
}
#home,#Menu {
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}

#home:hover,#Menu {
  color: rgb(0, 0, 0);
  transform: scale(1.05);
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  height: 250px; /* fixed height so video can fill */
  background-color: transparent; /* remove any background color */
}

.card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: rgba(36, 35, 35, 0.3);
  color: white;
}
.badge-coming-soon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  background-color: rgba(108, 117, 125, 0.85); /* semi-transparent gray */
  color: white;
  border-radius: 0.25rem;
  z-index: 3;
}
