/* Reset */
/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Body Text */
body, p, a, li, span {
  font-family: Tahoma, sans-serif;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5); /* optional: white border */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Glass-blur navbar */
#navbar {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 0.5rem 1rem;
}

.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

#navbar.scrolled .nav-link {
  color: #333;
}

.navbar .nav-link:hover {
  color: #d4a017;
}

.navbar .navbar-brand {
  color: #fff;
  transition: color 0.3s ease;
}

#navbar.scrolled .navbar-brand {
  color: #d4a017;
}

/* Navbar toggler button color for glass mode */
.navbar-light .navbar-toggler-icon {
  filter: invert(1);
}

#navbar.scrolled .navbar-toggler-icon {
  filter: none;
}


/* Hero Section with Video */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-lines {
  position: relative;
  height: 5rem; /* adjust to fit your text size */
}

.hero-line {
  font-size: 4rem;
  letter-spacing: 1px;
  line-height: 1.3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in-text {
  font-size: 1.3rem;
  color: #f8f9fa;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-content .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Dark overlay for contrast */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Text above video */
.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  letter-spacing: 1px;
}

.hero p {
  color: #f8f9fa;
  max-width: 650px;
  margin: auto;
}

/* About Section */
.about-section {
  background-color: #f8f9fa;
}

.about-img img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Accent line under heading */
.about-line {
  width: 80px;
  height: 4px;
  background-color: #d4a017;
  border: none;
}

/* Text styling */
.about-section h2 {
  color: #222;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.7;
}
