body {
  background: #0a0908;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.divider-line {
  height: 1.5px;
  background: linear-gradient(to right, #468A9A, #fff, #468A9A);
  border: none;
  
}


.navbar {
  padding: 1rem 2rem;
}

.navbar-brand {
  font-weight: ;
  color: #fff !important;
}

.navbar-nav .nav-link {
  color: #fff!important;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #468A9A !important;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #bbb;
}

.btn-custom {
  background: #fff;
  color: #000;
  border-radius: 30px;
  padding: 12px 40px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: #468A9A;
  color: #fff;
  transform: scale(1.05);
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;           /* exact height ng viewport */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;             /* full width ng section */
  height: 100%;            /* full height ng section */
  object-fit: cover;       /* video covers entire section, aspect ratio maintained */
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); /* semi-transparent overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.btn-custom {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.5); }
  60% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

/* Default state (hidden) */
.hero-content,
.hero-title,
.hero-subtitle,
.btn-custom {
  opacity: 0;
}

/* Run animations only when .animate class is active */
.animate .hero-content { 
  animation: fadeInUp 1.5s ease forwards;
}

.animate .hero-title {
  animation: slideDown 1.2s ease forwards;
  animation-delay: 0.3s;
}

.animate .hero-subtitle {
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.8s;
}

.animate .btn-custom {
  animation: bounceIn 1.8s ease forwards;
  animation-delay: 1.2s;
}




/* About Section */
.about-section {
  background: #000;
  color: #000;
  border-radius: 6px;
  margin: 40px auto;
  padding: 40px;
}

.about-wrapper {
  border: 2px solid#676767;
  background:#e6e8e6;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

/* Image Column */
.about-image {
  width: 100%;          /* full width sa mobile */
  min-height: 250px;    /* always visible sa mobile */
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* cover entire container */
  display: block;
}

.about-img {
  border-radius: 0 !important; /* Removes any rounding */
}


/* Content Column */
.about-content {
  padding-left: 20px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
}

/* Desktop adjustments */
@media (min-width: 992px) {
  .about-image {
    width: 45%;          /* image sa right column */
    min-height: 400px;   /* adjust height for desktop */
  }

  .about-image img {
    height: 100%;
  }

  .about-content {
    width: 55%;
  }
}



.about-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #000;
  text-align: justify;
}

.tools {
  margin-top: 20px;
}

.tool-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.tool-icon:hover {
  transform: scale(1.1);
}

.btn-about {
  display: inline-block;
  background: #ccc;
  color: #000;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background: #468A9A;
  color: #fff;
}

.about-img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
}


/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 20px;
}

/* Portfolio */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.portfolio-item img {
  width: 100%;
  transition: transform 0.4s ease;
  border-radius: 8px;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

/* Instagram */
.instagram-section {
  background: #000;
}

.insta-img {
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.insta-img:hover {
  transform: scale(1.05);
}

/* Portfolio Item */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 350px;       /* uniform height */
  object-fit: cover;   /* crop instead of stretch */
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}
